From b6221469c9d83f6a3afffd26ab119c76e2360555 Mon Sep 17 00:00:00 2001 From: Tamir Duberstein Date: Thu, 27 Apr 2023 11:06:24 -0400 Subject: [PATCH] Add llvm-tools component --- .github/workflows/rust.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index ce6a84b..c51ed33 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -53,12 +53,11 @@ jobs: profile: minimal toolchain: nightly override: true - - name: Add rustc-dev component - run: rustup component add rustc-dev + components: rustc-dev, llvm-tools - name: Run tests - run: cargo +nightly test --features rustc + run: cargo test --features rustc - name: Run test-project tests with `rustc` feature - run: cd test-project && cargo +nightly test --features rustc + run: cd test-project && cargo test --features rustc