Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .github/workflows/GPU.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,3 +43,10 @@ jobs:
files: lcov.info
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: false
# The two matrix jobs (Core/Applications) share one self-hosted host
# and a single ~/.gitconfig. codecov-action's `git config --global
# --add safe.directory` setup then races on git's config lock,
# failing one job with "could not lock config file ...: File exists"
# even though tests pass. The workspace is already owned by the
# runner user, so this safe.directory write is unnecessary here.
disable_safe_directory: true
Loading