mirror of
https://github.com/rtic-rs/rtic.git
synced 2025-12-18 05:45:19 +01:00
update parser
closes #69 this doesn't change functionality per se but improves diagnostics in some cases. Some hard errors have becomes warnings, for example: when `resources` is empty, or when `idle.path` is set to the default `idle` path.
This commit is contained in:
parent
b55581dfe3
commit
7fdf16eab9
13 changed files with 61 additions and 139 deletions
|
|
@ -1,14 +1,7 @@
|
|||
set -euxo pipefail
|
||||
|
||||
main() {
|
||||
case $TARGET in
|
||||
thumbv*-none-eabi*)
|
||||
cargo install --list | grep 'xargo v0.3.8' || \
|
||||
cargo install xargo --vers 0.3.8
|
||||
rustup component list | grep 'rust-src.*installed' || \
|
||||
rustup component add rust-src
|
||||
;;
|
||||
esac
|
||||
.
|
||||
}
|
||||
|
||||
main
|
||||
|
|
|
|||
|
|
@ -9,13 +9,13 @@ main() {
|
|||
|
||||
case $TARGET in
|
||||
thumbv7em-none-eabi*)
|
||||
xargo check --target $TARGET --features cm7-r0p1
|
||||
xargo check --target $TARGET --features cm7-r0p1 --examples
|
||||
cargo check --target $TARGET --features cm7-r0p1
|
||||
cargo check --target $TARGET --features cm7-r0p1 --examples
|
||||
;;
|
||||
esac
|
||||
|
||||
xargo check --target $TARGET
|
||||
xargo check --target $TARGET --examples
|
||||
cargo check --target $TARGET
|
||||
cargo check --target $TARGET --examples
|
||||
}
|
||||
|
||||
main
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue