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/linux_test.yml | |
| 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/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 | ||
