File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -149,11 +149,17 @@ jobs:
149
149
if : steps.cache.outputs.cache-hit != 'true'
150
150
run : |
151
151
cmake --build build --parallel -t llvm-package
152
+ - name : Upload CMake Output
153
+ uses : actions/upload-artifact@v4
154
+ if : failure()
155
+ with :
156
+ name : cmake-output-llvm-${{ matrix.target.name }}
157
+ path : |
158
+ build/llvm-prefix/src/llvm-build/CMakeCache.txt
159
+ build/llvm-prefix/src/llvm-build/CMakeFiles/CMakeConfigureLog.yaml
152
160
- name : Build compiler-rt
153
161
if : ${{ matrix.target.name == 'x86_64-unknown-linux-gnu' && steps.cache.outputs.cache-hit != 'true' }}
154
162
run : cmake --build build --parallel -t compiler-rt-package
155
- - name : List files
156
- run : ls build
157
163
- name : Upload built llvm
158
164
uses : actions/upload-artifact@v4
159
165
with :
You can’t perform that action at this time.
0 commit comments