Skip to content

Commit 6d4eff0

Browse files
committed
work around runner-images issue 9966
Seems there's an issue where recent python versions will conflict with the version provided by the runner-image. Let's try to work around it. This feels a bit hacky, because we need to hard-code the specific version, suggestions for improvements welcome. See this ticket for details: actions/runner-images#9966
1 parent 94e3882 commit 6d4eff0

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/sanity_checks.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -188,6 +188,11 @@ jobs:
188188
brew install ninja
189189
python3 -m pip install --pre meson
190190
191+
- name: Work around runner-images issue 9966
192+
run: |
193+
brew unlink [email protected]
194+
brew link --overwrite [email protected]
195+
191196
- name: Sanity Checks
192197
run: |
193198
./tools/fake_tty.py ./tools/sanity_checks.py

0 commit comments

Comments
 (0)