Skip to content

Commit 4628809

Browse files
committed
Llvm
1 parent 0d26858 commit 4628809

1 file changed

Lines changed: 18 additions & 0 deletions

File tree

.github/workflows/get-msvc-2019-tools.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,16 @@ jobs:
4343
echo winSdkDir=%WindowsSdkDir%
4444
echo vcToolsInstallDir=%VCToolsInstallDir%
4545
cl.exe
46+
echo Copy Llvm Tools
47+
mkdir Llvm && cd Llvm && mkdir bin
48+
copy /Y "%vcToolsInstallDir%../../Llvm/bin/clang-format.exe" bin
49+
copy /Y "%vcToolsInstallDir%../../Llvm/bin/git-clang-format" bin
50+
copy /Y "%vcToolsInstallDir%../../Llvm/bin/clang-tidy.exe" bin
51+
mkdir x64 && cd x64 && mkdir bin
52+
copy /Y "%vcToolsInstallDir%../../Llvm/x64/bin/clang-format.exe" bin
53+
copy /Y "%vcToolsInstallDir%../../Llvm/x64/bin/git-clang-format" bin
54+
copy /Y "%vcToolsInstallDir%../../Llvm/x64/bin/clang-tidy.exe" bin
55+
cd .. && cd ..
4656
mkdir vcToolsInstallDir Auxiliary
4757
echo Copy VC Auxiliary Build
4858
cd Auxiliary && mkdir Build
@@ -77,6 +87,13 @@ jobs:
7787
del /S /Q *.pdb
7888
cd ..
7989
90+
- name: zip Llvm
91+
uses: thedoctor0/zip-release@0.7.1
92+
with:
93+
type: 'zip'
94+
path: Llvm
95+
filename: 'Llvm.zip'
96+
8097
- name: zip VC_Auxiliary
8198
uses: thedoctor0/zip-release@0.7.1
8299
with:
@@ -152,6 +169,7 @@ jobs:
152169
draft: false
153170
prerelease: false
154171
files: |
172+
Llvm.zip
155173
vc_Auxiliary.zip
156174
Auxiliary.zip
157175
include.zip

0 commit comments

Comments
 (0)