From 3c5263184bd41c5c784d3b85c32b92a7292bbfb8 Mon Sep 17 00:00:00 2001 From: amtoine <stevan.antoine@gmail.com> Date: Mon, 3 Apr 2023 13:33:08 +0200 Subject: [PATCH] fix the naming confusion in the last `*_no_std` tests --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 70ab0da..ba2eaf6 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -29,8 +29,8 @@ test_nightly: check_no_std: script: - - cargo build --no-default-features --target aarch64-unknown-none + - cargo check --examples --no-default-features --target aarch64-unknown-none build_no_std: script: - - cargo check --examples --no-default-features --target aarch64-unknown-none + - cargo build --no-default-features --target aarch64-unknown-none -- GitLab