You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/ci.yml
+26-31Lines changed: 26 additions & 31 deletions
Original file line number
Diff line number
Diff line change
@@ -515,17 +515,11 @@ jobs:
515
515
github_token: ${{ secrets.GITHUB_TOKEN }}
516
516
517
517
- name: Codecov
518
+
id: codecov
518
519
if: matrix.coverage
519
-
env:
520
-
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
521
520
run: |
522
-
set -x
523
-
524
-
if [ -z "$CODECOV_TOKEN" ]; then
525
-
echo "CODECOV_TOKEN is not set. Skipping coverage report."
526
-
exit 0
527
-
fi
528
-
521
+
set -euvx
522
+
529
523
# Find gcov
530
524
gcov_tool="gcov"
531
525
for version in "${{steps.setup-cpp.outputs.version-major}}.${{steps.setup-cpp.outputs.version-minor}}" "${{steps.setup-cpp.outputs.version-major}}"; do
0 commit comments