ci.yaml 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. on:
  2. push:
  3. branches: [ staging, trying, master ]
  4. pull_request:
  5. merge_group:
  6. name: Continuous integration
  7. jobs:
  8. # We check that the crate builds and links for all the toolchains and targets.
  9. ci-riscv:
  10. strategy:
  11. matrix:
  12. # All generated code should be running on stable now, MRSV is 1.59.0
  13. toolchain: [ stable, nightly, 1.59.0 ]
  14. target:
  15. - riscv32i-unknown-none-elf
  16. - riscv32imc-unknown-none-elf
  17. - riscv32imac-unknown-none-elf
  18. - riscv64gc-unknown-linux-gnu
  19. - riscv64gc-unknown-none-elf
  20. cargo_flags: [ "--no-default-features", "--all-features" ]
  21. include:
  22. # Nightly is only for reference and allowed to fail
  23. - toolchain: nightly
  24. experimental: true
  25. runs-on: ubuntu-latest
  26. continue-on-error: ${{ matrix.experimental || false }}
  27. steps:
  28. - uses: actions/checkout@v3
  29. - uses: dtolnay/rust-toolchain@${{ matrix.toolchain }}
  30. with:
  31. targets: ${{ matrix.target }}
  32. - name: Build library
  33. run: cargo build --target ${{ matrix.target }} ${{ matrix.cargo_flags }}
  34. # On MacOS, Ubuntu, and Windows, we at least make sure that the crate builds and links.
  35. ci-others:
  36. strategy:
  37. matrix:
  38. os:
  39. - macos-latest
  40. - ubuntu-latest
  41. - windows-latest
  42. cargo_flags: [ "--no-default-features", "--all-features" ]
  43. runs-on: ${{ matrix.os }}
  44. steps:
  45. - uses: actions/checkout@v3
  46. - uses: dtolnay/rust-toolchain@stable
  47. - name: Build crate for host OS
  48. run: cargo build ${{ matrix.cargo_flags }}