Remove stray text.

This commit is contained in:
Ward Fisher 2022-01-24 13:18:05 -07:00
parent 84070ad177
commit 3898d4f80a

View File

@ -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() }}