Commit 79fd4dfb authored by Niels's avatar Niels

do not build for special cases

parent 034244a2
...@@ -237,24 +237,28 @@ install: ...@@ -237,24 +237,28 @@ install:
################ ################
script: script:
# show OS/compiler version - if [[ "${SPECIAL}" != "" ]]; then
- uname -a
- $CXX --version # show OS/compiler version
uname -a
# compile $CXX --version
- make
# compile
# execute unit tests make
- test/json_unit "*"
# execute unit tests
# check if homebrew works (only checks develop branch) test/json_unit "*"
- if [ `which brew` ]; then
brew update ; # check if homebrew works (only checks develop branch)
brew tap nlohmann/json ; if [ `which brew` ]; then
brew install nlohmann_json --HEAD ; brew update ;
brew test nlohmann_json ; brew tap nlohmann/json ;
brew install nlohmann_json --HEAD ;
brew test nlohmann_json ;
fi fi
fi
#language: cpp #language: cpp
# #
#dist: trusty #dist: trusty
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment