Skip to content

Commit

Permalink
Install imagemagick on macOS runner
Browse files Browse the repository at this point in the history
so that it doesn't fail even when the binary version of the pkg is not available and it has to install from source
  • Loading branch information
Bisaloo committed Nov 12, 2020
1 parent c631a15 commit 7b15f1c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/R-CMD-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,9 @@ jobs:
- name: Install system dependencies (macOS)
if: runner.os == 'macOS'
run: brew cask install xquartz
run: |
brew cask install xquartz
brew install imagemagick@6
- name: Install dependencies
run: |
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/pkgdown.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ jobs:

- name: Install system dependencies (macOS)
if: runner.os == 'macOS'
run: brew cask install xquartz
run: |
brew cask install xquartz
brew install imagemagick@6
- name: Query dependencies
run: |
Expand Down

0 comments on commit 7b15f1c

Please # to comment.