Skip to content

Commit aba4a58

Browse files
committed
ci: Only run functional tests on windows in master
1 parent e7b0004 commit aba4a58

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -286,6 +286,10 @@ jobs:
286286
run: py -3 test\util\rpcauth-test.py
287287

288288
- name: Run functional tests
289-
env:
290-
TEST_RUNNER_EXTRA: ${{ github.event_name != 'pull_request' && '--extended' || '' }}
291-
run: py -3 test\functional\test_runner.py --jobs $env:NUMBER_OF_PROCESSORS --ci --quiet --tmpdirprefix=$env:RUNNER_TEMP --combinedlogslen=99999999 --timeout-factor=$env:TEST_RUNNER_TIMEOUT_FACTOR $env:TEST_RUNNER_EXTRA
289+
# Don't run functional tests for pull requests.
290+
# The test suit regularly fails to complete in windows native github
291+
# actions as a child process stops making progress. The root cause has
292+
# not yet been determined.
293+
# Discussed in https://github.com/bitcoin/bitcoin/pull/28509
294+
if: github.event_name != 'pull_request'
295+
run: py -3 test\functional\test_runner.py --jobs $env:NUMBER_OF_PROCESSORS --ci --quiet --tmpdirprefix=$env:RUNNER_TEMP --combinedlogslen=99999999 --timeout-factor=$env:TEST_RUNNER_TIMEOUT_FACTOR --extended

0 commit comments

Comments
 (0)