aboutsummaryrefslogtreecommitdiff
path: root/ci.sh
diff options
context:
space:
mode:
Diffstat (limited to 'ci.sh')
-rwxr-xr-xci.sh33
1 files changed, 1 insertions, 32 deletions
diff --git a/ci.sh b/ci.sh
index 05b1d0ad7..62e59cf30 100755
--- a/ci.sh
+++ b/ci.sh
@@ -4,37 +4,6 @@ set -euxo pipefail
4 4
5cd $(dirname $0) 5cd $(dirname $0)
6 6
7cargo fmt --all -- --check
8
9# embassy std
10(cd embassy-std-examples; cargo build)
11
12# embassy embedded
13(cd embassy; cargo build --target thumbv7em-none-eabi)
14(cd embassy; cargo build --target thumbv7em-none-eabi --features log)
15(cd embassy; cargo build --target thumbv7em-none-eabi --features defmt)
16(cd embassy; cargo build --target thumbv6m-none-eabi --features defmt)
17
18# embassy-nrf 7# embassy-nrf
19 8
20(cd embassy-nrf-examples; cargo build --target thumbv7em-none-eabi --bins) 9(cd embassy-nrf-examples; cargo build --target thumbv7em-none-eabi --bins) \ No newline at end of file
21
22(cd embassy-nrf; cargo build --target thumbv7em-none-eabi --features 52810)
23#(cd embassy-nrf; cargo build --target thumbv7em-none-eabi --features 52811) # nrf52811-hal doesn't exist yet
24(cd embassy-nrf; cargo build --target thumbv7em-none-eabi --features 52832)
25(cd embassy-nrf; cargo build --target thumbv7em-none-eabi --features 52833)
26(cd embassy-nrf; cargo build --target thumbv7em-none-eabi --features 52840)
27
28(cd embassy-nrf; cargo build --target thumbv7em-none-eabi --features 52840,log)
29(cd embassy-nrf; cargo build --target thumbv7em-none-eabi --features 52840,defmt)
30
31# embassy-stm32f4
32
33(cd embassy-stm32f4-examples; cargo build --target thumbv7em-none-eabi --bins --features stm32f405)
34(cd embassy-stm32f4; cargo build --target thumbv7em-none-eabi --features stm32f405)
35(cd embassy-stm32f4; cargo build --target thumbv7em-none-eabi --features stm32f405,defmt)
36
37# embassy-stm32l0
38
39(cd embassy-stm32l0; cargo build --target thumbv6m-none-eabi --features stm32l0x2)
40(cd embassy-stm32l0; cargo build --target thumbv6m-none-eabi --features stm32l0x2,defmt)