File tree 1 file changed +13
-1
lines changed
1 file changed +13
-1
lines changed Original file line number Diff line number Diff line change 80
80
- uses : actions/setup-python@v4
81
81
with :
82
82
python-version : ' 3.10'
83
+ - name : Cache LLVM and Clang
84
+ id : cache-llvm
85
+ uses : actions/cache@v3
86
+ with :
87
+ path : |
88
+ C:/Program Files/LLVM
89
+ ./llvm
90
+ key : llvm-${{ matrix.llvm }}
91
+ - name : Install LLVM and Clang
92
+ uses : KyleMayes/install-llvm-action@v1
93
+ with :
94
+ version : " ${{ matrix.llvm }}"
95
+ cached : ${{ steps.cache-llvm.outputs.cache-hit }}
83
96
# Only support Window x64 ~ Jules
84
97
# - name: macOS
85
98
# if: runner.os == 'macOS'
@@ -114,7 +127,6 @@ jobs:
114
127
- name : Windows
115
128
if : runner.os == 'Windows'
116
129
run : |
117
- choco install llvm --allow-downgrade --version ${{ matrix.llvm }}
118
130
./PCbuild/build ${{ matrix.debug && '-d' || '--pgo' }} -p ${{ matrix.windows_platform }}
119
131
# ./PCbuild/rt${{ matrix.debug && ' -d' || '' }} -p ${{ matrix.windows_platform }} -q -j0 -wW
120
132
- name : Tests
You can’t perform that action at this time.
0 commit comments