From 941b8f54c0d35d3243bb6083f3b52681d1b9a555 Mon Sep 17 00:00:00 2001 From: Max Edwards Date: Wed, 25 Jun 2025 21:06:10 +0100 Subject: [PATCH] ci: run get_previous_releases as part of test cross win job This should enable wallet_migration functional test to run on Windows --- .github/workflows/ci.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d21deba9658..c5d278e9c1a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -372,6 +372,14 @@ jobs: - name: Run rpcauth test run: py -3 test/util/rpcauth-test.py + - name: Set previous release directory + run: | + echo "PREVIOUS_RELEASES_DIR=${{ runner.temp }}/previous_releases" >> "$GITHUB_ENV" + + - name: Get previous releases + working-directory: test + run: ./get_previous_releases.py --target-dir $PREVIOUS_RELEASES_DIR + - name: Run functional tests env: # TODO: Fix the excluded test and re-enable it.