summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorArseny Kapoulkine <arseny.kapoulkine@gmail.com>2015-10-18 17:54:17 -0700
committerArseny Kapoulkine <arseny.kapoulkine@gmail.com>2015-10-18 17:54:17 -0700
commitd27a64338ef3b658bd6a6963bc87349b45dae8aa (patch)
tree2ac67f6f0c42efc9887c0bd1fee8cae9c745b31f /.travis.yml
parente7f1e3d9dde85ad78049ca6dca904bc6869a284b (diff)
Add release build to Travis
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml11
1 files changed, 7 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml
index 6634e75..b481983 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -4,8 +4,11 @@ os:
- linux
- osx
env:
- - DEFINES=standard
- - DEFINES=PUGIXML_WCHAR_MODE
- - DEFINES=PUGIXML_COMPACT
-script: make test defines=$DEFINES config=coverage -j2
+ - CONFIG=coverage DEFINES=standard
+ - CONFIG=coverage DEFINES=PUGIXML_WCHAR_MODE
+ - CONFIG=coverage DEFINES=PUGIXML_COMPACT
+ - CONFIG=release DEFINES=standard
+ - CONFIG=release DEFINES=PUGIXML_WCHAR_MODE
+ - CONFIG=release DEFINES=PUGIXML_COMPACT
+script: make test defines=$DEFINES config=$CONFIG -j2
after_success: bash <(curl -s https://codecov.io/bash) -f pugixml.cpp.gcov