package An official xmake package repository
https://xrepo.xmake.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1004 B
37 lines
1004 B
name: Archlinux |
|
|
|
on: |
|
pull_request: |
|
branches: |
|
- dev |
|
|
|
jobs: |
|
build: |
|
strategy: |
|
matrix: |
|
os: [ubuntu-latest] |
|
kind: [static, shared] |
|
|
|
container: archlinux:base-devel |
|
runs-on: ${{ matrix.os }} |
|
|
|
concurrency: |
|
group: ${{ github.ref }}-${{ github.base_ref }}-${{ github.head_ref }}-Archlinux-${{ matrix.kind }} |
|
cancel-in-progress: true |
|
steps: |
|
- name: Installation |
|
run: | |
|
pacman -Sy --noconfirm --needed glibc git base-devel perl make unzip |
|
pacman -Sy --noconfirm --needed mesa gcc-fortran glu |
|
git config --global --add safe.directory /__w/xmake/xmake |
|
git config --global --add safe.directory /__w/xmake-repo/xmake-repo |
|
- uses: actions/checkout@v1 |
|
- uses: xmake-io/github-action-setup-xmake@v1 |
|
with: |
|
xmake-version: branch@dev |
|
|
|
- name: Tests |
|
env: |
|
XMAKE_ROOT: y |
|
run: | |
|
xmake l ./scripts/test.lua -D -k ${{ matrix.kind }}
|
|
|