diff options
Diffstat (limited to '.github/workflows/linux_test.yml')
-rw-r--r-- | .github/workflows/linux_test.yml | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/.github/workflows/linux_test.yml b/.github/workflows/linux_test.yml new file mode 100644 index 0000000..c205545 --- /dev/null +++ b/.github/workflows/linux_test.yml | |||
@@ -0,0 +1,64 @@ | |||
1 | name: linux_ci | ||
2 | |||
3 | on: [push] | ||
4 | |||
5 | jobs: | ||
6 | build-native: | ||
7 | strategy: | ||
8 | matrix: | ||
9 | os: [macos-latest, ubuntu-18.04] | ||
10 | compiler: [clang, gcc] | ||
11 | runs-on: ${{ matrix.os }} | ||
12 | continue-on-error: true | ||
13 | env: | ||
14 | CC: ${{ matrix.compiler }} | ||
15 | ARCH: native | ||
16 | name: ${{ matrix.compiler }} - ${{ matrix.os }} | ||
17 | steps: | ||
18 | - name: Install packages for macos | ||
19 | if: matrix.os == 'macos-latest' | ||
20 | run: brew install automake | ||
21 | - uses: actions/checkout@v2 | ||
22 | - name: Run CI script | ||
23 | run: ./scripts/travis | ||
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 | ||
39 | |||
40 | build-android-8-9: | ||
41 | runs-on: ubuntu-18.04 | ||
42 | continue-on-error: true | ||
43 | env: | ||
44 | ARCH: android | ||
45 | MIN_NAL: 26 | ||
46 | MAX_NAL: 28 | ||
47 | name: Android 8.x 9 | ||
48 | steps: | ||
49 | - uses: actions/checkout@v2 | ||
50 | - name: Run CI script | ||
51 | run: ./scripts/travis | ||
52 | |||
53 | build-android-10-11: | ||
54 | runs-on: ubuntu-18.04 | ||
55 | continue-on-error: true | ||
56 | env: | ||
57 | ARCH: android | ||
58 | MIN_NAL: 29 | ||
59 | MAX_NAL: 30 | ||
60 | name: Android 10 11 | ||
61 | steps: | ||
62 | - uses: actions/checkout@v2 | ||
63 | - name: Run CI script | ||
64 | run: ./scripts/travis | ||