Skip to content

Commit 20a056e

Browse files
committed
f
1 parent dd50604 commit 20a056e

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

.circleci/config.yml

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -172,18 +172,16 @@ jobs:
172172
steps:
173173
- checkout
174174
- run:
175-
name: Install rustup
175+
name: Install rustup and clang
176+
# We are installing them at the same time because it is faster
176177
# todo: Remove --ignore-checksums flag
177-
command: choco install rustup.install -y --ignore-checksums
178-
- run:
179-
name: Install clang
180-
command: choco install llvm -y
178+
command: choco install rustup.install llvm -y --ignore-checksums
181179
- run:
182180
name: Add target
183-
command: rustup.exe target add x86_64-pc-windows-msvc
181+
command: rustup target add x86_64-pc-windows-msvc
184182
- run:
185183
name: Install target toolchain
186-
command: rustup.exe toolchain install stable-x86_64-pc-windows-msvc
184+
command: rustup toolchain install stable-x86_64-pc-windows-msvc
187185
- run:
188186
name: Check Trin workspace
189187
command: cargo check --workspace

0 commit comments

Comments
 (0)