From 71af209ea90875fd4dc2a10fa6a8b11f800a911a Mon Sep 17 00:00:00 2001 From: Niels Date: Mon, 22 Aug 2016 20:44:36 +0200 Subject: [PATCH] fix for YAML file --- .travis.yml | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/.travis.yml b/.travis.yml index 053bd4360..606e13893 100644 --- a/.travis.yml +++ b/.travis.yml @@ -236,19 +236,18 @@ install: # build script # ################ -script: - - if [[ "${SPECIAL}" != "" ]]; then - +script: | + if [[ "${SPECIAL}" != "" ]]; then # show OS/compiler version uname -a $CXX --version - + # compile make - + # execute unit tests test/json_unit "*" - + # check if homebrew works (only checks develop branch) if [ `which brew` ]; then brew update ; @@ -256,7 +255,6 @@ script: brew install nlohmann_json --HEAD ; brew test nlohmann_json ; fi - fi #language: cpp