File tree Expand file tree Collapse file tree 2 files changed +0
-13
lines changed Expand file tree Collapse file tree 2 files changed +0
-13
lines changed Original file line number Diff line number Diff line change @@ -106,16 +106,10 @@ jobs:
106106 ./PCbuild/build.bat --experimental-jit ${{ matrix.debug && '-d' || '' }} -p ${{ matrix.architecture }}
107107 ./PCbuild/rt.bat ${{ matrix.debug && '-d' || '' }} -p ${{ matrix.architecture }} -q --multiprocess 0 --timeout 4500 --verbose2 --verbose3
108108
109- # The `find` line is required as a result of https://github.com/actions/runner-images/issues/9966.
110- # This is a bug in the macOS runner image where the pre-installed Python is installed in the same
111- # directory as the Homebrew Python, which causes the build to fail for macos-15
112- # (was 13, see if bug still exists?) This line removes the symlink to the pre-installed Python so
113- # that the Homebrew Python is used instead.
114109 - name : macOS
115110 if : runner.os == 'macOS'
116111 run : |
117112 brew update
118- find /usr/local/bin -lname '*/Library/Frameworks/Python.framework/*' -delete
119113 brew install llvm@${{ matrix.llvm }}
120114 export SDKROOT="$(xcrun --show-sdk-path)"
121115 # Set MACOSX_DEPLOYMENT_TARGET and -Werror=unguarded-availability to
Original file line number Diff line number Diff line change @@ -101,17 +101,10 @@ jobs:
101101 set LLVMInstallDir=C:\Program Files\LLVM
102102 ./PCbuild/build.bat --tail-call-interp -p ${{ matrix.architecture }}
103103
104- # The `find` line is required as a result of https://github.com/actions/runner-images/issues/9966.
105- # This is a bug in the macOS runner image where the pre-installed Python is installed in the same
106- # directory as the Homebrew Python, which causes the build to fail for macos-15. This line removes
107- # the symlink to the pre-installed Python so that the Homebrew Python is used instead.
108- # Note: when a new LLVM is released, the homebrew installation directory changes, so the builds will fail.
109- # We either need to upgrade LLVM or change the directory being pointed to.
110104 - name : Native macOS (release)
111105 if : runner.os == 'macOS'
112106 run : |
113107 brew update
114- find /usr/local/bin -lname '*/Library/Frameworks/Python.framework/*' -delete
115108 brew install llvm@${{ matrix.llvm }}
116109 export SDKROOT="$(xcrun --show-sdk-path)"
117110 export PATH="/usr/local/opt/llvm@${{ matrix.llvm }}/bin:$PATH"
You can’t perform that action at this time.
0 commit comments