aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/cross_test.yml
blob: c5b6b25ebfdab63248bf1d45599e487b8999cc6b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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: false
    env:
      CC: gcc
      ARCH: ${{ matrix.arch }}
    name: ${{ matrix.arch }} - ${{ matrix.os }}
    steps:
    - uses: actions/checkout@v2
    - name: Run CI script
      run: ./scripts/test