riscv.yaml 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. on:
  2. push:
  3. branches: [ master ]
  4. pull_request:
  5. merge_group:
  6. name: Build check (riscv)
  7. jobs:
  8. # We check that the crate builds and links for all the toolchains and targets.
  9. build-riscv:
  10. strategy:
  11. matrix:
  12. # All generated code should be running on stable now, MRSV is 1.60.0
  13. toolchain: [ stable, nightly, 1.60.0 ]
  14. target:
  15. - riscv32i-unknown-none-elf
  16. - riscv32imc-unknown-none-elf
  17. - riscv32imac-unknown-none-elf
  18. - riscv64imac-unknown-none-elf
  19. - riscv64gc-unknown-none-elf
  20. include:
  21. # Nightly is only for reference and allowed to fail
  22. - toolchain: nightly
  23. experimental: true
  24. runs-on: ubuntu-latest
  25. continue-on-error: ${{ matrix.experimental || false }}
  26. steps:
  27. - uses: actions/checkout@v4
  28. - uses: dtolnay/rust-toolchain@master
  29. with:
  30. toolchain: ${{ matrix.toolchain }}
  31. targets: ${{ matrix.target }}
  32. - name: Build (M-mode)
  33. run: cargo build --package riscv --target ${{ matrix.target }}
  34. - name: Build (M-mode, critical section)
  35. run: cargo build --package riscv --target ${{ matrix.target }} --features=critical-section-single-hart
  36. - name: Build (S-mode)
  37. run: cargo build --package riscv --target ${{ matrix.target }} --features=s-mode
  38. - name: Build (all features)
  39. run: cargo build --package riscv --target ${{ matrix.target }} --all-features
  40. # On MacOS, Ubuntu, and Windows, we at least make sure that the crate builds and links.
  41. build-others:
  42. strategy:
  43. matrix:
  44. os: [ macos-latest, ubuntu-latest, windows-latest ]
  45. runs-on: ${{ matrix.os }}
  46. steps:
  47. - uses: actions/checkout@v3
  48. - uses: dtolnay/rust-toolchain@stable
  49. - name: Build (no features)
  50. run: cargo build --package riscv
  51. - name: Build (all features)
  52. run: cargo build --package riscv --all-features
  53. # Job to check that all the builds succeeded
  54. build-check:
  55. needs:
  56. - build-riscv
  57. - build-others
  58. runs-on: ubuntu-latest
  59. if: always()
  60. steps:
  61. - run: jq --exit-status 'all(.result == "success")' <<< '${{ toJson(needs) }}'