fixes #64
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 gettext libfftw3-dev libgimp2.0-dev libgsl-dev texlive-latex-base texlive-fonts-recommended | |
autoreconf -i | |
automake --add-missing | |
- name: Choose configure | |
run: ./configure ${{ matrix.choiceL }} | |
- name: Make gimp-plugin-astronomy | |
run: make | |
- name: Test make strip | |
if: matrix.choiceL == '--disable-silent-rules' | |
run: make strip | |
- name: Test make distcheck | |
if: matrix.choiceL == '--disable-silent-rules' | |
run: make distcheck | |
- name: test install | |
run: sudo make install | |
- name: test uninstall | |
run: sudo make install | |
macos: | |
runs-on: macos-latest | |
strategy: | |
matrix: | |
choiceM: [--disable-silent-rules, --enable-silent-rules] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Create configure | |
run: | | |
brew install autoconf automake libtool gcc gettext libgsl-dev libgimp2.0-dev libfftw3-dev | |
autoreconf -iv | |
automake --add-missing | |
- name: Choose configure | |
run: ./configure ${{ matrix.choiceM }} | |
- name: Make dimp-plugin-astronomy | |
run: make | |
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 ${{ matrix.toolchain }}-fftw ${{ matrix.toolchain }}-gsl | |
- name: Create configure | |
run: | | |
autoreconf -i | |
automake | |
- name: run ./configure | |
run: ./configure | |
- name: Make gimp-plugin-astronomy | |
run: make | |
- name: test install | |
run: make install | |
- name: test uninstall | |
run: make uninstall |