Skip to content

Commit a32dad8

Browse files
authored
Fix install LLVM on windows (#77)
1 parent 0a9c233 commit a32dad8

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/ci.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
binary_target: x86_64-unknown-linux-gnu
1919
- os: macos-10.15
2020
binary_target: x86_64-apple-darwin
21-
- os: windows-2019
21+
- os: windows-latest
2222
binary_target: x86_64-pc-windows-msvc
2323
steps:
2424
- uses: actions/checkout@v2
@@ -34,9 +34,10 @@ jobs:
3434
3535
- name: Install LLVM and Clang # required for bindgen on Windows
3636
uses: KyleMayes/install-llvm-action@v1
37-
if: matrix.os == 'windows-2019'
37+
if: matrix.os == 'windows-latest'
3838
with:
3939
version: "10.0"
40+
directory: ${{ runner.temp }}/llvm-10.0/
4041

4142
- name: Install rust ${{ matrix.binary_target }}
4243
uses: actions-rs/toolchain@v1

0 commit comments

Comments
 (0)