Skip to content

refocus-it-2.1 (2024oct18) #3

refocus-it-2.1 (2024oct18)

refocus-it-2.1 (2024oct18) #3

Workflow file for this run

name: CI
on: [push,pull_request]
jobs:
linux:
runs-on: ubuntu-latest
strategy:
matrix:
choiceL: [--disable-silent-rules, --enable-silent-rules]
steps:
- uses: actions/checkout@v4
- name: Create configure
run: |
sudo apt-get update -y
sudo apt-get install autoconf automake libtool gcc gimp libgimp2.0-dev
autoreconf -i
automake
- name: Choose configure
run: ./configure ${{ matrix.choiceL }}
- name: Make gimp-refocus-it-plugin
run: make
- name: Test make strip
run: make strip
- name: Test make install GIMP shared plugin
if: matrix.choiceL == '--disable-silent-rules'
run: |
sudo make install
sudo make uninstall
win:
runs-on: windows-latest
strategy:
matrix:
include: [
{msystem: MINGW32, toolchain: mingw-w64-i686, version: x32 },
{msystem: MINGW64, toolchain: mingw-w64-x86_64, version: x64 },
{msystem: UCRT64, toolchain: mingw-w64-ucrt-x86_64, version: x64 },
{msystem: CLANG64, toolchain: mingw-w64-clang-x86_64, version: x64 },
]
name: ${{ matrix.msystem }}
defaults:
run:
shell: msys2 {0}
steps:
- uses: actions/checkout@v4
- uses: msys2/setup-msys2@v2
with:
msystem: ${{ matrix.msystem }}
update: true
install: autotools base-devel git ${{ matrix.toolchain }}-toolchain ${{ matrix.toolchain }}-gimp
- name: Create configure
run: |
autoreconf -i
automake
- name: run ./configure
run: ./configure
- name: Make gimp-refocus-it-plugin
run: make