File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ install:
22
22
23
23
script :
24
24
- cargo xbuild --release --target target.json
25
- - cargo xclippy
25
+ - cargo xclippy --target target.json
26
26
- cargo clippy --all-targets --all-features
27
27
- cargo fmt --all -- --check
28
28
- cargo test
Original file line number Diff line number Diff line change @@ -4,14 +4,14 @@ version = "0.1.0"
4
4
authors = [" Rob Bradford <robert.bradford@intel.com>" ]
5
5
edition = " 2018"
6
6
7
- # the profile used for `cargo build`
7
+ # Despite "panic-strategy": "abort" being set in target.json, panic = "abort" is
8
+ # needed here to make "cargo check" and "cargo clippy" run without errors.
8
9
[profile .dev ]
9
- panic = " abort" # disable stack unwinding on panic
10
+ panic = " abort"
10
11
lto = true
11
12
12
- # the profile used for `cargo build --release`
13
13
[profile .release ]
14
- panic = " abort" # disable stack unwinding on panic
14
+ panic = " abort"
15
15
lto = true
16
16
17
17
[dependencies ]
You can’t perform that action at this time.
0 commit comments