Skip to content

Commit

Permalink
ci: Make compiler warning into errors on CI
Browse files Browse the repository at this point in the history
This also tidies the list of environment variables in .cirrus.yml.
  • Loading branch information
real-or-random committed May 13, 2021
1 parent 1b6bef4 commit 8d8cd48
Showing 1 changed file with 15 additions and 9 deletions.
24 changes: 15 additions & 9 deletions .cirrus.yml
Original file line number Diff line number Diff line change
@@ -1,21 +1,27 @@
env:
WIDEMUL: auto
### compiler options
HOST:
# Specific warnings can be disabled with -Wno-error=foo.
# -pedantic-errors is not equivalent to -Werror=pedantic and thus not implied by -Werror according to the GCC manual.
WERROR_CFLAGS: -Werror -pedantic-errors
MAKEFLAGS: -j2
EXTRAFLAGS:
BUILD: check
### secp256k1 config
STATICPRECOMPUTATION: yes
ECMULTGENPRECISION: auto
ASM: no
BUILD: check
WIDEMUL: auto
WITH_VALGRIND: yes
RUN_VALGRIND: no
EXTRAFLAGS:
HOST:
ECDH: no
RECOVERY: no
SCHNORRSIG: no
EXPERIMENTAL: no
CTIMETEST: yes
BENCH: yes
ITERS: 2
MAKEFLAGS: -j2
### secp256k1 modules
EXPERIMENTAL: no
ECDH: no
RECOVERY: no
SCHNORRSIG: no

cat_logs_snippet: &CAT_LOGS
always:
Expand Down

0 comments on commit 8d8cd48

Please sign in to comment.