@@ -264,7 +264,7 @@ jobs:
264
264
py -3 test\fuzz\test_runner.py --par %NUMBER_OF_PROCESSORS% --loglevel DEBUG %RUNNER_TEMP%\qa-assets\fuzz_corpora
265
265
266
266
windows-cross :
267
- name : ' Linux->Windows cross, unit tests, no gui tests, no functional tests'
267
+ name : ' Linux->Windows cross, no tests'
268
268
runs-on : ubuntu-latest
269
269
if : ${{ vars.SKIP_BRANCH_PUSH != 'true' || github.event_name == 'pull_request' }}
270
270
@@ -307,6 +307,66 @@ jobs:
307
307
path : ${{ env.CCACHE_DIR }}
308
308
key : ${{ github.job }}-ccache-${{ github.run_id }}
309
309
310
+ - name : Upload built executables
311
+ uses : actions/upload-artifact@v4
312
+ with :
313
+ name : x86_64-w64-mingw32-executables-${{ github.run_id }}
314
+ path : |
315
+ ${{ env.BASE_BUILD_DIR }}/src/**/*.exe
316
+ ${{ env.BASE_BUILD_DIR }}/test/config.ini
317
+
318
+ windows-native-test :
319
+ name : ' Windows, test cross-built'
320
+ runs-on : windows-2022
321
+ needs : windows-cross
322
+
323
+ env :
324
+ PYTHONUTF8 : 1
325
+ TEST_RUNNER_TIMEOUT_FACTOR : 40
326
+
327
+ steps :
328
+ - name : Checkout
329
+ uses : actions/checkout@v4
330
+
331
+ - name : Download built executables
332
+ uses : actions/download-artifact@v4
333
+ with :
334
+ name : x86_64-w64-mingw32-executables-${{ github.run_id }}
335
+
336
+ - name : Run bitcoind.exe
337
+ run : .\src\bitcoind.exe -version
338
+
339
+ - name : Run unit tests
340
+ run : |
341
+ .\src\test\test_bitcoin.exe -l test_suite && `
342
+ .\src\secp256k1\bin\exhaustive_tests.exe && `
343
+ .\src\secp256k1\bin\noverify_tests.exe && `
344
+ .\src\secp256k1\bin\tests.exe && `
345
+ .\src\univalue\object.exe && `
346
+ .\src\univalue\unitester.exe
347
+
348
+ - name : Run benchmarks
349
+ run : .\src\bench\bench_bitcoin.exe -sanity-check -priority-level=high
350
+
351
+ - name : Adjust paths in test\config.ini
352
+ run : |
353
+ (Get-Content "test\config.ini") -replace '(?<=^SRCDIR=).*', '${{ github.workspace }}' -replace '(?<=^BUILDDIR=).*', '${{ github.workspace }}' -replace '(?<=^RPCAUTH=).*', '${{ github.workspace }}\share\rpcauth\rpcauth.py' | Set-Content "test\config.ini"
354
+ Get-Content "test\config.ini"
355
+
356
+ - name : Run util tests
357
+ run : py -3 test\util\test_runner.py
358
+
359
+ - name : Run rpcauth test
360
+ run : py -3 test\util\rpcauth-test.py
361
+
362
+ - name : Run functional tests
363
+ env :
364
+ # TODO: Fix the excluded tests and re-enable them.
365
+ EXCLUDE : ' --exclude wallet_migration.py,wallet_multiwallet.py'
366
+ TEST_RUNNER_EXTRA : ${{ github.event_name != 'pull_request' && '--extended' || '' }}
367
+ shell : cmd
368
+ run : py -3 test\functional\test_runner.py --jobs %NUMBER_OF_PROCESSORS% --ci --quiet --tmpdirprefix=%RUNNER_TEMP% --combinedlogslen=99999999 --timeout-factor=%TEST_RUNNER_TIMEOUT_FACTOR% %EXCLUDE% %TEST_RUNNER_EXTRA%
369
+
310
370
asan-lsan-ubsan-integer-no-depends-usdt :
311
371
name : ' ASan + LSan + UBSan + integer, no depends, USDT'
312
372
runs-on : ubuntu-24.04 # has to match container in ci/test/00_setup_env_native_asan.sh for tracing tools
0 commit comments