aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorElliott Sales de Andrade <quantum.analyst@gmail.com>2017-05-08 02:39:16 -0400
committerElliott Sales de Andrade <quantum.analyst@gmail.com>2017-05-21 16:11:33 -0400
commit617a0da42690f65fe68e49ab6930d8908c2826f3 (patch)
treeda57eeb8510c7652c4eb8299aece2beb05e0d4ed
parent6e2fff1f4421309a182ca5cf55d971ff31fda7d1 (diff)
downloadmeson-617a0da42690f65fe68e49ab6930d8908c2826f3.zip
meson-617a0da42690f65fe68e49ab6930d8908c2826f3.tar.gz
meson-617a0da42690f65fe68e49ab6930d8908c2826f3.tar.bz2
Give each coverage build a unique name.
Travis builds are currently build number (123.1, 123.2, etc.) and AppVeyor is some random string, making it hard to determine which builds cover what.
-rw-r--r--.appveyor.yml2
-rw-r--r--.travis.yml2
2 files changed, 2 insertions, 2 deletions
diff --git a/.appveyor.yml b/.appveyor.yml
index dba0bef..1e20a37 100644
--- a/.appveyor.yml
+++ b/.appveyor.yml
@@ -90,7 +90,7 @@ after_test:
- cmd: "%WRAPPER% %PYTHON% -m coverage combine"
# Generate XML report manually because codecov module doesn't know how to run it properly.
- cmd: "%WRAPPER% %PYTHON% -m coverage xml"
- - cmd: "%WRAPPER% %PYTHON% -m codecov -X search pycov -f coverage.xml"
+ - cmd: "%WRAPPER% %PYTHON% -m codecov -X search pycov -f coverage.xml -n windows-%arch%-%compiler%-%backend%"
on_finish:
- set "PATH=%ORIG_PATH%"
diff --git a/.travis.yml b/.travis.yml
index 5a73397..fb86292 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -53,4 +53,4 @@ script:
after_success:
- coverage3 combine
- - codecov
+ - codecov -n "${TRAVIS_OS_NAME}-${CC}-{$(echo ${MESON_ARGS} | sed -e 's/^--//g' -e 's/ --/,/g')}"