Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[CI] Force mac use Python 3.11 from homebrew #254

Merged
merged 1 commit into from
Nov 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/devbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -230,9 +230,9 @@ jobs:
# Reopen for runner image v20231029.1
# old homebrew/core cause brew link and unlink not working
brew update # No update because it is slow
# Force using python 3.10 from homebrew
# Force using python 3.11 from homebrew
brew unlink python
brew link --force --overwrite python@3.10
brew link --force --overwrite python@3.11
brew install qt6

- name: dependency by pip
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -168,9 +168,9 @@ jobs:
# Reopen for runner image v20231029.1
# old homebrew/core cause brew link and unlink not working
brew update # No update because it is slow
# Force using python 3.10 from homebrew
# Force using python 3.11 from homebrew
brew unlink python
brew link --force --overwrite python@3.10
brew link --force --overwrite python@3.11
brew install llvm@16 qt6
ln -s "$(brew --prefix llvm@16)/bin/clang-format" "/usr/local/bin/clang-format"
ln -s "$(brew --prefix llvm@16)/bin/clang-tidy" "/usr/local/bin/clang-tidy"
Expand Down
Loading