Skip to content

Commit

Permalink
f
Browse files Browse the repository at this point in the history
  • Loading branch information
KolbyML committed Sep 18, 2023
1 parent dd50604 commit 20a056e
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -172,18 +172,16 @@ jobs:
steps:
- checkout
- run:
name: Install rustup
name: Install rustup and clang
# We are installing them at the same time because it is faster
# todo: Remove --ignore-checksums flag
command: choco install rustup.install -y --ignore-checksums
- run:
name: Install clang
command: choco install llvm -y
command: choco install rustup.install llvm -y --ignore-checksums
- run:
name: Add target
command: rustup.exe target add x86_64-pc-windows-msvc
command: rustup target add x86_64-pc-windows-msvc
- run:
name: Install target toolchain
command: rustup.exe toolchain install stable-x86_64-pc-windows-msvc
command: rustup toolchain install stable-x86_64-pc-windows-msvc
- run:
name: Check Trin workspace
command: cargo check --workspace
Expand Down

0 comments on commit 20a056e

Please sign in to comment.