From 2f103420f69d469165affe5c5c841d511a85485b Mon Sep 17 00:00:00 2001 From: DWesl <22566757+DWesl@users.noreply.github.com> Date: Mon, 13 Mar 2023 16:28:35 -0400 Subject: [PATCH] CI: Test --without-plugin-dir on Cygwin This caused problems a bit ago. This will likely take a bit of iteration. --- .github/workflows/run_tests_win_cygwin.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/run_tests_win_cygwin.yml b/.github/workflows/run_tests_win_cygwin.yml index bfd642f504..937811ac02 100644 --- a/.github/workflows/run_tests_win_cygwin.yml +++ b/.github/workflows/run_tests_win_cygwin.yml @@ -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 @@ -42,8 +46,9 @@ jobs: run: >- /bin/dash ./configure --enable-hdf5 --enable-shared --disable-static --enable-dap --disable-dap-remote-tests - --enable-plugins --disable-nczarr-filters - --disable-nczarr-s3 --disable-nczarr-s3-tests --disable-nczarr + --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() }}