Skip to content

Commit

Permalink
Merge pull request #300 from libcheck/actions
Browse files Browse the repository at this point in the history
Fix brew install folder permissions for osx tests
brarcher authored Aug 9, 2020
2 parents 4ed1ae1 + 69425fe commit 101de42
Showing 1 changed file with 22 additions and 4 deletions.
26 changes: 22 additions & 4 deletions .github/workflows/osx.yml
Original file line number Diff line number Diff line change
@@ -11,10 +11,13 @@ jobs:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
# Brew may not have permission to install its packages
- name: change brew install folder permissions
run: sudo chmod -R a+rwx /usr/local/share/ || mkdir -p /usr/local/share/ -m a+rwx
- name: install maxtex
run: brew cask install mactex
- name: install doc programs
run: brew install texi2html texinfo doxygen
run: brew install texi2html doxygen
- name: install automake
run: brew install automake
- name: install pkg-config
@@ -34,10 +37,13 @@ jobs:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
# Brew may not have permission to install its packages
- name: change brew install folder permissions
run: sudo chmod -R a+rwx /usr/local/share/ || mkdir -p /usr/local/share/ -m a+rwx
- name: install maxtex
run: brew cask install mactex
- name: install doc programs
run: brew install texi2html texinfo doxygen
run: brew install texi2html doxygen
- name: install automake
run: brew install automake
- name: install pkg-config
@@ -57,6 +63,9 @@ jobs:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
# Brew may not have permission to install its packages
- name: change brew install folder permissions
run: sudo chmod -R a+rwx /usr/local/share/ || mkdir -p /usr/local/share/ -m a+rwx
- name: install automake
run: brew install automake
- name: install pkg-config
@@ -74,6 +83,9 @@ jobs:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
# Brew may not have permission to install its packages
- name: change brew install folder permissions
run: sudo chmod -R a+rwx /usr/local/share/ || mkdir -p /usr/local/share/ -m a+rwx
- name: install automake
run: brew install automake
- name: install pkg-config
@@ -91,10 +103,13 @@ jobs:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
# Brew may not have permission to install its packages
- name: change brew install folder permissions
run: sudo chmod -R a+rwx /usr/local/share/ || mkdir -p /usr/local/share/ -m a+rwx
- name: install maxtex
run: brew cask install mactex
- name: install doc programs
run: brew install texi2html texinfo doxygen
run: brew install texi2html doxygen
- name: install automake
run: brew install automake
- name: install pkg-config
@@ -112,10 +127,13 @@ jobs:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
# Brew may not have permission to install its packages
- name: change brew install folder permissions
run: sudo chmod -R a+rwx /usr/local/share/ || mkdir -p /usr/local/share/ -m a+rwx
- name: install maxtex
run: brew cask install mactex
- name: install doc programs
run: brew install texi2html texinfo doxygen
run: brew install texi2html doxygen
- name: install automake
run: brew install automake
- name: install pkg-config

0 comments on commit 101de42

Please sign in to comment.