-
Notifications
You must be signed in to change notification settings - Fork 162
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
612d58d
commit f119468
Showing
3 changed files
with
76 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
on: | ||
push: | ||
branches: [ master, add-riscv-rt ] | ||
pull_request: | ||
merge_group: | ||
|
||
name: Build check (riscv-rt) | ||
|
||
jobs: | ||
build: | ||
strategy: | ||
matrix: | ||
# All generated code should be running on stable now, MRSV is 1.59.0 | ||
toolchain: [ stable, nightly, 1.59.0 ] | ||
target: | ||
- riscv32i-unknown-none-elf | ||
- riscv32imc-unknown-none-elf | ||
- riscv32imac-unknown-none-elf | ||
- riscv64imac-unknown-none-elf | ||
- riscv64gc-unknown-none-elf | ||
example: | ||
- empty | ||
- multi_core | ||
include: | ||
# Nightly is only for reference and allowed to fail | ||
- toolchain: nightly | ||
experimental: true | ||
runs-on: ubuntu-latest | ||
continue-on-error: ${{ matrix.experimental || false }} | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: dtolnay/rust-toolchain@master | ||
with: | ||
toolchain: ${{ matrix.toolchain }} | ||
targets: ${{ matrix.target }} | ||
- name: Build library (no features) | ||
run: cargo build --package riscv-rt --target ${{ matrix.target }} | ||
- name : Build library (s-mode) | ||
run: cargo build --package riscv-rt --target ${{ matrix.target }} --features=s-mode | ||
- name : Build library (single-hart) | ||
run: cargo build --package riscv-rt --target ${{ matrix.target }} --features=single-hart | ||
- name: Build library (all features) | ||
run: cargo build --package riscv-rt --target ${{ matrix.target }} --all-features | ||
|
||
- name: Build example (no features) | ||
run: RUSTFLAGS="-C link-arg=-Texamples/device.x" cargo build --package riscv-rt --target ${{ matrix.target }} --example ${{ matrix.example }} | ||
- name : Build example (s-mode) | ||
run: RUSTFLAGS="-C link-arg=-Texamples/device.x" cargo build --package riscv-rt --target ${{ matrix.target }} --example ${{ matrix.example }} --features=s-mode | ||
- name : Build example (single-hart) | ||
run: RUSTFLAGS="-C link-arg=-Texamples/device.x" cargo build --package riscv-rt --target ${{ matrix.target }} --example ${{ matrix.example }} --features=single-hart | ||
- name: Build example (all features) | ||
run: RUSTFLAGS="-C link-arg=-Texamples/device.x" cargo build --package riscv-rt --target ${{ matrix.target }} --example ${{ matrix.example }} --all-features | ||
|
||
# Job to check that all the builds succeeded | ||
build-check: | ||
needs: | ||
- build | ||
runs-on: ubuntu-latest | ||
if: always() | ||
steps: | ||
- run: jq --exit-status 'all(.result == "success")' <<< '${{ toJson(needs) }}' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters