summaryrefslogtreecommitdiff
path: root/.github/workflows/archlinux.yml
blob: 7ca6272714ef96e5945a49cc6aa656b1a2dd3703 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
name: Archlinux

on:
  pull_request:
  push:
  release:
    types: [published]

jobs:
  build:

    container: archlinux:base-devel
    runs-on: ubuntu-latest

    concurrency:
        group: ${{ github.ref }}-${{ github.base_ref }}-${{ github.head_ref }}-Archlinux
        cancel-in-progress: true
    steps:
      - name: Prepare build tools
        run: |
          pacman -Syu --noconfirm --needed openssl
          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

      - uses: actions/checkout@v2
        with:
          submodules: true

      - name: prepare local xmake
        run: |
          cp -rf . ../xmake-source
      - uses: xmake-io/github-action-setup-xmake@v1
        with:
          xmake-version: local#../xmake-source

      - name: Tests
        env:
          XMAKE_ROOT: y
        run: |
          xmake lua -v -D tests/run.lua
          xrepo --version