update badges, further split out actions by OS, add more Linux targets

This commit is contained in:
Brent Cook
2021-05-28 04:53:27 -05:00
parent c8911ede68
commit e55410dc80
7 changed files with 55 additions and 45 deletions

View File

@@ -14,7 +14,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Run CI script
run: ./scripts/travis
run: ./scripts/test
build-android-10-11:
runs-on: ubuntu-18.04
@@ -27,4 +27,4 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Run CI script
run: ./scripts/travis
run: ./scripts/test

20
.github/workflows/cross_test.yml vendored Normal file
View File

@@ -0,0 +1,20 @@
name: cross_ci
on: [push, pull_request]
jobs:
build-other:
strategy:
matrix:
os: [ubuntu-18.04, ubuntu-20.04]
arch: [mingw32, mingw64, arm32, arm64]
runs-on: ${{ matrix.os }}
continue-on-error: true
env:
CC: gcc
ARCH: ${{ matrix.arch }}
name: ${{ matrix.arch }}
steps:
- uses: actions/checkout@v2
- name: Run CI script
run: ./scripts/test

View File

@@ -6,7 +6,7 @@ jobs:
build-native:
strategy:
matrix:
os: [macos-latest, ubuntu-18.04]
os: [ubuntu-18.04, ubuntu-20.04]
compiler: [clang, gcc]
runs-on: ${{ matrix.os }}
continue-on-error: false
@@ -15,24 +15,6 @@ jobs:
ARCH: native
name: ${{ matrix.compiler }} - ${{ matrix.os }}
steps:
- name: Install packages for macos
if: matrix.os == 'macos-latest'
run: brew install automake
- uses: actions/checkout@v2
- name: Run CI script
run: ./scripts/travis
build-other:
strategy:
matrix:
arch: [mingw32, mingw64, arm32, arm64]
runs-on: ubuntu-18.04
continue-on-error: true
env:
CC: gcc
ARCH: ${{ matrix.arch }}
name: ${{ matrix.arch }}
steps:
- uses: actions/checkout@v2
- name: Run CI script
run: ./scripts/travis
run: ./scripts/test

22
.github/workflows/macos_test.yml vendored Normal file
View File

@@ -0,0 +1,22 @@
name: macos_ci
on: [push, pull_request]
jobs:
build-native:
strategy:
matrix:
os: [macos-latest]
compiler: [clang, gcc]
runs-on: ${{ matrix.os }}
continue-on-error: false
env:
CC: ${{ matrix.compiler }}
ARCH: native
name: ${{ matrix.compiler }} - ${{ matrix.os }}
steps:
- name: Install packages for macos
run: brew install automake
- uses: actions/checkout@v2
- name: Run CI script
run: ./scripts/test