ci: add daily rpm/deb installation test #117
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: cyg auto | |
on: | |
push: | |
branches: [ develop ] | |
jobs: | |
test: | |
name: "cyg auto" | |
runs-on: windows-latest | |
steps: | |
- name: Set git to use LF | |
run: | | |
git config --global core.autocrlf input | |
- uses: actions/checkout@v4 | |
- name: Install Cygwin | |
uses: cygwin/cygwin-install-action@master | |
with: | |
packages: automake make gcc-fortran libjpeg-devel libtool zlib-devel | |
- name: Test HDF5 | |
run: | | |
export PATH=/usr/bin:$PATH | |
./autogen.sh | |
./configure | |
make | |
make check | |
make install | |
make uninstall | |
shell: C:\cygwin\bin\bash.exe -eo pipefail -o igncr '{0}' |