diff options
| author | Brent Cook <busterb@gmail.com> | 2021-05-28 04:53:27 -0500 |
|---|---|---|
| committer | Brent Cook <busterb@gmail.com> | 2021-05-30 18:10:37 -0500 |
| commit | e55410dc80acd7d40f8a30007870d1ce7ce33034 (patch) | |
| tree | ddc1bbd62c6ceac89c5d50f2485022db99974a8c /.github/workflows | |
| parent | c8911ede68dc33a19e540b0c1026d3cbfb0067d3 (diff) | |
| download | portable-e55410dc80acd7d40f8a30007870d1ce7ce33034.tar.gz portable-e55410dc80acd7d40f8a30007870d1ce7ce33034.tar.bz2 portable-e55410dc80acd7d40f8a30007870d1ce7ce33034.zip | |
update badges, further split out actions by OS, add more Linux targets
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/android_test.yml | 4 | ||||
| -rw-r--r-- | .github/workflows/cross_test.yml | 20 | ||||
| -rw-r--r-- | .github/workflows/linux_test.yml | 22 | ||||
| -rw-r--r-- | .github/workflows/macos_test.yml | 22 |
4 files changed, 46 insertions, 22 deletions
diff --git a/.github/workflows/android_test.yml b/.github/workflows/android_test.yml index ea09846..1632972 100644 --- a/.github/workflows/android_test.yml +++ b/.github/workflows/android_test.yml | |||
| @@ -14,7 +14,7 @@ jobs: | |||
| 14 | steps: | 14 | steps: |
| 15 | - uses: actions/checkout@v2 | 15 | - uses: actions/checkout@v2 |
| 16 | - name: Run CI script | 16 | - name: Run CI script |
| 17 | run: ./scripts/travis | 17 | run: ./scripts/test |
| 18 | 18 | ||
| 19 | build-android-10-11: | 19 | build-android-10-11: |
| 20 | runs-on: ubuntu-18.04 | 20 | runs-on: ubuntu-18.04 |
| @@ -27,4 +27,4 @@ jobs: | |||
| 27 | steps: | 27 | steps: |
| 28 | - uses: actions/checkout@v2 | 28 | - uses: actions/checkout@v2 |
| 29 | - name: Run CI script | 29 | - name: Run CI script |
| 30 | run: ./scripts/travis | 30 | run: ./scripts/test |
diff --git a/.github/workflows/cross_test.yml b/.github/workflows/cross_test.yml new file mode 100644 index 0000000..9bcbfac --- /dev/null +++ b/.github/workflows/cross_test.yml | |||
| @@ -0,0 +1,20 @@ | |||
| 1 | name: cross_ci | ||
| 2 | |||
| 3 | on: [push, pull_request] | ||
| 4 | |||
| 5 | jobs: | ||
| 6 | build-other: | ||
| 7 | strategy: | ||
| 8 | matrix: | ||
| 9 | os: [ubuntu-18.04, ubuntu-20.04] | ||
| 10 | arch: [mingw32, mingw64, arm32, arm64] | ||
| 11 | runs-on: ${{ matrix.os }} | ||
| 12 | continue-on-error: true | ||
| 13 | env: | ||
| 14 | CC: gcc | ||
| 15 | ARCH: ${{ matrix.arch }} | ||
| 16 | name: ${{ matrix.arch }} | ||
| 17 | steps: | ||
| 18 | - uses: actions/checkout@v2 | ||
| 19 | - name: Run CI script | ||
| 20 | run: ./scripts/test | ||
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 | ||
diff --git a/.github/workflows/macos_test.yml b/.github/workflows/macos_test.yml new file mode 100644 index 0000000..29e6cdc --- /dev/null +++ b/.github/workflows/macos_test.yml | |||
| @@ -0,0 +1,22 @@ | |||
| 1 | name: macos_ci | ||
| 2 | |||
| 3 | on: [push, pull_request] | ||
| 4 | |||
| 5 | jobs: | ||
| 6 | build-native: | ||
| 7 | strategy: | ||
| 8 | matrix: | ||
| 9 | os: [macos-latest] | ||
| 10 | compiler: [clang, gcc] | ||
| 11 | runs-on: ${{ matrix.os }} | ||
| 12 | continue-on-error: false | ||
| 13 | env: | ||
| 14 | CC: ${{ matrix.compiler }} | ||
| 15 | ARCH: native | ||
| 16 | name: ${{ matrix.compiler }} - ${{ matrix.os }} | ||
| 17 | steps: | ||
| 18 | - name: Install packages for macos | ||
| 19 | run: brew install automake | ||
| 20 | - uses: actions/checkout@v2 | ||
| 21 | - name: Run CI script | ||
| 22 | run: ./scripts/test | ||
