We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c2472a commit b0efcd9Copy full SHA for b0efcd9
.github/workflows/ci.yml
@@ -33,7 +33,7 @@ jobs:
33
thumbv7em-none-eabihf
34
thumbv8m.main-none-eabi
35
- name: Build Crates
36
- run: cd xtask && cargo test
+ run: mv Cargo.ci.toml Cargo.toml && cargo test -p xtask
37
env:
38
RUSTFLAGS: ${{ matrix.rustflags }}
39
Cargo.ci.toml
@@ -0,0 +1,25 @@
1
+@@ -1,24 +0,0 @@
2
+[workspace]
3
+members = [
4
+ "xtask",
5
+ "nrf52810-hal",
6
+ "nrf52811-hal",
7
+ "nrf52832-hal",
8
+ "nrf52833-hal",
9
+ "nrf52840-hal",
10
+ "nrf52840-hal-tests",
11
+ "nrf9160-hal",
12
+ "examples/*",
13
+]
14
+exclude = ["examples/.cargo"]
15
+
16
+[profile.dev]
17
+incremental = false
18
+codegen-units = 1
19
+debug = true
20
+lto = false
21
22
+[profile.release]
23
24
+lto = true
25
+opt-level = "s"
0 commit comments