Skip to content

Commit 4da9290

Browse files
committed
GitHub Actions: fix-github-actions-workflow-macos
[email protected] symlink 2to3-3.11 to /usr/local/bin/2to3-3.11, but it already exists. so we need use --overwrite option when installing [email protected] [email protected] is depended by gdb. Signed-off-by: leleliu008 <[email protected]>
1 parent bf0d535 commit 4da9290

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/testing-mac.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,10 @@ jobs:
2525
- name: update package information
2626
run: brew update
2727
- name: install tools and libraries
28-
run: brew install automake pkg-config bash libxml2 jansson libyaml gdb docutils pcre2
28+
run: |
29+
# [email protected] symlink 2to3-3.11 to /usr/local/bin/2to3-3.11, but it already exists. so we need use --overwrite option when installing [email protected], [email protected] is depended by gdb.
30+
brew install --overwrite [email protected]
31+
brew install automake pkg-config bash libxml2 jansson libyaml gdb docutils pcre2
2932
- name: autogen.sh
3033
run: ./autogen.sh
3134
- name: report the version of cc

0 commit comments

Comments
 (0)