aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/cross_test.yml
diff options
context:
space:
mode:
authorBrent Cook <busterb@gmail.com>2021-05-28 04:53:27 -0500
committerBrent Cook <busterb@gmail.com>2021-05-30 18:10:37 -0500
commite55410dc80acd7d40f8a30007870d1ce7ce33034 (patch)
treeddc1bbd62c6ceac89c5d50f2485022db99974a8c /.github/workflows/cross_test.yml
parentc8911ede68dc33a19e540b0c1026d3cbfb0067d3 (diff)
downloadportable-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/cross_test.yml')
-rw-r--r--.github/workflows/cross_test.yml20
1 files changed, 20 insertions, 0 deletions
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 @@
1name: cross_ci
2
3on: [push, pull_request]
4
5jobs:
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