diff options
author | kinichiro <kinichiro.inoguchi@gmail.com> | 2021-05-21 21:02:17 +0900 |
---|---|---|
committer | kinichiro <kinichiro.inoguchi@gmail.com> | 2021-05-22 13:31:04 +0900 |
commit | 3845b1eff4d8e0cd493fff90730dfcd5499ddbaf (patch) | |
tree | d2e34b9b1c784210bb6d592055680ae9a91de501 /.github/workflows | |
parent | 47df72bb5c5f92d7825a9d5d2c9d7373abbd7837 (diff) | |
download | portable-3845b1eff4d8e0cd493fff90730dfcd5499ddbaf.tar.gz portable-3845b1eff4d8e0cd493fff90730dfcd5499ddbaf.tar.bz2 portable-3845b1eff4d8e0cd493fff90730dfcd5499ddbaf.zip |
Use github actions for linux test
Diffstat (limited to '.github/workflows')
-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 | ||