Skip to content

Commit

Permalink
trying to get env vars working
Browse files Browse the repository at this point in the history
  • Loading branch information
edwardhartnett committed Jul 29, 2020
1 parent f501ad2 commit 353031d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/strict_autotools.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ jobs:
- name: autoreconf
run: autoreconf -i
- name: configure
run: ./configure
env:
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"
run: |
export CFLAGS="-std=c99 -fsanitize=address -fno-omit-frame-pointer -Werror"
export FFLAGS="-fsanitize=address -fno-omit-frame-pointer"
export FCFLAGS="-fsanitize=address -fno-omit-frame-pointer -Werror"
./configure
- name: make -j distcheck
run: make -j distcheck

0 comments on commit 353031d

Please sign in to comment.