Skip to content
This repository was archived by the owner on Nov 28, 2023. It is now read-only.

Commit 9f118f1

Browse files
committed
Fix build
1 parent c3aa2ee commit 9f118f1

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,4 @@ inline-asm = ["riscv/inline-asm"]
1818

1919
[dev-dependencies]
2020
riscv = "0.5.3"
21-
riscv-rt = "0.6.0"
2221
panic-halt = "0.2.0"

ci/script.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@ set -euxo pipefail
22

33
main() {
44
cargo check --target $TARGET
5-
cargo check --target $TARGET --examples
5+
if [[ $TARGET == riscv* ]]; then
6+
cargo check --target $TARGET --examples
7+
fi
68

79
if [ $TRAVIS_RUST_VERSION = nightly ]; then
810
cargo check --target $TARGET --features 'inline-asm'

0 commit comments

Comments
 (0)