ci: [refactor] Add .github/ci-windows.py prepare_tests step

This commit is contained in:
MarcoFalke
2026-02-06 09:24:34 +01:00
parent fa3e607c6d
commit fa561682ce
2 changed files with 28 additions and 10 deletions

View File

@@ -310,6 +310,10 @@ jobs:
run: |
ctest --output-on-failure --stop-on-failure -j $NUMBER_OF_PROCESSORS -C Release
- name: Prepare tests
run: |
py -3 .github/ci-windows.py ${{ matrix.job-type }} prepare_tests
- name: Run functional tests
if: matrix.job-type == 'standard'
working-directory: build
@@ -324,17 +328,8 @@ jobs:
BITCOINCHAINSTATE: '${{ github.workspace }}\build\bin\Release\bitcoin-chainstate.exe'
TEST_RUNNER_EXTRA: ${{ github.event_name != 'pull_request' && '--extended' || '' }}
run: |
py -3 -m pip install pyzmq
py -3 test/functional/test_runner.py --jobs $NUMBER_OF_PROCESSORS --quiet --tmpdirprefix="${RUNNER_TEMP}" --combinedlogslen=99999999 --timeout-factor=${TEST_RUNNER_TIMEOUT_FACTOR} ${TEST_RUNNER_EXTRA}
- name: Clone corpora
if: matrix.job-type == 'fuzz'
run: |
git clone --depth=1 https://github.com/bitcoin-core/qa-assets "${RUNNER_TEMP}/qa-assets"
cd "${RUNNER_TEMP}/qa-assets"
echo "Using qa-assets repo from commit ..."
git log -1
- name: Run fuzz tests
if: matrix.job-type == 'fuzz'
working-directory: build