File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -115,10 +115,10 @@ jobs:
115
115
shell : bash
116
116
run : |
117
117
build_prefix=`pwd`
118
- if [ "${{ runner.os }}" = "Linux" ]; then
119
- sudo chown $USER:$USER /mnt/
120
- build_prefix=/mnt/
121
- fi
118
+ # if [ "${{ runner.os }}" = "Linux" ]; then
119
+ # sudo chown $USER:$USER /mnt/
120
+ # build_prefix=/mnt/
121
+ # fi
122
122
cmake -G Ninja -C clang/cmake/caches/Release.cmake -DCMAKE_C_COMPILER_LAUNCHER=sccache -DCMAKE_CXX_COMPILER_LAUNCHER=sccache -S llvm -B $build_prefix/build
123
123
ninja -v -C $build_prefix/build
124
124
echo "build-prefix=$build_prefix" >> $GITHUB_OUTPUT
@@ -129,7 +129,7 @@ jobs:
129
129
shell : bash
130
130
run : |
131
131
tar -c . | zstd -T0 -c > llvm-project.tar.zst
132
- tar ${{ steps.build.outputs.build-prefix }} -c build/ | zstd -T0 -c > build.tar.zst
132
+ tar -C ${{ steps.build.outputs.build-prefix }} -c build/ | zstd -T0 -c > build.tar.zst
133
133
134
134
- name : Upload Stage 1 Source
135
135
uses : actions/upload-artifact@26f96dfa697d77e81fd5907df203aa23a56210a8 # v4.3.0
@@ -265,7 +265,7 @@ jobs:
265
265
- name : Build Release Package
266
266
shell : bash
267
267
run : |
268
- ninja -C ${{ steps.unpack.outputs.build-preifx }}/build stage2-package
268
+ ninja -C ${{ steps.unpack.outputs.build-prefix }}/build stage2-package
269
269
270
270
- name : Timeout Save
271
271
if : always()
You can’t perform that action at this time.
0 commit comments