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