netcdf-c/.github/workflows/run_tests_win_mingw.yml

91 lines
2.2 KiB
YAML
Raw Normal View History

###
# Build hdf4, hdf5 dependencies and cache them in a combined directory.
# See https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners
# for information related to github runners.
###
name: Run MSYS2, MinGW64-based Tests
on: [ push ]
jobs:
2022-01-25 04:18:05 +08:00
build-and-test:
runs-on: windows-latest
defaults:
run:
shell: msys2 {0}
steps:
- uses: actions/checkout@v2
- uses: msys2/setup-msys2@v2
with:
msystem: MINGW64
update: true
install: git mingw-w64-x86_64-toolchain automake libtool autoconf make cmake mingw-w64-x86_64-hdf5 unzip
###
# Configure and build
###
2022-01-25 04:18:05 +08:00
- name: (Autotools) Run autoconf
run: autoreconf -if
2022-01-25 04:18:05 +08:00
- name: (Autotools) Configure Build
run: ./configure --enable-hdf5 --enable-dap --disable-dap-remote-tests --disable-static --disable-plugins --disable-byterange --disable-dap-remote-tests --disable-logging
if: ${{ success() }}
2022-01-25 04:18:05 +08:00
- name: (Autotools) Look at config.log if error
run: cat config.log
if: ${{ failure() }}
2022-01-25 04:18:05 +08:00
- name: (Autotools) Print Summary
run: cat libnetcdf.settings
2022-01-25 04:18:05 +08:00
- name: (Autotools) Build Library and Utilities
2022-01-25 03:20:04 +08:00
run: make -j LDFLAGS="-no-undefined -Wl,--export-all-symbols"
if: ${{ success() }}
- name: (Autotools) Build and Run Tests
2022-01-25 02:38:21 +08:00
run: make check -j
if: ${{ success() }}
#####
# One-Off CMake-based tests.
#####
###
# Configure and build
###
- name: Perform out-of-directory build
shell: bash -l {0}
run: |
mkdir build
cd build
2022-01-25 02:38:21 +08:00
cmake .. -DENABLE_DAP=TRUE -DENABLE_HDF5=TRUE -DENABLE_NCZARR=TRUE -D ENABLE_DAP_LONG_TESTS=TRUE
- name: Print Summary
run: |
cd build
cat libnetcdf.settings
- name: Build All
run: |
cd build
2022-01-25 02:38:21 +08:00
make -j 12
if: ${{ success() }}
- name: Run Tests
run: |
cd build
2022-01-25 02:38:21 +08:00
ctest --output-on-failure -j 12 .
if: ${{ success() }}
- name: Verbose Output if CTest Failure
run: |
cd build
2022-01-25 02:38:21 +08:00
ctest -j 12 --rerun-failed --output-on-failure -VV
if: ${{ failure() }}