1name: AArch64 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 [aarch64], 18 [aarch64be], 19 [aarch64-linux-gnu], 20 [aarch64_be-linux-gnu] 21 ] 22 fail-fast: false 23 env: 24 TARGET: ${{ matrix.targets[0] }} 25 steps: 26 - uses: actions/checkout@v2 27 - name: Build 28 run: make --directory=cmake/ci ${TARGET}_build 29 - name: Test 30 run: make --directory=cmake/ci ${TARGET}_test 31