We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c43a068 commit afa6447Copy full SHA for afa6447
.github/workflows/build.yml
@@ -98,12 +98,19 @@ jobs:
98
- name: "SCM Checkout"
99
uses: actions/checkout@v4
100
101
- - name: Add msbuild to PATH
+ - name: "Add msbuild to PATH"
102
if: matrix.build_system == 'vs2019'
103
uses: microsoft/setup-msbuild@v2
104
with:
105
vs-version: '[16.0,17.0)'
106
107
+ - name: "Mac homebrew workaround"
108
+ if: matrix.target == 'darwin'
109
+ run: |
110
+ # see https://github.com/Homebrew/homebrew-core/issues/165793#issuecomment-1989441193
111
+ # see https://github.com/Homebrew/brew/blob/master/.github/workflows/tests.yml
112
+ brew unlink python && brew link --overwrite python
113
+
114
- name: "Install: Required Dev Packages"
115
run: |
116
set -eux
0 commit comments