Skip to content

Commit 06adc74

Browse files
committed
More cleanups previous build working
1 parent 7f23a95 commit 06adc74

File tree

1 file changed

+6
-16
lines changed

1 file changed

+6
-16
lines changed

.github/workflows/release-binaries.yml

Lines changed: 6 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -257,28 +257,18 @@ jobs:
257257
258258
- name: Build Unix
259259
shell: bash
260-
if: runner.os != 'Windows'
261260
run: |
262-
ninja -v -C /b stage2-package
263-
release_dir=`find ${{ steps.setup-stage.outputs.build-prefix }}/build -iname 'stage2-bins'`
261+
ninja -v -C /s/build stage2-package
262+
release_dir=`find /s/build -iname 'stage2-bins'`
264263
mv $release_dir/${{ needs.prepare.outputs.release-binary-filename }} .
265264
266-
- name: Enable long paths
267-
run: reg add "HKLM\SYSTEM\CurrentControlSet\Control\FileSystem" /v LongPathsEnabled /t REG_DWORD /d 1 /f
268-
269265
# There is an issue with building on Windows with bash so we use power shell.
270266
# ninja: error: mkdir(tools/clang/tools/extra/clang-tidy/misc/ConfusableTable/CMakeFiles/clang-tidy-confusable-chars-gen.dir/C_/actions-runner/llvm-project/llvm-project/llvm): No such file or directory
271-
- name: Build Windows
272-
if: runner.os == 'Windows'
273-
run: |
274-
ninja -v -C "S:\build" stage2-package
267+
#- name: Build Windows
268+
# if: runner.os == 'Windows'
269+
# run: |
270+
# ninja -v -C "S:\build" stage2-package
275271

276-
- name: Move Release Package
277-
shell: bash
278-
run: |
279-
release_dir=`find ${{ steps.setup-stage.outputs.build-prefix }}/build -iname 'stage2-bins'`
280-
mv $release_dir/${{ needs.prepare.outputs.release-binary-filename }} .
281-
282272
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
283273
with:
284274
name: ${{ runner.os }}-${{ runner.arch }}-release-binary

0 commit comments

Comments
 (0)