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 ad6442c commit fc5b166Copy full SHA for fc5b166
.evergreen/config/functions.yml
@@ -126,6 +126,21 @@ functions:
126
- command: attach.results
127
params:
128
file_location: "${DRIVERS_TOOLS}/results.json"
129
+ - command: shell.exec
130
+ params:
131
+ working_dir: src
132
+ script: |
133
+ ${PREPARE_SHELL}
134
+ curl -Os https://cli.codecov.io/latest/linux/codecov
135
+ sudo chmod +x codecov
136
+ [[ -f test-results.xml ]] && \
137
+ ./codecov upload-process \
138
+ --report-type test_results \
139
+ --disable-search \
140
+ --fail-on-error \
141
+ --token ${CODECOV_TOKEN} \
142
+ --file test-results.xml || \
143
+ echo "Skipping codecov test result upload due to error"
144
145
"bootstrap mongo-orchestration":
146
- command: shell.exec
0 commit comments