diff options
Diffstat (limited to '.github/workflows/linux_test.yml')
-rw-r--r-- | .github/workflows/linux_test.yml | 22 |
1 files changed, 2 insertions, 20 deletions
diff --git a/.github/workflows/linux_test.yml b/.github/workflows/linux_test.yml index 42b3834..028c1a4 100644 --- a/.github/workflows/linux_test.yml +++ b/.github/workflows/linux_test.yml | |||
@@ -6,7 +6,7 @@ jobs: | |||
6 | build-native: | 6 | build-native: |
7 | strategy: | 7 | strategy: |
8 | matrix: | 8 | matrix: |
9 | os: [macos-latest, ubuntu-18.04] | 9 | os: [ubuntu-18.04, ubuntu-20.04] |
10 | compiler: [clang, gcc] | 10 | compiler: [clang, gcc] |
11 | runs-on: ${{ matrix.os }} | 11 | runs-on: ${{ matrix.os }} |
12 | continue-on-error: false | 12 | continue-on-error: false |
@@ -15,24 +15,6 @@ jobs: | |||
15 | ARCH: native | 15 | ARCH: native |
16 | name: ${{ matrix.compiler }} - ${{ matrix.os }} | 16 | name: ${{ matrix.compiler }} - ${{ matrix.os }} |
17 | steps: | 17 | steps: |
18 | - name: Install packages for macos | ||
19 | if: matrix.os == 'macos-latest' | ||
20 | run: brew install automake | ||
21 | - uses: actions/checkout@v2 | 18 | - uses: actions/checkout@v2 |
22 | - name: Run CI script | 19 | - name: Run CI script |
23 | run: ./scripts/travis | 20 | run: ./scripts/test |
24 | |||
25 | build-other: | ||
26 | strategy: | ||
27 | matrix: | ||
28 | arch: [mingw32, mingw64, arm32, arm64] | ||
29 | runs-on: ubuntu-18.04 | ||
30 | continue-on-error: true | ||
31 | env: | ||
32 | CC: gcc | ||
33 | ARCH: ${{ matrix.arch }} | ||
34 | name: ${{ matrix.arch }} | ||
35 | steps: | ||
36 | - uses: actions/checkout@v2 | ||
37 | - name: Run CI script | ||
38 | run: ./scripts/travis | ||