Skip to content

Commit 599bacb

Browse files
committed
build.yml: Fix building mpy-cross-mac
Recently, the macos-10.15 image was updated with a non-brew version of awscli. This made our CI script, which does a `brew install awscli` fail: ``` Error: The `brew link` step did not complete successfully The formula built, but is not symlinked into /usr/local Could not symlink bin/aws Target /usr/local/bin/aws already exists. You may want to remove it: rm '/usr/local/bin/aws' ```
1 parent f0b3731 commit 599bacb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ jobs:
131131
run: echo "$GITHUB_CONTEXT"
132132
- name: Install dependencies
133133
run: |
134-
brew install gettext awscli
134+
brew install gettext
135135
echo >>$GITHUB_PATH /usr/local/opt/gettext/bin
136136
- name: Versions
137137
run: |

0 commit comments

Comments
 (0)