Skip to content

Commit

Permalink
Wait for cover to produce db
Browse files Browse the repository at this point in the history
  • Loading branch information
ylavoie committed Aug 15, 2023
1 parent b578925 commit bafc671
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion .github/workflows/main.yml
Expand Up @@ -280,6 +280,14 @@ jobs:
echo " "
fi
# Patch
- name: Wait until Coverage has finished producing the database (10 minutes max)
uses: iFaxity/wait-on-action@v1.1.0
with:
resource: ./cover_db/digests
timeout: 600000
if: ${{ matrix.COVERAGE }}

# Make Coverage appear from root instead of UI to integrate in Coveralls
- name: Fix UI Coverage report
run: |
Expand Down Expand Up @@ -477,7 +485,15 @@ jobs:
echo " "
fi
# Upload coverage data if needed
# Patch
- name: Wait until Coverage has finished producing the database (10 minutes max)
uses: iFaxity/wait-on-action@v1.1.0
with:
resource: ./cover_db/digests
timeout: 600000
if: ${{ matrix.COVERAGE }}

# Upload coverage data if needed
- name: Upload coverage data
run: |
unset PERL5OPT
Expand Down

0 comments on commit bafc671

Please sign in to comment.