riscv-semihosting.yaml 2.1 KB

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