diff --git a/CHANGELOG.md b/CHANGELOG.md index a63fa352565..f301fd9b4d8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -26,6 +26,8 @@ - PR #1253 MG test fixes: updated additional comms.initialize() calls, fixed dask DataFrame comparisons - PR #1270 Raise exception for p2p, disable bottom up approach for bfs - PR #1275 Force local artifact conda install +- PR #1285 Move codecov upload to gpu build script + # cuGraph 0.16.0 (21 Oct 2020) diff --git a/ci/gpu/build.sh b/ci/gpu/build.sh index 50b3bfb3ee9..2d9eb1b6e58 100755 --- a/ci/gpu/build.sh +++ b/ci/gpu/build.sh @@ -127,4 +127,8 @@ else python ${WORKSPACE}/ci/utils/nbtestlog2junitxml.py nbtest.log fi +if [ -n "\${CODECOV_TOKEN}" ]; then + codecov -t \$CODECOV_TOKEN +fi + return ${EXITCODE}