From 5e55c0ae972896421a79bbba4680b3202d61b032 Mon Sep 17 00:00:00 2001
From: Matt Johnston <matt@ucc.asn.au>
Date: Sat, 27 Apr 2024 11:58:15 +0800
Subject: [PATCH] Don't use nightly for CI

Everything now builds on stable. Hopefully nightly doesn't break
anything (that's what crater's for, right?)
---
 testing/ci.sh | 5 -----
 1 file changed, 5 deletions(-)

diff --git a/testing/ci.sh b/testing/ci.sh
index 75d040f..ae8c82d 100755
--- a/testing/ci.sh
+++ b/testing/ci.sh
@@ -18,7 +18,6 @@ export RUSTDOCFLAGS='-D warnings'
 # dependencies
 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
@@ -32,10 +31,6 @@ cargo build
 cargo doc
 cargo test --doc
 
-# nightly
-cargo +nightly build
-cargo +nightly test
-
 (
 cd async
 # only test lib since some examples are broken
-- 
GitLab