update badges, further split out actions by OS, add more Linux targets
This commit is contained in:
4
.github/workflows/android_test.yml
vendored
4
.github/workflows/android_test.yml
vendored
@@ -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
20
.github/workflows/cross_test.yml
vendored
Normal 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
|
22
.github/workflows/linux_test.yml
vendored
22
.github/workflows/linux_test.yml
vendored
@@ -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
22
.github/workflows/macos_test.yml
vendored
Normal 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
|
Reference in New Issue
Block a user