Skip to content

Commit 9d63f7f

Browse files
committed
Add workflow build for macos-latest
1 parent d18c153 commit 9d63f7f

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

.github/workflows/main.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,3 +76,33 @@ jobs:
7676
run: gimptool-2.0 --install fix-ca.c
7777
- name: Uninstall local gimp-fix-ca
7878
run: gimptool-2.0 --uninstall-bin fix-ca
79+
macos:
80+
runs-on: macos-latest
81+
steps:
82+
- uses: actions/checkout@v4
83+
- uses: melusina-org/setup-macports@v1
84+
id: 'macports'
85+
- name: sudo port gcc and gimp2
86+
run: sudo port gimp2 gcc gimp2-devel
87+
- name: Make local gimp-fix-ca install
88+
run: gimptool-2.0 --install fix-ca.c
89+
- name: Uninstall local gimp-fix-ca
90+
run: gimptool-2.0 --uninstall-bin fix-ca
91+
brew:
92+
runs-on: macos-latest
93+
steps:
94+
- uses: actions/checkout@v4
95+
- name: brew install gimp-dev
96+
run: |
97+
brew install autoconf automake libtool gcc
98+
brew install gimp-dev
99+
brew install --cask gimp
100+
autoreconf -i
101+
automake
102+
./configure
103+
- name: look for gimptool
104+
run: which gimptool-2.0
105+
- name: Make local gimp-fix-ca install
106+
run: gimptool-2.0 --install fix-ca.c
107+
- name: Uninstall local gimp-fix-ca
108+
run: gimptool-2.0 --uninstall-bin fix-ca

0 commit comments

Comments
 (0)