Skip to content

Commit 67c0775

Browse files
committed
Debug
1 parent 9fe8287 commit 67c0775

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/release-binaries.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,9 +67,15 @@ jobs:
6767
test-runs-on: ${{ steps.vars.outputs.build-runs-on }}
6868

6969
steps:
70+
- name: Bash Test
71+
shell: bash
72+
run: |
73+
export PATH=C:\Strawberry\c\bin\:$PATH
74+
cmake --version
75+
which cmake
7076
- name: Check long paths
7177
run: |
72-
Get-ChildItem -Path "C:\" -Recurse -Include "cmake.exe"
78+
#Get-ChildItem -Path "C:\" -Recurse -Include "cmake.exe"
7379
Get-ItemProperty -Path 'HKLM:\SYSTEM\CurrentControlSet\Control\FileSystem' -Name 'LongPathsEnabled'
7480
New-Item -Path "C:\actions-runner\llvm-project\llvm-project\build\tools\clang\stage2-instrumented-bins\tools\clang\stage2-bins\tools\mlir\tools\mlir-linalg-ods-gen\CMakeFiles\mlir-linalg-ods-yaml-gen.dir\C_\actions-runner\llvm-project\llvm-project\llvm\resources\windows_version_resource.rc.res" -ItemType File -Force
7581
# It's good practice to use setup-python, but this is also required on macos-14
@@ -247,6 +253,7 @@ jobs:
247253
run: |
248254
# There were some issues on the ARM64 MacOS runners with trying to build x86 object,
249255
# so we need to set some extra cmake flags to disable this.
256+
export PATH=C:\Strawberry\c\bin\:$PATH
250257
cmake -G Ninja -S llvm -B ${{ steps.setup-stage.outputs.build-prefix }}/build \
251258
${{ needs.prepare.outputs.target-cmake-flags }} \
252259
-C clang/cmake/caches/Release.cmake \

0 commit comments

Comments
 (0)