Commit 84e117e0b5ef5dec2bd4523921a4b510c293bbd5

Authored by Perry Werneck
1 parent 3ceece1e
Exists in develop

Debugging macos workflow.

Showing 1 changed file with 7 additions and 5 deletions   Show diff stats
.github/workflows/macos.yml
1   -name: MacOS Test
  1 +name: check-macos
2 2 on:
3 3 push:
4   - branches:
5   - - macos
  4 + branches: [ "macos" ]
  5 + pull_request:
  6 + branches: [ "master" ]
  7 +
6 8 jobs:
7   - build:
8   - name: Build for macos
  9 + macos-build:
9 10 runs-on: macos-latest
10 11 steps:
11 12 - name: Checkout
... ... @@ -15,6 +16,7 @@ jobs:
15 16 brew update
16 17 brew install xz automake binutils coreutils curl gettext libtool openssl pkgconfig
17 18 find /usr/local/bin -lname '*/Library/Frameworks/Python.framework/*' -delete
  19 + find /usr/local/bin -lname '*/Library/Frameworks/Python.framework/*' -delete
18 20 rm -f /usr/local/bin/go || true
19 21 rm -f /usr/local/bin/gofmt || true
20 22 brew upgrade
... ...