Skip to content

Commit

Permalink
switch to MSVC
Browse files Browse the repository at this point in the history
  • Loading branch information
conradoplg committed Oct 18, 2023
1 parent 9ba416c commit 3d17c33
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,16 +85,10 @@ jobs:
# - name: install LLVM on Mac
# if: matrix.os == 'macOS-latest'
# run: brew install llvm
- name: install LLVM on Windows
if: matrix.os == 'windows-latest'
run: |
choco install llvm -y
echo "C:\Program Files\LLVM\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
echo "LIBCLANG_PATH=C:\Program Files\LLVM\bin" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
- uses: actions-rs/toolchain@v1
if: matrix.os == 'windows-latest'
with:
target: x86_64-pc-windows-gnu
target: x86_64-pc-windows-msvc
toolchain: stable
profile: minimal
override: true
Expand All @@ -108,7 +102,7 @@ jobs:
if: matrix.os == 'windows-latest'
with:
command: test
args: --target x86_64-pc-windows-gnu
args: --target x86_64-pc-windows-msvc
- uses: actions-rs/cargo@v1
if: matrix.os != 'windows-latest'
with:
Expand Down

0 comments on commit 3d17c33

Please sign in to comment.