aboutsummaryrefslogtreecommitdiff
path: root/test-build.sh
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2021-01-01 22:41:59 +0100
committerDario Nieuwenhuis <[email protected]>2021-01-01 22:46:32 +0100
commit20d3dc87f95f844e747a7e93036ce9ddac369081 (patch)
tree3842a1f3a343de0af8195a1a2a2cf0da17cb7c37 /test-build.sh
parent4783222f675c1316d0e1a0fda92591f7aca63456 (diff)
Rename examples -> embassy-nrf-examples
Diffstat (limited to 'test-build.sh')
-rwxr-xr-xtest-build.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/test-build.sh b/test-build.sh
index 52bf7bb7b..f67cc5b2b 100755
--- a/test-build.sh
+++ b/test-build.sh
@@ -2,9 +2,6 @@
2 2
3set -euxo pipefail 3set -euxo pipefail
4 4
5# examples
6(cd examples; cargo build --target thumbv7em-none-eabi --bins)
7
8# embassy std 5# embassy std
9(cd embassy; cargo build --features log,std) 6(cd embassy; cargo build --features log,std)
10 7
@@ -14,6 +11,9 @@ set -euxo pipefail
14(cd embassy; cargo build --target thumbv7em-none-eabi --features defmt) 11(cd embassy; cargo build --target thumbv7em-none-eabi --features defmt)
15 12
16# embassy-nrf 13# embassy-nrf
14
15(cd embassy-nrf-examples; cargo build --target thumbv7em-none-eabi --bins)
16
17(cd embassy-nrf; cargo build --target thumbv7em-none-eabi --features 52810) 17(cd embassy-nrf; cargo build --target thumbv7em-none-eabi --features 52810)
18#(cd embassy-nrf; cargo build --target thumbv7em-none-eabi --features 52811) # nrf52811-hal doesn't exist yet 18#(cd embassy-nrf; cargo build --target thumbv7em-none-eabi --features 52811) # nrf52811-hal doesn't exist yet
19(cd embassy-nrf; cargo build --target thumbv7em-none-eabi --features 52832) 19(cd embassy-nrf; cargo build --target thumbv7em-none-eabi --features 52832)