Skip to content

Commit f9372f9

Browse files
authored
[WX-1605] Fix Codecov Report Uploads (#7418)
1 parent 0a6ad65 commit f9372f9

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.github/workflows/integration_tests.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,10 @@ jobs:
110110
set -e
111111
echo Running test.sh
112112
./src/ci/bin/test.sh
113+
- uses: codecov/codecov-action@v4
114+
with:
115+
token: ${{ secrets.CODECOV_TOKEN }}
116+
fail_ci_if_error: false # Tolerate missing codecov reports, since not all suites generate them.
113117
# always() is some github magic that forces the following step to run, even when the previous fails.
114118
# Without it, the if statement won't be evaluated on a test failure.
115119
- uses: ravsamhq/notify-slack-action@v2

src/ci/bin/test.inc.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -834,7 +834,6 @@ cromwell::private::setup_prior_version_resources() {
834834
cromwell::private::generate_code_coverage() {
835835
sbt -Dsbt.supershell=false --warn coverageReport
836836
sbt -Dsbt.supershell=false --warn coverageAggregate
837-
bash <(curl -s https://codecov.io/bash) > /dev/null || true
838837
}
839838

840839
cromwell::private::start_build_heartbeat() {

0 commit comments

Comments
 (0)