File tree 3 files changed +1
-6
lines changed
3 files changed +1
-6
lines changed Original file line number Diff line number Diff line change @@ -103,6 +103,7 @@ runs:
103
103
if : inputs.os == 'windows' && inputs.llvm_source == 'install'
104
104
shell : pwsh
105
105
env :
106
+ # Map inputs.llvm_version to specific download release here.
106
107
LLVM_RELEASE : " ${{ inputs.llvm_version == '20' && '20.1.2' || '19.1.7' }}"
107
108
run : |
108
109
Invoke-WebRequest https://github.com/llvm/llvm-project/releases/download/llvmorg-$env:LLVM_RELEASE/clang+llvm-$env:LLVM_RELEASE-x86_64-pc-windows-msvc.tar.xz -OutFile clang+llvm-$env:LLVM_RELEASE-x86_64-pc-windows-msvc.tar.xz
Original file line number Diff line number Diff line change @@ -198,8 +198,6 @@ jobs:
198
198
# Based on: mr-windows-msvc-x86_64-llvm-previous-cl3.0-offline
199
199
run_windows_msvc_x86_64_llvm_latest_cl3_0_offline :
200
200
runs-on : windows-2019
201
- # do not run as PR job due to not yet supporting windows install
202
- # if: contains(inputs.target_list, 'host_x86_64_windows') && !inputs.is_pull_request
203
201
if : contains(inputs.target_list, 'host_x86_64_windows')
204
202
steps :
205
203
- name : Setup Windows llvm base
@@ -216,7 +214,6 @@ jobs:
216
214
with :
217
215
llvm_version : ${{ inputs.llvm_current }}
218
216
os : windows
219
- # llvm_source: ${{ inputs.llvm_source == 'install' && 'cache' || inputs.llvm_source }}
220
217
llvm_source : ${{ inputs.llvm_source }}
221
218
github_token : ${{ secrets.GITHUB_TOKEN }}
222
219
Original file line number Diff line number Diff line change 28
28
llvm_source : install
29
29
llvm_previous : 19
30
30
llvm_current : 20
31
- target_list : ' [ "host_x86_64_windows" ]'
32
-
33
-
You can’t perform that action at this time.
0 commit comments