diff options
| author | Jeff Epler <jepler@gmail.com> | 2020-10-20 10:06:26 -0500 |
|---|---|---|
| committer | Jeff Epler <jepler@gmail.com> | 2020-10-20 13:25:17 -0500 |
| commit | 599bacb0b4f4654ad0fbc9844d8cc9365d2ee26e (patch) | |
| tree | 77125f3b170f0cd4cbb8d7e5b0a35ba152335482 /.github/workflows | |
| parent | f0b37313c5adf2ad940d7279aa49620d36d7292d (diff) | |
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'
```
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/build.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b3455cb53..447961f85 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -131,7 +131,7 @@ jobs: run: echo "$GITHUB_CONTEXT" - name: Install dependencies run: | - brew install gettext awscli + brew install gettext echo >>$GITHUB_PATH /usr/local/opt/gettext/bin - name: Versions run: | |
