File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change 4
4
push :
5
5
branches :
6
6
- develop
7
- - release-**
8
7
pull_request :
9
8
branches :
10
9
- develop
11
- - release-**
12
10
13
11
concurrency :
14
12
group : ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
@@ -28,10 +26,12 @@ jobs:
28
26
- name : Install LLVM for Win-ARM64
29
27
shell : pwsh
30
28
run : |
31
- Invoke-WebRequest https://github.com/llvm/llvm-project/releases/download/llvmorg-20.1.6 /LLVM-20.1.6 -woa64.exe -UseBasicParsing -OutFile LLVM-woa64.exe
29
+ Invoke-WebRequest https://github.com/llvm/llvm-project/releases/download/llvmorg-20.1.8 /LLVM-20.1.8 -woa64.exe -UseBasicParsing -OutFile LLVM-woa64.exe
32
30
Start-Process -FilePath ".\LLVM-woa64.exe" -ArgumentList "/S" -Wait
33
31
echo "C:\Program Files\LLVM\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
34
-
32
+ #dir "C:\Program Files\LLVM\include\flang"
33
+ #rmdir /Q /S "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/VC/Tools/Llvm/ARM64"
34
+
35
35
- name : Install CMake and Ninja for Win-ARM64
36
36
shell : pwsh
37
37
run : |
47
47
shell : cmd
48
48
run : |
49
49
CALL "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvarsarm64.bat"
50
+ set PATH=C:\Program Files\LLVM\bin;%PATH%
51
+
50
52
mkdir build
51
53
cd build
52
54
cmake .. -G Ninja ^
You can’t perform that action at this time.
0 commit comments