1
0
mirror of https://github.com/nlohmann/json synced 2025-01-13 02:40:06 +00:00

reverted .travis file

This commit is contained in:
Niels 2016-08-22 20:54:32 +02:00
parent 29a4ef6c5c
commit b688119aa4

View File

@ -236,26 +236,24 @@ install:
# build script # # build script #
################ ################
script: | script:
if [[ "${SPECIAL}" == "" ]]; then
# show OS/compiler version # show OS/compiler version
uname -a - uname -a
$CXX --version - $CXX --version
# compile # compile
make - make
# execute unit tests # execute unit tests
test/json_unit "*" - test/json_unit "*"
# check if homebrew works (only checks develop branch) # check if homebrew works (only checks develop branch)
if [ `which brew` ]; then - if [ `which brew` ]; then
brew update ; brew update ;
brew tap nlohmann/json ; brew tap nlohmann/json ;
brew install nlohmann_json --HEAD ; brew install nlohmann_json --HEAD ;
brew test nlohmann_json ; brew test nlohmann_json ;
fi fi
fi
#language: cpp #language: cpp
# #