chore: Update macOS alpha build workflow to remove unnecessary Python 3.12 commands and files

This commit is contained in:
Mauro Balades
2024-08-20 12:04:21 +02:00
parent bb6113f221
commit c8ad6cb70e

View File

@@ -72,8 +72,8 @@ jobs:
run: |
# completly uninstall python3 and python3.12
brew uninstall --ignore-dependencies python3 -f
echo 'export PATH="'"$(python3 -m site --user-base)"'/bin:$PATH"' >> ~/.zshenv
export PATH="$(python3 -m site --user-base)/bin":$PATH
python3 -m pip install --user mercurial
brew install python@3.11
@@ -81,6 +81,7 @@ jobs:
- name: Bootstrap
run: |
cd engine
export PATH="$(python3 -m site --user-base)/bin":$PATH
./mach --no-interactive bootstrap --application-choice browser
cd ..