Skip to content

Commit 515c64c

Browse files
committed
ci: Test cross-built Windows executables on Windows natively
1 parent 5dfa6d5 commit 515c64c

File tree

4 files changed

+63
-30
lines changed

4 files changed

+63
-30
lines changed

.github/workflows/ci.yml

+61-1
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ jobs:
264264
py -3 test\fuzz\test_runner.py --par %NUMBER_OF_PROCESSORS% --loglevel DEBUG %RUNNER_TEMP%\qa-assets\fuzz_corpora
265265
266266
windows-cross:
267-
name: 'Linux->Windows cross, unit tests, no gui tests, no functional tests'
267+
name: 'Linux->Windows cross, no tests'
268268
runs-on: ubuntu-latest
269269
if: ${{ vars.SKIP_BRANCH_PUSH != 'true' || github.event_name == 'pull_request' }}
270270

@@ -307,6 +307,66 @@ jobs:
307307
path: ${{ env.CCACHE_DIR }}
308308
key: ${{ github.job }}-ccache-${{ github.run_id }}
309309

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+
310370
asan-lsan-ubsan-integer-no-depends-usdt:
311371
name: 'ASan + LSan + UBSan + integer, no depends, USDT'
312372
runs-on: ubuntu-24.04 # has to match container in ci/test/00_setup_env_native_asan.sh for tracing tools

ci/test/00_setup_env_win64.sh

+2-5
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,8 @@ export CONTAINER_NAME=ci_win64
1010
export CI_IMAGE_NAME_TAG="mirror.gcr.io/ubuntu:noble" # Check that g++-mingw-w64-x86-64-posix (version 13.2, similar to guix) can cross-compile
1111
export CI_IMAGE_PLATFORM="linux/amd64"
1212
export HOST=x86_64-w64-mingw32
13-
export DPKG_ADD_ARCH="i386"
14-
export PACKAGES="nsis g++-mingw-w64-x86-64-posix wine-binfmt wine64 wine32 file"
15-
# Install wine, but do not run unit tests, as they surface frequent
16-
# false-positives.
17-
export RUN_UNIT_TESTS=${RUN_UNIT_TESTS:-false}
13+
export PACKAGES="g++-mingw-w64-x86-64-posix nsis"
14+
export RUN_UNIT_TESTS=false
1815
export RUN_FUNCTIONAL_TESTS=false
1916
export GOAL="deploy"
2017
export BITCOIN_CONFIG="-DREDUCE_EXPORTS=ON -DBUILD_GUI_TESTS=OFF \

ci/test/03_test_script.sh

-4
Original file line numberDiff line numberDiff line change
@@ -132,10 +132,6 @@ bash -c "${PRINT_CCACHE_STATISTICS}"
132132
du -sh "${DEPENDS_DIR}"/*/
133133
du -sh "${PREVIOUS_RELEASES_DIR}"
134134

135-
if [[ $HOST = *-mingw32 ]]; then
136-
"${BASE_ROOT_DIR}/ci/test/wrap-wine.sh"
137-
fi
138-
139135
if [ -n "$USE_VALGRIND" ]; then
140136
"${BASE_ROOT_DIR}/ci/test/wrap-valgrind.sh"
141137
fi

ci/test/wrap-wine.sh

-20
This file was deleted.

0 commit comments

Comments
 (0)