Skip to content

Commit

Permalink
Add workflow build for macos-latest
Browse files Browse the repository at this point in the history
  • Loading branch information
JoesCat committed Mar 21, 2024
1 parent d18c153 commit 9d63f7f
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,3 +76,33 @@ jobs:
run: gimptool-2.0 --install fix-ca.c
- name: Uninstall local gimp-fix-ca
run: gimptool-2.0 --uninstall-bin fix-ca
macos:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- uses: melusina-org/setup-macports@v1
id: 'macports'
- name: sudo port gcc and gimp2
run: sudo port gimp2 gcc gimp2-devel
- name: Make local gimp-fix-ca install
run: gimptool-2.0 --install fix-ca.c
- name: Uninstall local gimp-fix-ca
run: gimptool-2.0 --uninstall-bin fix-ca
brew:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: brew install gimp-dev
run: |
brew install autoconf automake libtool gcc
brew install gimp-dev
brew install --cask gimp
autoreconf -i
automake
./configure
- name: look for gimptool
run: which gimptool-2.0
- name: Make local gimp-fix-ca install
run: gimptool-2.0 --install fix-ca.c
- name: Uninstall local gimp-fix-ca
run: gimptool-2.0 --uninstall-bin fix-ca

0 comments on commit 9d63f7f

Please sign in to comment.