From 6a81b2c6a0b9df7ef9619a39b8b71d916dde949e Mon Sep 17 00:00:00 2001 From: Andrew Johnson Date: Tue, 20 Apr 2021 17:39:25 -0500 Subject: [PATCH] CI: Allow up to 5 minutes for `make test-results` --- .appveyor.yml | 2 +- .appveyor/epics-base-7.yml | 2 +- .github/workflows/ci-scripts-build.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index 5534df41f..c830ae1a8 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -111,7 +111,7 @@ test_script: on_finish: - ps: Get-ChildItem *.tap -Recurse -Force | % { Push-AppveyorArtifact $_.FullName -FileName $_.Name } - - cmd: python .ci/cue.py -T 1M test-results + - cmd: python .ci/cue.py -T 5M test-results on_failure: - cmd: python -m ci_core_dumper report diff --git a/.appveyor/epics-base-7.yml b/.appveyor/epics-base-7.yml index f7e7da511..4a01ccde5 100644 --- a/.appveyor/epics-base-7.yml +++ b/.appveyor/epics-base-7.yml @@ -117,7 +117,7 @@ test_script: on_finish: - ps: Get-ChildItem *.tap -Recurse -Force | % { Push-AppveyorArtifact $_.FullName -FileName $_.Name } - - cmd: python .ci/cue.py -T 1M test-results + - cmd: python .ci/cue.py -T 5M test-results on_failure: - cmd: python -m ci_core_dumper report diff --git a/.github/workflows/ci-scripts-build.yml b/.github/workflows/ci-scripts-build.yml index 7055238c1..ff61a16c5 100644 --- a/.github/workflows/ci-scripts-build.yml +++ b/.github/workflows/ci-scripts-build.yml @@ -172,4 +172,4 @@ jobs: path: '**/O.*/*.tap' - name: Collect and show test results if: ${{ always() }} - run: python .ci/cue.py -T 1M test-results + run: python .ci/cue.py -T 5M test-results