From 39149fd5bd31aceab3d78334d50c726cc5b7f844 Mon Sep 17 00:00:00 2001 From: Arseny Kapoulkine Date: Sat, 24 Oct 2015 14:03:29 -0700 Subject: Reduce Travis build matrix --- .travis.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to '.travis.yml') 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 -- cgit v1.2.3