diff options
author | Arseny Kapoulkine <arseny.kapoulkine@gmail.com> | 2015-10-24 14:03:29 -0700 |
---|---|---|
committer | Arseny Kapoulkine <arseny.kapoulkine@gmail.com> | 2015-10-24 14:15:47 -0700 |
commit | 39149fd5bd31aceab3d78334d50c726cc5b7f844 (patch) | |
tree | 4711a5bcc67e686e18a5e4b10caea7361269fe09 /.travis.yml | |
parent | 0fe295aa9cbbc2fc424d69c7368e577515800727 (diff) |
Reduce Travis build matrix
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/.travis.yml b/.travis.yml index b481983..a7e4840 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,11 +4,11 @@ os: - linux - osx env: - - 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 + - DEFINES=standard + - DEFINES=PUGIXML_WCHAR_MODE + - DEFINES=PUGIXML_COMPACT +script: + - make test config=coverage defines=$DEFINES -j2 + - make test config=release defines=$DEFINES -j2 + after_success: bash <(curl -s https://codecov.io/bash) -f pugixml.cpp.gcov |