build.yaml 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. on:
  2. push:
  3. branches: [ master, global_asm ]
  4. pull_request:
  5. merge_group:
  6. name: Build check
  7. jobs:
  8. build-riscv:
  9. strategy:
  10. matrix:
  11. # All generated code should be running on stable now, MRSV is 1.59.0
  12. toolchain: [ stable, nightly, 1.59.0 ]
  13. target:
  14. - riscv32i-unknown-none-elf
  15. - riscv32imc-unknown-none-elf
  16. - riscv32imac-unknown-none-elf
  17. - riscv64imac-unknown-none-elf
  18. - riscv64gc-unknown-none-elf
  19. example:
  20. - empty
  21. - multi_core
  22. cargo_flags: [ "--no-default-features", "--all-features" ]
  23. include:
  24. # Nightly is only for reference and allowed to fail
  25. - toolchain: nightly
  26. experimental: true
  27. runs-on: ubuntu-latest
  28. continue-on-error: ${{ matrix.experimental || false }}
  29. steps:
  30. - uses: actions/checkout@v3
  31. - uses: dtolnay/rust-toolchain@master
  32. with:
  33. toolchain: ${{ matrix.toolchain }}
  34. targets: ${{ matrix.target }}
  35. - name: Build library
  36. run: cargo build --target ${{ matrix.target }} ${{ matrix.cargo_flags }}
  37. - name: Build example
  38. run: RUSTFLAGS="-C link-arg=-Texamples/device.x" cargo build --target ${{ matrix.target }} --example ${{ matrix.example }} ${{ matrix.cargo_flags }}
  39. # Job to check that all the builds succeeded
  40. build-check:
  41. needs:
  42. - build-riscv
  43. runs-on: ubuntu-latest
  44. if: always()
  45. steps:
  46. - run: jq --exit-status 'all(.result == "success")' <<< '${{ toJson(needs) }}'