aboutsummaryrefslogtreecommitdiff
path: root/ci.sh
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2023-05-14 21:08:37 +0000
committerGitHub <[email protected]>2023-05-14 21:08:37 +0000
commita3d6aa5d7d5dfeaeed4162cbdac35494bbdc1486 (patch)
treefe3fabb100ece7ad22a4a8db9803e7d14077539f /ci.sh
parent7cfce05bd2622b843a7ece65bfde6ffa32130718 (diff)
parentdb907a914c7e84176a15da70385af871c9b97cf6 (diff)
Merge pull request #79 from embassy-rs/update-embassy
Update Embassy, to new PIO API.
Diffstat (limited to 'ci.sh')
-rwxr-xr-xci.sh5
1 files changed, 5 insertions, 0 deletions
diff --git a/ci.sh b/ci.sh
index d41b3aa81..916838200 100755
--- a/ci.sh
+++ b/ci.sh
@@ -1,7 +1,9 @@
1#!/bin/bash 1#!/bin/bash
2 2
3set -euxo pipefail 3set -euxo pipefail
4cd $(dirname $0)
4 5
6export CARGO_TARGET_DIR=$(pwd)/target
5export DEFMT_LOG=trace 7export DEFMT_LOG=trace
6 8
7# build examples 9# build examples
@@ -18,3 +20,6 @@ cargo build --target thumbv6m-none-eabi --features 'log'
18cargo build --target thumbv6m-none-eabi --features 'defmt' 20cargo build --target thumbv6m-none-eabi --features 'defmt'
19cargo build --target thumbv6m-none-eabi --features 'log,firmware-logs' 21cargo build --target thumbv6m-none-eabi --features 'log,firmware-logs'
20cargo build --target thumbv6m-none-eabi --features 'defmt,firmware-logs' 22cargo build --target thumbv6m-none-eabi --features 'defmt,firmware-logs'
23
24(cd cyw43-pio; cargo build --target thumbv6m-none-eabi --features '')
25(cd cyw43-pio; cargo build --target thumbv6m-none-eabi --features 'overclock')