From 474a46999d690b6200e5511872f1a45a728c670c Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Wed, 26 Jan 2022 15:00:04 -0500 Subject: [PATCH] CI: Fix async-std task Previously it didn't enable any TLS provider, since we made native-tls optional a few commits ago. Now it enables rustls, so that rustls also gets a quick check along with async-std. I've also switched this test to use "cargo clippy" in place of "cargo test" because it's a strict superset. --- .gitlab-ci.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index e89edb256..9ab5ae38b 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -28,11 +28,12 @@ rust-latest: - target/x86_64-unknown-linux-gnu/debug/arti expire_in: 1 hours -rust-latest-async-std: +rust-latest-async-std-rustls: stage: build image: rust:latest script: - - cd crates/arti-client && cargo check --no-default-features --features=async-std + - rustup component add clippy + - cd crates/arti-client && cargo clippy --no-default-features --features=async-std,rustls tags: - amd64