File tree Expand file tree Collapse file tree 1 file changed +50
-0
lines changed Expand file tree Collapse file tree 1 file changed +50
-0
lines changed Original file line number Diff line number Diff line change 1+ env :
2+ # ## cirrus config
3+ CIRRUS_CLONE_DEPTH : 1
4+ # ## compiler options
5+ HOST :
6+ WRAPPER_CMD :
7+ # Specific warnings can be disabled with -Wno-error=foo.
8+ # -pedantic-errors is not equivalent to -Werror=pedantic and thus not implied by -Werror according to the GCC manual.
9+ WERROR_CFLAGS : -Werror -pedantic-errors
10+ MAKEFLAGS : -j4
11+ BUILD : check
12+ # ## secp256k1 config
13+ ECMULTWINDOW : auto
14+ ECMULTGENPRECISION : auto
15+ ASM : no
16+ WIDEMUL : auto
17+ WITH_VALGRIND : yes
18+ EXTRAFLAGS :
19+ # ## secp256k1 modules
20+ EXPERIMENTAL : no
21+ ECDH : no
22+ RECOVERY : no
23+ SCHNORRSIG : no
24+ ELLSWIFT : no
25+ # ## test options
26+ SECP256K1_TEST_ITERS :
27+ BENCH : yes
28+ SECP256K1_BENCH_ITERS : 2
29+ CTIMETESTS : yes
30+ # Compile and run the tests
31+ EXAMPLES : yes
32+
33+ cat_logs_snippet : &CAT_LOGS
34+ always :
35+ cat_tests_log_script :
36+ - cat tests.log || true
37+ cat_noverify_tests_log_script :
38+ - cat noverify_tests.log || true
39+ cat_exhaustive_tests_log_script :
40+ - cat exhaustive_tests.log || true
41+ cat_ctime_tests_log_script :
42+ - cat ctime_tests.log || true
43+ cat_bench_log_script :
44+ - cat bench.log || true
45+ cat_config_log_script :
46+ - cat config.log || true
47+ cat_test_env_script :
48+ - cat test_env.log || true
49+ cat_ci_env_script :
50+ - env
You can’t perform that action at this time.
0 commit comments