diff options
author | Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> | 2023-12-12 10:04:49 +0000 |
---|---|---|
committer | Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> | 2023-12-12 10:04:49 +0000 |
commit | 7b22cd80e050b903b5765133b8116f4b17ce0296 (patch) | |
tree | 9aa7fbb9998ed7f9a934c1fec9087656c4190a8a | |
parent | d5e5810bd36f6e899d64a57e9264729b27a9c3f8 (diff) |
Revert "ci: Only run functional tests on windows in master"
This reverts commit aba4a5887b44bf7cbee9ea0a8e02bb92c1b4147b.
-rw-r--r-- | .github/workflows/ci.yml | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1b43eca672..c8c4cfa583 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -282,10 +282,6 @@ jobs: run: py -3 test\util\rpcauth-test.py - name: Run functional tests - # Don't run functional tests for pull requests. - # The test suit regularly fails to complete in windows native github - # actions as a child process stops making progress. The root cause has - # not yet been determined. - # Discussed in https://github.com/bitcoin/bitcoin/pull/28509 - if: github.event_name != 'pull_request' - 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 + env: + TEST_RUNNER_EXTRA: ${{ github.event_name != 'pull_request' && '--extended' || '' }} + 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 |