From 4020a9ed0c243d076da63e0bf67c2186b7200485 Mon Sep 17 00:00:00 2001 From: Tony Garnock-Jones Date: Wed, 13 Oct 2021 16:52:18 +0200 Subject: [PATCH] Build binary crate in CI test with nightly as well as stable --- ci/test.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ci/test.sh b/ci/test.sh index a3575a5fd..3fc943067 100755 --- a/ci/test.sh +++ b/ci/test.sh @@ -88,6 +88,8 @@ EOF cargo init --bin --name hello . retry cargo fetch cross build --target "${TARGET}" + echo nightly > rust-toolchain + cross build --target "${TARGET}" popd rm -rf "${td}"