Skip to content

Commit 0a48b29

Browse files
committed
clang
1 parent 5aab549 commit 0a48b29

File tree

1 file changed

+13
-5
lines changed

1 file changed

+13
-5
lines changed

.github/workflows/release.yml

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -102,11 +102,11 @@ jobs:
102102
# svm_target_platform: linux-aarch64
103103
# platform: alpine
104104
# arch: arm64
105-
- runner: macos-14-large
106-
target: x86_64-apple-darwin
107-
svm_target_platform: macosx-amd64
108-
platform: darwin
109-
arch: amd64
105+
# - runner: macos-14-large
106+
# target: x86_64-apple-darwin
107+
# svm_target_platform: macosx-amd64
108+
# platform: darwin
109+
# arch: amd64
110110
# - runner: macos-latest-large
111111
# target: aarch64-apple-darwin
112112
# svm_target_platform: macosx-aarch64
@@ -138,6 +138,14 @@ jobs:
138138
printf 'SDKROOT=%s\n' "$(xcrun -sdk macosx --show-sdk-path)" >> "$GITHUB_ENV"
139139
printf 'MACOSX_DEPLOYMENT_TARGET=%s\n' "$(xcrun -sdk macosx --show-sdk-platform-version)" >> "$GITHUB_ENV"
140140
141+
- name: Windows setup
142+
if: matrix.target == 'x86_64-pc-windows-msvc'
143+
shell: powershell
144+
run: |
145+
choco install llvm -y
146+
printf "LIBCLANG_PATH=C:\\Program Files\\LLVM\\bin\n" >> "$GITHUB_ENV"
147+
printf "PATH=C:\\Program Files\\LLVM\\bin:$PATH\n" >> "$GITHUB_ENV"
148+
141149
- name: cross setup
142150
if: contains(matrix.target, 'musl')
143151
uses: taiki-e/cache-cargo-install-action@7447f04c51f2ba27ca35e7f1e28fab848c5b3ba7 # v2

0 commit comments

Comments
 (0)