diff options
| author | Dan Halbert <halbert@adafruit.com> | 2020-04-24 10:39:55 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-04-24 10:39:55 -0400 |
| commit | 1f034f0f59e4263a52cd376ed53888eeaca3c0a4 (patch) | |
| tree | 93afa8a0dda9a5038cb4bf801ae79d61732399b7 /.github | |
| parent | 5a22a5d0161513e1d2a80fb8fac1d10fd9914101 (diff) | |
| parent | f1bf4de452ad16b18cb7fab480732f6ef535eba4 (diff) | |
Merge pull request #2807 from jepler/mpy-cross-mac-moved-cheese
build.yml: Adjust for change in 'brew'
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/build.yml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3aba40764..dc8ead2c4 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -94,15 +94,16 @@ jobs: path: mpy-cross/mpy-cross.static.exe mpy-cross-mac: - runs-on: macos-latest + runs-on: macos-10.15 steps: - name: Dump GitHub context env: GITHUB_CONTEXT: ${{ toJson(github) }} run: echo "$GITHUB_CONTEXT" - - name: Install deps + - name: Make gettext programs available run: | - brew link --force gettext + brew install gettext + echo "::set-env name=PATH::/usr/local/opt/gettext/bin:$PATH" - name: Versions run: | gcc --version |
