Skip to content

Commit eb671ed

Browse files
jonasnicksiv2r
authored andcommitted
ci: add batch module
1 parent 677c04b commit eb671ed

File tree

2 files changed

+14
-4
lines changed

2 files changed

+14
-4
lines changed

.cirrus.yml

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ env:
1818
ECDH: no
1919
RECOVERY: no
2020
SCHNORRSIG: no
21+
BATCH: no
2122
### test options
2223
SECP256K1_TEST_ITERS:
2324
BENCH: yes
@@ -67,12 +68,12 @@ task:
6768
<< : *LINUX_CONTAINER
6869
matrix: &ENV_MATRIX
6970
- env: {WIDEMUL: int64, RECOVERY: yes}
70-
- env: {WIDEMUL: int64, ECDH: yes, SCHNORRSIG: yes}
71+
- env: {WIDEMUL: int64, ECDH: yes, SCHNORRSIG: yes, BATCH: yes}
7172
- env: {WIDEMUL: int128}
72-
- env: {WIDEMUL: int128, RECOVERY: yes, SCHNORRSIG: yes}
73-
- env: {WIDEMUL: int128, ECDH: yes, SCHNORRSIG: yes}
73+
- env: {WIDEMUL: int128, RECOVERY: yes, SCHNORRSIG: yes, BATCH: yes}
74+
- env: {WIDEMUL: int128, ECDH: yes, SCHNORRSIG: yes, BATCH: yes}
7475
- env: {WIDEMUL: int128, ASM: x86_64}
75-
- env: { RECOVERY: yes, SCHNORRSIG: yes}
76+
- env: { RECOVERY: yes, SCHNORRSIG: yes, BATCH: yes}
7677
- env: {BUILD: distcheck, WITH_VALGRIND: no, CTIMETEST: no, BENCH: no}
7778
- env: {CPPFLAGS: -DDETERMINISTIC}
7879
- env: {CFLAGS: -O0, CTIMETEST: no}
@@ -96,6 +97,7 @@ task:
9697
ECDH: yes
9798
RECOVERY: yes
9899
SCHNORRSIG: yes
100+
BATCH: yes
99101
matrix:
100102
- env:
101103
CC: i686-linux-gnu-gcc
@@ -178,6 +180,7 @@ task:
178180
ECDH: yes
179181
RECOVERY: yes
180182
SCHNORRSIG: yes
183+
BATCH: yes
181184
CTIMETEST: no
182185
<< : *MERGE_BASE
183186
test_script:
@@ -197,6 +200,7 @@ task:
197200
ECDH: yes
198201
RECOVERY: yes
199202
SCHNORRSIG: yes
203+
BATCH: yes
200204
CTIMETEST: no
201205
matrix:
202206
- env: {}
@@ -217,6 +221,7 @@ task:
217221
ECDH: yes
218222
RECOVERY: yes
219223
SCHNORRSIG: yes
224+
BATCH: yes
220225
CTIMETEST: no
221226
<< : *MERGE_BASE
222227
test_script:
@@ -234,6 +239,7 @@ task:
234239
ECDH: yes
235240
RECOVERY: yes
236241
SCHNORRSIG: yes
242+
BATCH: yes
237243
CTIMETEST: no
238244
<< : *MERGE_BASE
239245
test_script:
@@ -251,6 +257,7 @@ task:
251257
ECDH: yes
252258
RECOVERY: yes
253259
SCHNORRSIG: yes
260+
BATCH: yes
254261
CTIMETEST: no
255262
<< : *MERGE_BASE
256263
test_script:
@@ -264,6 +271,7 @@ task:
264271
ECDH: yes
265272
RECOVERY: yes
266273
SCHNORRSIG: yes
274+
BATCH: yes
267275
CTIMETEST: no
268276
matrix:
269277
- name: "Valgrind (memcheck)"
@@ -313,6 +321,7 @@ task:
313321
ECDH: yes
314322
RECOVERY: yes
315323
SCHNORRSIG: yes
324+
BATCH: yes
316325
<< : *MERGE_BASE
317326
test_script:
318327
- ./ci/cirrus.sh

ci/cirrus.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ valgrind --version || true
1919
--with-ecmult-gen-precision="$ECMULTGENPRECISION" \
2020
--enable-module-ecdh="$ECDH" --enable-module-recovery="$RECOVERY" \
2121
--enable-module-schnorrsig="$SCHNORRSIG" \
22+
--enable-module-batch="$BATCH" \
2223
--enable-examples="$EXAMPLES" \
2324
--with-valgrind="$WITH_VALGRIND" \
2425
--host="$HOST" $EXTRAFLAGS

0 commit comments

Comments
 (0)