We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d2ea92d commit e3a9ff0Copy full SHA for e3a9ff0
.github/workflows/devel-colima-intel-macos.yml
@@ -17,11 +17,13 @@ jobs:
17
- uses: actions/checkout@v4
18
with:
19
ref: '2.x-devel'
20
- - name: Upgrade brew
+ - name: Set up Homebrew
21
+ id: set-up-homebrew
22
+ uses: Homebrew/actions/setup-homebrew@master
23
+ - name: Fix Python conflicts between macOS runner and Homebrew
24
run: |
- rm -rf /usr/local/bin/2to3*
- brew update
- brew upgrade
25
+ # see https://github.com/actions/setup-python/issues/577
26
+ brew list -1 | grep python | while read formula; do brew unlink $formula; brew link --overwrite $formula; done
27
- name: Install homebrew dependencies
28
29
set -x
0 commit comments