• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1name: RISCV 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          [riscv32],
18          [riscv64],
19        ]
20      fail-fast: false
21    env:
22      TARGET: ${{ matrix.targets[0] }}
23    steps:
24    - uses: actions/checkout@v2
25    - name: Build
26      run: make --directory=cmake/ci ${TARGET}_build
27    - name: Test
28      run: make --directory=cmake/ci ${TARGET}_test
29