diff --git a/.github/workflows/run_tests_win_mingw.yml b/.github/workflows/run_tests_win_mingw.yml index 636cbfdad..0f4c0bce7 100644 --- a/.github/workflows/run_tests_win_mingw.yml +++ b/.github/workflows/run_tests_win_mingw.yml @@ -11,7 +11,7 @@ on: [ push ] jobs: - install-deps-mingw64: + build-and-test: runs-on: windows-latest defaults: @@ -30,29 +30,29 @@ jobs: # Configure and build ### - - name: Run autoconf + - name: (Autotools) Run autoconf run: autoreconf -if - - name: Configure - run: LDFLAGS="-no-undefined -Wl,--export-all-symbols" ./configure --enable-hdf5 --enable-dap --disable-dap-remote-tests --disable-static --disable-plugins --disable-byterange --disable-dap-remote-tests --disable-logging + - 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() }} - - name: Look at config.log if error + - name: (Autotools) Look at config.log if error run: cat config.log if: ${{ failure() }} - - name: Print Summary + - name: (Autotools) Print Summary run: cat libnetcdf.settings - - name: Build Library and Utilities + - name: (Autotools) Build Library and Utilities run: make -j LDFLAGS="-no-undefined -Wl,--export-all-symbols" if: ${{ success() }} - - name: Build Tests + - name: (Autotools) Build Tests run: make check TESTS="" -j if: ${{ success() }} - - name: Run Tests + - name: (Autotools) Run Tests run: make check -j if: ${{ success() }}