@@ -54,12 +54,6 @@ cat_logs_snippet: &CAT_LOGS
54
54
cat_ci_env_script :
55
55
- env
56
56
57
- merge_base_script_snippet : &MERGE_BASE
58
- merge_base_script :
59
- - if [ "$CIRRUS_PR" = "" ]; then exit 0; fi
60
- - git fetch --depth=1 $CIRRUS_REPO_CLONE_URL "pull/${CIRRUS_PR}/merge"
61
- - git checkout FETCH_HEAD # Use merged changes to detect silent merge conflicts
62
-
63
57
linux_container_snippet : &LINUX_CONTAINER
64
58
container :
65
59
dockerfile : ci/linux-debian.Dockerfile
93
87
CC : gcc
94
88
- env :
95
89
CC : clang
96
- << : *MERGE_BASE
97
90
test_script :
98
91
- ./ci/cirrus.sh
99
92
<< : *CAT_LOGS
@@ -111,7 +104,6 @@ task:
111
104
CC : i686-linux-gnu-gcc
112
105
- env :
113
106
CC : clang --target=i686-pc-linux-gnu -isystem /usr/i686-linux-gnu/include
114
- << : *MERGE_BASE
115
107
test_script :
116
108
- ./ci/cirrus.sh
117
109
<< : *CAT_LOGS
@@ -138,7 +130,6 @@ task:
138
130
CC : clang
139
131
brew_script :
140
132
- brew install automake libtool gcc
141
- << : *MERGE_BASE
142
133
test_script :
143
134
- ./ci/cirrus.sh
144
135
<< : *CAT_LOGS
@@ -157,7 +148,6 @@ task:
157
148
SCHNORRSIG : yes
158
149
ELLSWIFT : yes
159
150
CTIMETESTS : no
160
- << : *MERGE_BASE
161
151
test_script :
162
152
# https://sourceware.org/bugzilla/show_bug.cgi?id=27008
163
153
- rm /etc/ld.so.cache
@@ -180,7 +170,6 @@ task:
180
170
matrix :
181
171
- env : {}
182
172
- env : {EXPERIMENTAL: yes, ASM: arm32}
183
- << : *MERGE_BASE
184
173
test_script :
185
174
- ./ci/cirrus.sh
186
175
<< : *CAT_LOGS
@@ -198,7 +187,6 @@ task:
198
187
SCHNORRSIG : yes
199
188
ELLSWIFT : yes
200
189
CTIMETESTS : no
201
- << : *MERGE_BASE
202
190
test_script :
203
191
- ./ci/cirrus.sh
204
192
<< : *CAT_LOGS
@@ -216,7 +204,6 @@ task:
216
204
SCHNORRSIG : yes
217
205
ELLSWIFT : yes
218
206
CTIMETESTS : no
219
- << : *MERGE_BASE
220
207
test_script :
221
208
- ./ci/cirrus.sh
222
209
<< : *CAT_LOGS
@@ -237,7 +224,6 @@ task:
237
224
- name : " i686 (mingw32-w64): Windows (Debian stable, Wine)"
238
225
env :
239
226
HOST : i686-w64-mingw32
240
- << : *MERGE_BASE
241
227
test_script :
242
228
- ./ci/cirrus.sh
243
229
<< : *CAT_LOGS
@@ -280,7 +266,6 @@ task:
280
266
CC : /opt/msvc/bin/x86/cl
281
267
AR : /opt/msvc/bin/x86/lib
282
268
NM : /opt/msvc/bin/x86/dumpbin -symbols -headers
283
- << : *MERGE_BASE
284
269
test_script :
285
270
- ./ci/cirrus.sh
286
271
<< : *CAT_LOGS
@@ -325,7 +310,6 @@ task:
325
310
- env :
326
311
HOST : i686-linux-gnu
327
312
CC : i686-linux-gnu-gcc
328
- << : *MERGE_BASE
329
313
test_script :
330
314
- ./ci/cirrus.sh
331
315
<< : *CAT_LOGS
@@ -352,7 +336,6 @@ task:
352
336
ECMULTGENPRECISION : 2
353
337
ECMULTWINDOW : 2
354
338
CFLAGS : " -fsanitize=memory -g -O3"
355
- << : *MERGE_BASE
356
339
test_script :
357
340
- ./ci/cirrus.sh
358
341
<< : *CAT_LOGS
@@ -369,7 +352,6 @@ task:
369
352
RECOVERY : yes
370
353
SCHNORRSIG : yes
371
354
ELLSWIFT : yes
372
- << : *MERGE_BASE
373
355
test_script :
374
356
- ./ci/cirrus.sh
375
357
<< : *CAT_LOGS
@@ -401,8 +383,6 @@ task:
401
383
# Ignore MSBuild warning MSB8029.
402
384
# See: https://learn.microsoft.com/en-us/visualstudio/msbuild/errors/msb8029?view=vs-2022
403
385
IgnoreWarnIntDirInTempDetected : ' true'
404
- merge_script :
405
- - PowerShell -NoLogo -Command if ($env:CIRRUS_PR -ne $null) { git fetch $env:CIRRUS_REPO_CLONE_URL pull/$env:CIRRUS_PR/merge; git reset --hard FETCH_HEAD; }
406
386
configure_script :
407
387
- ' %x64_NATIVE_TOOLS%'
408
388
- cmake -E env CFLAGS="/WX" cmake -G "Visual Studio 17 2022" -A x64 -S . -B build -DSECP256K1_ENABLE_MODULE_RECOVERY=ON -DSECP256K1_BUILD_EXAMPLES=ON
0 commit comments