riscv-rt.yaml 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. on:
  2. push:
  3. branches: [ master ]
  4. pull_request:
  5. merge_group:
  6. name: Build check (riscv-rt)
  7. jobs:
  8. build:
  9. strategy:
  10. matrix:
  11. # All generated code should be running on stable now, MRSV is 1.60.0
  12. toolchain: [ stable, nightly, 1.60.0 ]
  13. target:
  14. - riscv32i-unknown-none-elf
  15. - riscv32imc-unknown-none-elf
  16. - riscv32imac-unknown-none-elf
  17. - riscv64imac-unknown-none-elf
  18. - riscv64gc-unknown-none-elf
  19. example:
  20. - empty
  21. - multi_core
  22. include:
  23. # Nightly is only for reference and allowed to fail
  24. - toolchain: nightly
  25. experimental: true
  26. runs-on: ubuntu-latest
  27. continue-on-error: ${{ matrix.experimental || false }}
  28. steps:
  29. - uses: actions/checkout@v4
  30. - uses: dtolnay/rust-toolchain@master
  31. with:
  32. toolchain: ${{ matrix.toolchain }}
  33. targets: ${{ matrix.target }}
  34. - name: Build (no features)
  35. run: RUSTFLAGS="-C link-arg=-Triscv-rt/examples/device.x" cargo build --package riscv-rt --target ${{ matrix.target }} --example ${{ matrix.example }}
  36. - name : Build (s-mode)
  37. run: RUSTFLAGS="-C link-arg=-Triscv-rt/examples/device.x" cargo build --package riscv-rt --target ${{ matrix.target }} --example ${{ matrix.example }} --features=s-mode
  38. - name : Build (single-hart)
  39. run: RUSTFLAGS="-C link-arg=-Triscv-rt/examples/device.x" cargo build --package riscv-rt --target ${{ matrix.target }} --example ${{ matrix.example }} --features=single-hart
  40. - name: Build (all features)
  41. run: RUSTFLAGS="-C link-arg=-Triscv-rt/examples/device.x" cargo build --package riscv-rt --target ${{ matrix.target }} --example ${{ matrix.example }} --all-features
  42. # Job to check that all the builds succeeded
  43. build-check:
  44. needs:
  45. - build
  46. runs-on: ubuntu-latest
  47. if: always()
  48. steps:
  49. - run: jq --exit-status 'all(.result == "success")' <<< '${{ toJson(needs) }}'