riscv.yaml 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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 (no features)
  33. run: cargo build --package riscv --target ${{ matrix.target }}
  34. - name: Build (all features)
  35. run: cargo build --package riscv --target ${{ matrix.target }} --all-features
  36. # On MacOS, Ubuntu, and Windows, we at least make sure that the crate builds and links.
  37. build-others:
  38. strategy:
  39. matrix:
  40. os: [ macos-latest, ubuntu-latest, windows-latest ]
  41. runs-on: ${{ matrix.os }}
  42. steps:
  43. - uses: actions/checkout@v3
  44. - uses: dtolnay/rust-toolchain@stable
  45. - name: Build (no features)
  46. run: cargo build --package riscv
  47. - name: Build (all features)
  48. run: cargo build --package riscv --all-features
  49. # Job to check that all the builds succeeded
  50. build-check:
  51. needs:
  52. - build-riscv
  53. - build-others
  54. runs-on: ubuntu-latest
  55. if: always()
  56. steps:
  57. - run: jq --exit-status 'all(.result == "success")' <<< '${{ toJson(needs) }}'