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/cross_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/cross_test.yml')
-rw-r--r-- | .github/workflows/cross_test.yml | 20 |
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 @@ | |||
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 | ||