File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -257,7 +257,9 @@ jobs:
257
257
# There were some issues on the ARM64 MacOS runners with trying to build x86 object,
258
258
# so we need to set some extra cmake flags to disable this.
259
259
export PATH=C:\Strawberry\c\bin\:$PATH
260
- $CMAKE -G Ninja -S llvm -B ${{ steps.setup-stage.outputs.build-prefix }}/build \
260
+ subst S: ${{ github.workspace }}
261
+ subst B: ${{ steps.setup-stage.outputs.build-prefix }}/build
262
+ $CMAKE -G Ninja -S S:\llvm -B B:\ \
261
263
${{ needs.prepare.outputs.target-cmake-flags }} \
262
264
-C clang/cmake/caches/Release.cmake \
263
265
-DBOOTSTRAP_LLVM_PARALLEL_LINK_JOBS=1 \
@@ -282,7 +284,7 @@ jobs:
282
284
shell : bash
283
285
if : runner.os != 'Windows'
284
286
run : |
285
- ninja -v -C ${{ steps.setup-stage.outputs.build-prefix }}/build stage2-package
287
+ ninja -v -C /b stage2-package
286
288
release_dir=`find ${{ steps.setup-stage.outputs.build-prefix }}/build -iname 'stage2-bins'`
287
289
mv $release_dir/${{ needs.prepare.outputs.release-binary-filename }} .
288
290
You can’t perform that action at this time.
0 commit comments