riscv-peripheral.yaml 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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.61.0
  13. toolchain: [ stable, nightly, 1.61.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. # not yet, let's wait for 1.75.0
  35. # - name: Build (all features)
  36. # run: cargo build --package riscv-peripheral --target ${{ matrix.target }} --all-features
  37. # On MacOS, Ubuntu, and Windows, we run the tests.
  38. build-others:
  39. strategy:
  40. matrix:
  41. os: [ macos-latest, ubuntu-latest, windows-latest ]
  42. runs-on: ${{ matrix.os }}
  43. steps:
  44. - uses: actions/checkout@v3
  45. - uses: dtolnay/rust-toolchain@stable
  46. - name: Build (no features)
  47. run: cargo test --package riscv-peripheral
  48. # not yet, let's wait for 1.75.0
  49. # - name: Build (all features)
  50. # run: cargo test --package riscv-peripheral --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) }}'