aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/travis.sh
blob: b6b7975ff75d3bbc46c949670a9002a81983c260 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/bash -e

CMAKE_ARGS="-DCMAKE_BUILD_TYPE=Debug -DENTITYX_BUILD_TESTING=1"

if [ "$USE_STD_SHARED_PTR" = "1" ]; then
  CMAKE_ARGS="${CMAKE_ARGS}"
  # This fails on OSX
  if [ "$CXX" = "clang++" ]; then
    CMAKE_ARGS="${CMAKE_ARGS} -DENTITYX_USE_CPP11_STDLIB=1"
  fi
fi

cmake ${CMAKE_ARGS}
make VERBOSE=1
make test || cat Testing/Temporary/LastTest.log