Skip to content

Commit 4de6993

Browse files
committed
Remove python downgrading in CI
The old version of Python is no longer requires for modern llvm build
1 parent 953096d commit 4de6993

File tree

1 file changed

+1
-10
lines changed

1 file changed

+1
-10
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -312,15 +312,6 @@ jobs:
312312
run: |
313313
brew install automake autoconf-archive cmake libtool ninja
314314
315-
# libcxx build is not working with python >= 3.12
316-
- name: Do not use preinstalled python >= 3.12
317-
run: |
318-
brew uninstall --ignore-dependencies [email protected]
319-
[ -e /Library/Frameworks/Python.framework ] && \
320-
sudo mv /Library/Frameworks/Python.framework /Library/Frameworks/Python.framework.dont-look-at-this
321-
brew install [email protected]
322-
ln -s "$(brew --prefix [email protected])/bin/python3" "$(brew --prefix [email protected])/bin/python"
323-
324315
- name: Cache - vcpkg
325316
uses: actions/cache@v4
326317
with:
@@ -332,7 +323,7 @@ jobs:
332323
run: |
333324
export LIBTOOLIZE=glibtoolize
334325
export LIBTOOL=glibtool
335-
export PATH="$(brew --prefix [email protected])/bin:$PATH"
326+
export PATH="$(brew --prefix python3)/bin:$PATH"
336327
337328
./autogen.sh --with-builtin-tommath --with-builtin-tomcrypt
338329
make -j4

0 commit comments

Comments
 (0)