File tree Expand file tree Collapse file tree 1 file changed +5
-7
lines changed Expand file tree Collapse file tree 1 file changed +5
-7
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments