Skip to content

Commit

Permalink
Make uploading combinded coverage conditional
Browse files Browse the repository at this point in the history
  • Loading branch information
stanbrub committed Feb 10, 2025
1 parent baa15ec commit 72cd06b
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/nightly-check-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,7 @@ jobs:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_NIGHTLY_FAILURE }}

combined-coverage-report:
if: ${{ github.event_name == 'schedule' || startsWith(github.ref_name, 'coverage/') }}
needs: nightly
runs-on: ubuntu-24.04
steps:
Expand All @@ -137,12 +138,12 @@ jobs:
pattern: coverage-*-results
merge-multiple: true

- name: Setup JDK 17
id: setup-java-17
- name: Setup JDK 21
id: setup-java-21
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
java-version: '21'

- name: Setup JDK 11
id: setup-java-11
Expand Down

0 comments on commit 72cd06b

Please sign in to comment.