1name: MIPS 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 [mips32], 18 [mips32el], 19 [mips64], 20 [mips64el] 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