Bump codecov/action to v2.0.2 (#24983)

* build(deps): bump codecov/codecov-action from 1 to 2.0.1

Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 1 to 2.0.1.
- [Release notes](https://github.com/codecov/codecov-action/releases)
- [Changelog](https://github.com/codecov/codecov-action/blob/master/CHANGELOG.md)
- [Commits](https://github.com/codecov/codecov-action/compare/v1...v2.0.1)

---
updated-dependencies:
- dependency-name: codecov/codecov-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

* Update arguments to codecov action

* Try to delete the symbolic link to root folder

Hopefully this should get rid of the ELOOP error

* Delete also for shell tests and MacOS

* Bump to v2.0.2

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
Massimiliano Culpo 2021-07-24 13:23:56 +02:00 committed by GitHub
parent bb20cadd91
commit a30e6c6158
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 21 additions and 6 deletions

View file

@ -180,7 +180,7 @@ jobs:
SPACK_TEST_SOLVER: ${{ matrix.concretizer }} SPACK_TEST_SOLVER: ${{ matrix.concretizer }}
run: | run: |
share/spack/qa/run-unit-tests share/spack/qa/run-unit-tests
- uses: codecov/codecov-action@v1 - uses: codecov/codecov-action@v2.0.2
if: ${{ needs.changes.outputs.with_coverage == 'true' }} if: ${{ needs.changes.outputs.with_coverage == 'true' }}
with: with:
flags: unittests,linux,${{ matrix.concretizer }} flags: unittests,linux,${{ matrix.concretizer }}
@ -232,7 +232,7 @@ jobs:
COVERAGE: true COVERAGE: true
run: | run: |
share/spack/qa/run-shell-tests share/spack/qa/run-shell-tests
- uses: codecov/codecov-action@v1 - uses: codecov/codecov-action@v2.0.2
if: ${{ needs.changes.outputs.with_coverage == 'true' }} if: ${{ needs.changes.outputs.with_coverage == 'true' }}
with: with:
flags: shelltests,linux flags: shelltests,linux
@ -348,7 +348,7 @@ jobs:
SPACK_TEST_SOLVER: clingo SPACK_TEST_SOLVER: clingo
run: | run: |
share/spack/qa/run-unit-tests share/spack/qa/run-unit-tests
- uses: codecov/codecov-action@v1 - uses: codecov/codecov-action@v2.0.2
if: ${{ needs.changes.outputs.with_coverage == 'true' }} if: ${{ needs.changes.outputs.with_coverage == 'true' }}
with: with:
flags: unittests,linux,clingo flags: unittests,linux,clingo
@ -384,12 +384,15 @@ jobs:
coverage run $(which spack) unit-test -x coverage run $(which spack) unit-test -x
coverage combine coverage combine
coverage xml coverage xml
# Delete the symlink going from ./lib/spack/docs/_spack_root back to
# the initial directory, since it causes ELOOP errors with codecov/actions@2
rm lib/spack/docs/_spack_root
else else
echo "ONLY PACKAGE RECIPES CHANGED [skipping coverage]" echo "ONLY PACKAGE RECIPES CHANGED [skipping coverage]"
$(which spack) unit-test -x -m "not maybeslow" -k "package_sanity" $(which spack) unit-test -x -m "not maybeslow" -k "package_sanity"
fi fi
- uses: codecov/codecov-action@v1 - uses: codecov/codecov-action@v2.0.2
if: ${{ needs.changes.outputs.with_coverage == 'true' }} if: ${{ needs.changes.outputs.with_coverage == 'true' }}
with: with:
file: ./coverage.xml files: ./coverage.xml
flags: unittests,macos flags: unittests,macos

View file

@ -3,7 +3,6 @@
# #
# SPDX-License-Identifier: (Apache-2.0 OR MIT) # SPDX-License-Identifier: (Apache-2.0 OR MIT)
#: major, minor, patch version for Spack, in a tuple #: major, minor, patch version for Spack, in a tuple
spack_version_info = (0, 16, 1) spack_version_info = (0, 16, 1)

View file

@ -56,3 +56,9 @@ fish "$QA_DIR/setup-env-test.fish"
# run csh and tcsh tests # run csh and tcsh tests
csh "$QA_DIR/setup-env-test.csh" csh "$QA_DIR/setup-env-test.csh"
tcsh "$QA_DIR/setup-env-test.csh" tcsh "$QA_DIR/setup-env-test.csh"
# Delete the symlink going from ./lib/spack/docs/_spack_root back to
# the initial directory, since it causes ELOOP errors with codecov/actions@2
if [[ "$COVERAGE" == "true" ]]; then
rm lib/spack/docs/_spack_root
fi

View file

@ -48,3 +48,10 @@ if [[ "$ONLY_PACKAGES" == "true" ]]; then
fi fi
$coverage_run $(which spack) unit-test -x --verbose $coverage_run $(which spack) unit-test -x --verbose
# Delete the symlink going from ./lib/spack/docs/_spack_root back to
# the initial directory, since it causes ELOOP errors with codecov/actions@2
if [[ "$COVERAGE" == "true" ]]; then
rm lib/spack/docs/_spack_root
fi