ci: [refactor] Move pyzmq install and get_previous_releases into ci-windows-cross.py

This commit is contained in:
MarcoFalke
2026-02-10 11:59:03 +01:00
parent fac9c7bd66
commit 1111108685
2 changed files with 13 additions and 6 deletions

View File

@@ -425,21 +425,18 @@ jobs:
./src/univalue/object.exe
./src/univalue/unitester.exe
- name: Adjust paths in test/config.ini
run: py -3 .github/ci-windows-cross.py prepare_tests
- name: Set previous release directory
run: |
echo "PREVIOUS_RELEASES_DIR=${{ runner.temp }}/previous_releases" >> "$GITHUB_ENV"
- name: Get previous releases
run: ./test/get_previous_releases.py --target-dir $PREVIOUS_RELEASES_DIR
- name: Prepare Windows test environment
run: |
py -3 .github/ci-windows-cross.py prepare_tests
- name: Run functional tests
env:
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 \
`# feature_unsupported_utxo_db.py fails on Windows because of emojis in the test data directory.` \
--exclude feature_unsupported_utxo_db.py \