aboutsummaryrefslogtreecommitdiff
path: root/ci.sh
diff options
context:
space:
mode:
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')