Skip to content

Commit

Permalink
Merge pull request #2659 from DWesl/patch-2
Browse files Browse the repository at this point in the history
CI: Test --without-plugin-dir on Cygwin
  • Loading branch information
WardF authored May 23, 2023
2 parents bfb8a31 + dd75fa3 commit feaa6cd
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/run_tests_win_cygwin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ jobs:
shell: bash -eo pipefail -o igncr "{0}"

name: Cygwin-based Autotools tests

strategy:
matrix:
plugin_dir_option: ["", "--without-plugin-dir"]

steps:
- name: Fix line endings
Expand All @@ -41,9 +45,12 @@ jobs:
- name: (Autotools) Configure in-tree build
run: >-
/bin/dash ./configure --enable-hdf5 --enable-shared
--disable-static --enable-dap --disable-dap-remote-tests
--enable-plugins --enable-nczarr
/bin/dash ./configure --enable-hdf5 --enable-shared
--disable-static --enable-dap --disable-dap-remote-tests
--enable-plugins ${{ matrix.plugin_dir_option }}
--disable-nczarr --disable-nczarr-filters
--disable-nczarr-s3 --disable-nczarr-s3-tests
- name: Look at config.log if error
if: ${{ failure() }}
Expand Down

0 comments on commit feaa6cd

Please sign in to comment.