From 56dee870dc1a98df1042799c283c984569cdaf13 Mon Sep 17 00:00:00 2001 From: amtoine <stevan.antoine@gmail.com> Date: Mon, 3 Apr 2023 12:59:39 +0200 Subject: [PATCH] use the default stable toolchain --- .gitlab-ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 3eccc90..70ab0da 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -16,9 +16,9 @@ format: test_stable: script: - - cargo +stable check --examples --all - - cargo +stable check --examples --all-features --all - - cargo +stable test --release + - cargo check --examples --all + - cargo check --examples --all-features --all + - cargo test --release test_nightly: script: @@ -29,8 +29,8 @@ test_nightly: check_no_std: script: - - cargo +stable build --no-default-features --target aarch64-unknown-none + - cargo build --no-default-features --target aarch64-unknown-none build_no_std: script: - - cargo +stable check --examples --no-default-features --target aarch64-unknown-none + - cargo check --examples --no-default-features --target aarch64-unknown-none -- GitLab