From 13cae12fee0e45c4178245cbb5bb425481aecd04 Mon Sep 17 00:00:00 2001
From: Matt Johnston <matt@ucc.asn.au>
Date: Thu, 19 Oct 2023 07:41:11 +0800
Subject: [PATCH] rustup target add thumbv6m-none-eabi in ch.sh

---
 testing/ci.sh | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/testing/ci.sh b/testing/ci.sh
index 409e155..737b6cf 100755
--- a/testing/ci.sh
+++ b/testing/ci.sh
@@ -20,6 +20,10 @@ OUT="$(realpath ci_out)"
 which cargo-bloat > /dev/null || cargo install cargo-bloat
 if [ -z "$OFFLINE" ]; then
     rustup toolchain add nightly
+    (
+    cd embassy/demos/picow
+    rustup target add thumbv6m-none-eabi
+    )
 fi
 
 # stable - disabled now due to async fn in Behaviour
-- 
GitLab