2016-11-20 21:05:40 +00:00
|
|
|
language: cpp
|
|
|
|
|
2016-11-23 23:59:20 +00:00
|
|
|
os:
|
|
|
|
- linux
|
|
|
|
- osx
|
|
|
|
|
2016-11-20 21:05:40 +00:00
|
|
|
matrix:
|
|
|
|
include:
|
|
|
|
- compiler: gcc
|
|
|
|
addons:
|
|
|
|
apt:
|
|
|
|
sources:
|
|
|
|
- ubuntu-toolchain-r-test
|
|
|
|
packages:
|
|
|
|
- g++-4.9
|
|
|
|
env: COMPILER=g++-4.9
|
|
|
|
- compiler: clang
|
|
|
|
addons:
|
|
|
|
apt:
|
|
|
|
sources:
|
|
|
|
- ubuntu-toolchain-r-test
|
|
|
|
- llvm-toolchain-precise-3.8
|
|
|
|
packages:
|
|
|
|
- clang-3.8
|
|
|
|
env: COMPILER=clang++-3.8
|
|
|
|
|
|
|
|
compiler:
|
|
|
|
- clang
|
|
|
|
|
|
|
|
before_script:
|
|
|
|
|
|
|
|
script:
|
|
|
|
- mkdir ./build_pure_11
|
|
|
|
- cd ./build_pure_11
|
2016-11-23 23:59:20 +00:00
|
|
|
- cmake -DCMAKE_CXX_COMPILER=$COMPILER -DCMAKE_BUILD_TYPE=Release -DGLM_TEST_ENABLE=ON -DGLM_TEST_ENABLE_CXX_11=ON -DGLM_TEST_FORCE_PURE=ON ..
|
2016-11-20 21:05:40 +00:00
|
|
|
- cmake --build .
|
|
|
|
- ctest
|
|
|
|
- cd ..
|
|
|
|
- mkdir ./build_pure_98
|
|
|
|
- cd ./build_pure_98
|
2016-11-23 23:59:20 +00:00
|
|
|
- cmake -DCMAKE_CXX_COMPILER=$COMPILER -DCMAKE_BUILD_TYPE=Release -DGLM_TEST_ENABLE=ON -DGLM_TEST_ENABLE_CXX_98=ON -DGLM_TEST_FORCE_PURE=ON ..
|
2016-11-20 21:05:40 +00:00
|
|
|
- cmake --build .
|
|
|
|
- ctest
|
|
|
|
- cd ..
|
2016-11-23 23:59:20 +00:00
|
|
|
- mkdir ./build_pure_11_debug
|
|
|
|
- cd ./build_pure_11_debug
|
|
|
|
- cmake -DCMAKE_CXX_COMPILER=$COMPILER -DCMAKE_BUILD_TYPE=Debug -DGLM_TEST_ENABLE=ON -DGLM_TEST_ENABLE_CXX_11=ON -DGLM_TEST_FORCE_PURE=ON ..
|
|
|
|
- cmake --build .
|
|
|
|
- ctest
|
|
|
|
- cd ..
|
2016-11-24 18:39:28 +00:00
|
|
|
- mkdir ./build_pure_98_debug
|
|
|
|
- cd ./build_pure_98_debug
|
|
|
|
- cmake -DCMAKE_CXX_COMPILER=$COMPILER -DCMAKE_BUILD_TYPE=Debug -DGLM_TEST_ENABLE=ON -DGLM_TEST_ENABLE_CXX_98=ON -DGLM_TEST_FORCE_PURE=ON ..
|
|
|
|
- cmake --build .
|
|
|
|
- ctest
|
|
|
|
- cd ..
|
|
|
|
- if [[ $TRAVIS_OS_NAME == 'osx' ]]; then
|
|
|
|
- mkdir ./build_simd_11
|
|
|
|
- cd ./build_simd_11
|
|
|
|
- cmake -DCMAKE_CXX_COMPILER=$COMPILER -DCMAKE_BUILD_TYPE=Release -DGLM_TEST_ENABLE=ON -DGLM_TEST_ENABLE_CXX_11=ON -DGLM_TEST_ENABLE_SIMD_SSE3=ON ..
|
|
|
|
- cmake --build .
|
|
|
|
- ctest
|
|
|
|
- cd ..
|
|
|
|
- mkdir ./build_simd_98
|
|
|
|
- cd ./build_simd_98
|
|
|
|
- cmake -DCMAKE_CXX_COMPILER=$COMPILER -DCMAKE_BUILD_TYPE=Release -DGLM_TEST_ENABLE=ON -DGLM_TEST_ENABLE_CXX_98=ON -DGLM_TEST_ENABLE_SIMD_SSE3=ON ..
|
|
|
|
- cmake --build .
|
|
|
|
- ctest
|
|
|
|
- cd ..
|
2016-11-23 23:59:20 +00:00
|
|
|
- mkdir ./build_simd_11_debug
|
|
|
|
- cd ./build_simd_11_debug
|
2016-11-24 18:39:28 +00:00
|
|
|
- cmake -DCMAKE_CXX_COMPILER=$COMPILER -DCMAKE_BUILD_TYPE=Debug -DGLM_TEST_ENABLE=ON -DGLM_TEST_ENABLE_CXX_11=ON -DGLM_TEST_ENABLE_SIMD_SSE3=ON ..
|
2016-11-23 23:59:20 +00:00
|
|
|
- cmake --build .
|
|
|
|
- ctest
|
|
|
|
- cd ..
|
2016-11-24 18:39:28 +00:00
|
|
|
- mkdir ./build_simd_98_debug
|
|
|
|
- cd ./build_simd_98_debug
|
|
|
|
- cmake -DCMAKE_CXX_COMPILER=$COMPILER -DCMAKE_BUILD_TYPE=Debug -DGLM_TEST_ENABLE=ON -DGLM_TEST_ENABLE_CXX_98=ON -DGLM_TEST_ENABLE_SIMD_SSE3=ON ..
|
|
|
|
- cmake --build .
|
|
|
|
- ctest
|
|
|
|
- cd ..
|
|
|
|
- else
|
|
|
|
- mkdir ./build_simd_11
|
|
|
|
- cd ./build_simd_11
|
|
|
|
- cmake -DCMAKE_CXX_COMPILER=$COMPILER -DCMAKE_BUILD_TYPE=Release -DGLM_TEST_ENABLE=ON -DGLM_TEST_ENABLE_CXX_11=ON -DGLM_TEST_ENABLE_SIMD_AVX=ON ..
|
|
|
|
- cmake --build .
|
|
|
|
- ctest
|
|
|
|
- cd ..
|
|
|
|
- mkdir ./build_simd_98
|
|
|
|
- cd ./build_simd_98
|
|
|
|
- cmake -DCMAKE_CXX_COMPILER=$COMPILER -DCMAKE_BUILD_TYPE=Release -DGLM_TEST_ENABLE=ON -DGLM_TEST_ENABLE_CXX_98=ON -DGLM_TEST_ENABLE_SIMD_AVX=ON ..
|
|
|
|
- cmake --build .
|
|
|
|
- ctest
|
|
|
|
- cd ..
|
|
|
|
- mkdir ./build_simd_11_debug
|
|
|
|
- cd ./build_simd_11_debug
|
|
|
|
- cmake -DCMAKE_CXX_COMPILER=$COMPILER -DCMAKE_BUILD_TYPE=Debug -DGLM_TEST_ENABLE=ON -DGLM_TEST_ENABLE_CXX_11=ON -DGLM_TEST_ENABLE_SIMD_AVX=ON ..
|
2016-11-23 23:59:20 +00:00
|
|
|
- cmake --build .
|
|
|
|
- ctest
|
|
|
|
- cd ..
|
|
|
|
- mkdir ./build_simd_98_debug
|
|
|
|
- cd ./build_simd_98_debug
|
|
|
|
- cmake -DCMAKE_CXX_COMPILER=$COMPILER -DCMAKE_BUILD_TYPE=Debug -DGLM_TEST_ENABLE=ON -DGLM_TEST_ENABLE_CXX_98=ON -DGLM_TEST_ENABLE_SIMD_AVX=ON ..
|
2016-11-20 21:05:40 +00:00
|
|
|
- cmake --build .
|
|
|
|
- ctest
|
|
|
|
- cd ..
|
2016-11-24 18:39:28 +00:00
|
|
|
- fi
|
2016-11-20 21:05:40 +00:00
|
|
|
|
|
|
|
|
|
|
|
|