-
Notifications
You must be signed in to change notification settings - Fork 13
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
2a9542f
commit ad00741
Showing
16 changed files
with
91 additions
and
157 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
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,52 @@ | ||
on: | ||
push: | ||
branches: [ master ] | ||
pull_request: | ||
merge_group: | ||
|
||
name: Build check (hifive1) | ||
|
||
jobs: | ||
# We check that the crate builds and links for all the toolchains and targets. | ||
build-riscv: | ||
strategy: | ||
matrix: | ||
# All generated code should be running on stable now, MRSV is 1.70.0 | ||
toolchain: [nightly, stable, 1.70.0] | ||
board: [hifive1, hifive1-revb, redv, lofive, lofive-r1] | ||
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@v4 | ||
- name: Update Rust toolchain | ||
run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }} | ||
- name: Install Rust target | ||
run: rustup target install riscv32imc-unknown-none-elf | ||
- name: Build (direct) | ||
run: cargo build --package hifive1 --features board-${{ matrix.board }} | ||
- name: Build (vectored) | ||
run: cargo build --package hifive1 --features board-${{ matrix.board }},virq | ||
|
||
# On MacOS and Ubuntu, we at least make sure that the crate builds and links. | ||
# On Windows, linking fails when the rt feature is enabled. | ||
build-others: | ||
strategy: | ||
matrix: | ||
os: [ macos-latest, ubuntu-latest ] | ||
board: [hifive1, hifive1-revb, redv, lofive, lofive-r1] | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Update Rust toolchain | ||
run: rustup update stable && rustup default stable | ||
- name: Rename .cargo/config to .cargo/config.bak to ignore it | ||
run: mv .cargo/config.toml .cargo/config.bak | ||
- name: Build (direct) | ||
run: cargo test --package hifive1 --features board-${{ matrix.board }} | ||
- name: Build (vectored) | ||
run: cargo test --package hifive1 --features board-${{ matrix.board }},virq | ||
|
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 |
---|---|---|
|
@@ -3,4 +3,5 @@ resolver = "2" | |
members = [ | ||
"e310x", | ||
"e310x-hal", | ||
"hifive1", | ||
] |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,17 +1,17 @@ | ||
[package] | ||
name = "hifive1" | ||
version = "0.12.0" | ||
version = "0.13.0" | ||
repository = "https://github.com/riscv-rust/hifive1" | ||
authors = ["David Craven <[email protected]>"] | ||
categories = ["embedded", "hardware-support", "no-std"] | ||
description = "Board support crate for HiFive1 and LoFive boards" | ||
keywords = ["riscv", "register", "peripheral"] | ||
license = "ISC" | ||
edition = "2018" | ||
rust-version = "1.59" | ||
edition = "2021" | ||
rust-version = "1.65" | ||
|
||
[dependencies] | ||
e310x-hal = "0.11.0" | ||
e310x-hal = { path = "../e310x-hal", version = "0.11.0" } | ||
embedded-hal = "0.2.7" | ||
riscv = "0.10.1" | ||
nb = "1.0.0" | ||
|
@@ -22,6 +22,7 @@ board-hifive1-revb = ["e310x-hal/g002"] | |
board-redv = ["e310x-hal/g002"] | ||
board-lofive = [] | ||
board-lofive-r1 = ["e310x-hal/g002"] | ||
virq = ["e310x-hal/virq"] | ||
|
||
[package.metadata.docs.rs] | ||
features = ['board-hifive1-revb'] |
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
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
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