Skip to content

Commit

Permalink
Fix CI build failure on scheduled re-run when test-space results alre…
Browse files Browse the repository at this point in the history
…ady exist
  • Loading branch information
egorodet committed Mar 14, 2024
1 parent 3ca3424 commit 70fe449
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -242,6 +242,7 @@ jobs:

- name: Upload Test Results and Build Log to TestSpace server
if: ${{ github.repository == env.ORIGIN_REPOSITORY && matrix.run_tests && (success() || failure()) }}
continue-on-error: true # testspace will fail if test result already exists for current build id, but it's OK on build re-run.
shell: bash
run: |
testspace \
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/ci-sonar-scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -231,6 +231,7 @@ jobs:

- name: Upload Build Log and Code Coverage to TestSpace server
if: ${{ github.event_name == 'push' && (success() || failure()) }}
continue-on-error: true # testspace will fail if test result already exists for current build id, but it's OK on build re-run.
shell: bash
run: |
testspace \
Expand Down

0 comments on commit 70fe449

Please sign in to comment.