do not build for special cases
This commit is contained in:
parent
034244a291
commit
79fd4dfbd8
1 changed files with 17 additions and 13 deletions
14
.travis.yml
14
.travis.yml
|
@ -237,24 +237,28 @@ install:
|
||||||
################
|
################
|
||||||
|
|
||||||
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
|
||||||
#
|
#
|
||||||
#dist: trusty
|
#dist: trusty
|
||||||
|
|
Loading…
Reference in a new issue