Skip to content

Commit b0efcd9

Browse files
committed
Brings back the workspace for CI
1 parent 3c2472a commit b0efcd9

File tree

2 files changed

+26
-1
lines changed

2 files changed

+26
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
thumbv7em-none-eabihf
3434
thumbv8m.main-none-eabi
3535
- name: Build Crates
36-
run: cd xtask && cargo test
36+
run: mv Cargo.ci.toml Cargo.toml && cargo test -p xtask
3737
env:
3838
RUSTFLAGS: ${{ matrix.rustflags }}
3939

Cargo.ci.toml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
debug = true
24+
lto = true
25+
opt-level = "s"

0 commit comments

Comments
 (0)