From 087658592e786a47b004b31e323aaa8e14a6939b Mon Sep 17 00:00:00 2001 From: Edward Hartnett Date: Fri, 31 Jul 2020 09:32:53 -0600 Subject: [PATCH] turning on fortran build for autotools --- .github/workflows/autotools.yml | 8 ++++---- .github/workflows/autotools_2.yml | 7 +------ 2 files changed, 5 insertions(+), 10 deletions(-) diff --git a/.github/workflows/autotools.yml b/.github/workflows/autotools.yml index 20802f1e253..3330d45f1bd 100644 --- a/.github/workflows/autotools.yml +++ b/.github/workflows/autotools.yml @@ -31,14 +31,14 @@ jobs: tar -xzvf pnetcdf-1.11.0.tar.gz ls -l pushd pnetcdf-1.11.0 - ./configure --prefix=/usr --enable-shared + ./configure --prefix=/usr --enable-shared --disable-cxx make sudo make install popd - name: autoreconf run: autoreconf -i - - name: configure + - name: configure --enable-fortran run: ./configure - - name: make distcheck - run: make distcheck + - name: make check + run: make -j check diff --git a/.github/workflows/autotools_2.yml b/.github/workflows/autotools_2.yml index 93049040942..df6e0e0f5cd 100644 --- a/.github/workflows/autotools_2.yml +++ b/.github/workflows/autotools_2.yml @@ -1,4 +1,4 @@ -name: autotools_2 +name: autotools_docs on: push: @@ -15,9 +15,6 @@ jobs: CC: mpicc FC: mpifort CPPFLAGS: "-I/usr/include -I/usr/local/include" -# CFLAGS: "-std=c99 -fsanitize=address -fno-omit-frame-pointer -Werror" -# FFLAGS: "-fsanitize=address -fno-omit-frame-pointer" -# FCFLAGS: "-fsanitize=address -fno-omit-frame-pointer -Werror" steps: - uses: actions/checkout@v2 @@ -40,8 +37,6 @@ jobs: run: autoreconf -i - name: configure run: | - doxygen --version ./configure --enable-docs --enable-fortran - cat config.log - name: make check run: make check