Skip to content

Commit

Permalink
Make warnings into errors for automated tests
Browse files Browse the repository at this point in the history
  • Loading branch information
pd3 committed Feb 25, 2021
1 parent 8c37921 commit 71d744f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ build_script:
- set MSYSTEM=MINGW64
- set PATH=C:/msys64/usr/bin;C:/msys64/mingw64/bin;%PATH%
- "sh -lc \"(cd htslib; autoreconf -i)\""
- "sh -lc \"autoreconf -i && ./configure && make -j2\""
- "sh -lc \"autoreconf -i && ./configure --enable-werror && make -j2\""

test_script:
- set HOME=.
Expand Down
2 changes: 1 addition & 1 deletion .cirrus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ compile_template: &COMPILE
if test "$USE_CONFIG" = "yes"; then
(cd $HTSDIR && autoreconf -i)
autoreconf -i
./configure || (cat config.log; /bin/false)
./configure --enable-werror || (cat config.log; /bin/false)
make -j3
else
make -j3 plugindir=$CIRRUS_WORKING_DIR/plugins -e
Expand Down

0 comments on commit 71d744f

Please sign in to comment.