Skip to content

Commit a0fb6fa

Browse files
committed
Distinguish between Appveyor and github-action
Right now, the Codecov UI displays downloads in a confusing way: You get an "appveyor" header, and then 2 list items with links to appveyor, followed by one list item with a link to Github. We didn't specify that appveyor name anywhere, maybe Codecov behaves differently on that platform. Let us see if specifying names for each system makes things clearer.
1 parent 976f3f3 commit a0fb6fa

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.appveyor.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -124,4 +124,4 @@ test_script:
124124
125125
after_test:
126126
- appveyor DownloadFile https://codecov.io/bash -FileName codecov.sh
127-
- bash codecov.sh -f clover.xml
127+
- ps: bash codecov.sh -f clover.xml -n "AppVeyor $($env:db) $($env:db_version) $($env:driver) $($env:php)"

.github/workflows/continuous-integration.yml

+1
Original file line numberDiff line numberDiff line change
@@ -679,5 +679,6 @@ jobs:
679679
with:
680680
directory: reports
681681
fail_ci_if_error: true
682+
name: github-action
682683
env:
683684
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

0 commit comments

Comments
 (0)