Skip to content

Commit 2283943

Browse files
ci: Make compiler warning into errors on CI
This also tidies the list of environment variables in .cirrus.yml.
1 parent 1b6bef4 commit 2283943

File tree

1 file changed

+15
-9
lines changed

1 file changed

+15
-9
lines changed

.cirrus.yml

+15-9
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,27 @@
11
env:
2-
WIDEMUL: auto
2+
### compiler options
3+
HOST:
4+
# Specific warnings can be disabled with -Wno-error=foo.
5+
# -pedantic-errors is not equivalent to -Werror=pedantic and thus not implied by -Werror according to the GCC manual.
6+
WERROR_CFLAGS: -Werror -pedantic-errors
7+
MAKEFLAGS: -j2
8+
EXTRAFLAGS:
9+
BUILD: check
10+
### secp256k1 config
311
STATICPRECOMPUTATION: yes
412
ECMULTGENPRECISION: auto
513
ASM: no
6-
BUILD: check
14+
WIDEMUL: auto
715
WITH_VALGRIND: yes
816
RUN_VALGRIND: no
9-
EXTRAFLAGS:
10-
HOST:
11-
ECDH: no
12-
RECOVERY: no
13-
SCHNORRSIG: no
14-
EXPERIMENTAL: no
1517
CTIMETEST: yes
1618
BENCH: yes
1719
ITERS: 2
18-
MAKEFLAGS: -j2
20+
### secp256k1 modules
21+
EXPERIMENTAL: no
22+
ECDH: no
23+
RECOVERY: no
24+
SCHNORRSIG: no
1925

2026
cat_logs_snippet: &CAT_LOGS
2127
always:

0 commit comments

Comments
 (0)