riscv-peripheral.yaml 2.0 KB

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