From 41b62fb6fa5b7473e954398e052fb26f253c19e6 Mon Sep 17 00:00:00 2001 From: Edward Hartnett Date: Thu, 20 Aug 2020 06:14:21 -0600 Subject: [PATCH] fixed warning, turned of -Werror for fortran to try and get github workflow building --- .github/workflows/strict_autotools.yml | 16 +++++----------- 1 file changed, 5 insertions(+), 11 deletions(-) diff --git a/.github/workflows/strict_autotools.yml b/.github/workflows/strict_autotools.yml index 090852f7779..2d581aefd4d 100644 --- a/.github/workflows/strict_autotools.yml +++ b/.github/workflows/strict_autotools.yml @@ -44,19 +44,13 @@ jobs: - name: autoreconf run: autoreconf -i - - name: configure + - name: build run: | set -x - export CFLAGS="-std=c99 -fsanitize=address -fno-omit-frame-pointer -Wall" - export FFLAGS="-fsanitize=address -fno-omit-frame-pointer -Wall" - export FCFLAGS="-fsanitize=address -fno-omit-frame-pointer -Wall" - ./configure - - name: make -j distcheck - run: | - set -x - export CFLAGS="-std=c99 -fsanitize=address -fno-omit-frame-pointer -Wall" - export FFLAGS="-fsanitize=address -fno-omit-frame-pointer -Wall" - export FCFLAGS="-fsanitize=address -fno-omit-frame-pointer -Wall" + export CFLAGS="-std=c99 -Wall" + export FFLAGS="-Wall" + export FCFLAGS="-Wall" export DISTCHECK_CONFIGURE_FLAGS="--enable-fortran" + ./configure make -j distcheck