1name: s390x Linux CMake 2 3on: 4 push: 5 pull_request: 6 schedule: 7 # min hours day(month) month day(week) 8 - cron: '0 0 7,22 * *' 9 10jobs: 11 # Building using the github runner environement directly. 12 make: 13 runs-on: ubuntu-latest 14 strategy: 15 matrix: 16 targets: [ 17 [s390x], 18 ] 19 fail-fast: false 20 env: 21 TARGET: ${{ matrix.targets[0] }} 22 steps: 23 - uses: actions/checkout@v2 24 - name: Build 25 run: make --directory=cmake/ci ${TARGET}_build 26 - name: Test 27 run: make --directory=cmake/ci ${TARGET}_test 28