Skip to content

Commit

Permalink
fixed warning, turned of -Werror for fortran to try and get github wo…
Browse files Browse the repository at this point in the history
…rkflow building
  • Loading branch information
edwardhartnett committed Aug 20, 2020
1 parent 32640e6 commit c76f148
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/strict_autotools.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@ jobs:
- name: configure
run: |
set -x
export CFLAGS="-std=c99 -fsanitize=address -fno-omit-frame-pointer -Werror -Wall"
export FFLAGS="-fsanitize=address -fno-omit-frame-pointer -Werror -Wall"
export FCFLAGS="-fsanitize=address -fno-omit-frame-pointer -Werror -Wall"
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: |
Expand Down

0 comments on commit c76f148

Please sign in to comment.