Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
ayeshLK committed Feb 1, 2023
2 parents 7df61c5 + ebfb8cd commit 03e5ae8
Showing 1 changed file with 35 additions and 2 deletions.
37 changes: 35 additions & 2 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,41 @@ jobs:
packagePAT: ${{ secrets.GITHUB_TOKEN }}
run: ./gradlew build --no-daemon --scan

- name: Generate Codecov Report
if: github.event_name == 'pull_request'
- name: Generate CodeCov Report Try 1
if: github.event_name == 'pull_request'
id: uploadReport1
uses: codecov/codecov-action@v2
continue-on-error: true
with:
fail_ci_if_error: true
- name: Wait after upload failure
if: steps.uploadReport1.outcome == 'failure'
run: |
sleep 300s
- name: Generate CodeCov Report Try 2
if: steps.uploadReport1.outcome == 'failure'
id: uploadReport2
uses: codecov/codecov-action@v2
continue-on-error: true
with:
fail_ci_if_error: true
- name: Wait after upload failure
if: steps.uploadReport2.outcome == 'failure'
run: |
sleep 300s
- name: Generate CodeCov Report Try 3
if: steps.uploadReport2.outcome == 'failure'
id: uploadReport3
uses: codecov/codecov-action@v2
continue-on-error: true
with:
fail_ci_if_error: true
- name: Wait after upload failure
if: steps.uploadReport3.outcome == 'failure'
run: |
sleep 300s
- name: Generate CodeCov Report Try 4
if: steps.uploadReport3.outcome == 'failure'
uses: codecov/codecov-action@v2

windows-build:
Expand Down

0 comments on commit 03e5ae8

Please sign in to comment.