Skip to content

Commit

Permalink
Do we really need this?
Browse files Browse the repository at this point in the history
Signed-off-by: Peter Lemenkov <[email protected]>
  • Loading branch information
lemenkov committed Feb 21, 2024
1 parent 6a6546e commit e0bbae3
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/macosx_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ on:
# Triggers the workflow on push or pull request events but only for the main branch
push:
branches: [master]
pull_request:
branches:
- '*'

env:
# Allows you to run this workflow manually from the Actions tab
Expand All @@ -23,9 +26,12 @@ jobs:
- name: build and run tests packages with all featured readers
run: |
brew update
perl -MCPAN -e "install XML::Parser"
perl -e "require XML::Parser"
for pkg in graphicsmagick pstoedit libpng exiv2 libtiff libjpeg libxml2 bzip2 freetype gettext intltool glib libtool autoconf automake pkg-config; do brew install $pkg || brew upgrade $pkg; done
# Required for intltool
#perl -MCPAN -e "install XML::Parser"
#perl -e "require XML::Parser"
brew install perl-xml-parser
#brew install libxml2 bzip2 freetype
for pkg in graphicsmagick pstoedit libpng exiv2 libtiff libjpeg gettext intltool glib libtool autoconf automake pkg-config; do brew install $pkg || brew upgrade $pkg; done
./autogen.sh
./configure
make
Expand Down

0 comments on commit e0bbae3

Please sign in to comment.