We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 62d4cdc commit aa3231bCopy full SHA for aa3231b
azure-templates.yml
@@ -49,7 +49,7 @@ jobs:
49
displayName: run test
50
51
- bash: |
52
- curl -Os https://uploader.codecov.io/latest/linux/codecov
+ curl -Os https://uploader.codecov.io/latest/${{parameters.os}}/codecov
53
chmod +x codecov
54
./codecov -t $codecov_token
55
env:
@@ -58,7 +58,9 @@ jobs:
58
displayName: codecov upload on Linux/Darwin
59
60
- powershell: |
61
- codecov -t "$(CODECOV_TOKEN)"
+ $ProgressPreference = 'SilentlyContinue'
62
+ Invoke-WebRequest -Uri https://uploader.codecov.io/latest/windows/codecov.exe -Outfile codecov.exe
63
+ .\codecov.exe -t ${CODECOV_TOKEN}
64
condition: eq( variables['Agent.OS'], 'Windows_NT' )
65
displayName: codecov upload on Windows
66
0 commit comments