2014-08-24 15:34:01 +08:00
|
|
|
language: cpp
|
|
|
|
|
|
|
|
os:
|
|
|
|
- linux
|
2016-12-25 21:32:47 +08:00
|
|
|
- osx
|
2014-08-24 15:34:01 +08:00
|
|
|
|
2016-12-25 21:16:38 +08:00
|
|
|
dist: trusty
|
|
|
|
sudo: required
|
|
|
|
|
2014-08-24 15:34:01 +08:00
|
|
|
compiler:
|
2016-12-25 21:32:47 +08:00
|
|
|
- clang
|
2014-08-24 15:34:01 +08:00
|
|
|
- gcc
|
|
|
|
|
2015-05-29 23:52:34 +08:00
|
|
|
env:
|
2016-12-25 21:32:47 +08:00
|
|
|
- CONFIG=Release
|
2019-01-28 17:10:08 +08:00
|
|
|
- CONFIG=Release TESTS_CXX_STD=17
|
2016-12-25 21:32:47 +08:00
|
|
|
#- CONFIG=Debug
|
2015-05-29 23:52:34 +08:00
|
|
|
|
2014-08-24 15:34:01 +08:00
|
|
|
notifications:
|
|
|
|
email:
|
|
|
|
on_success: change
|
|
|
|
on_failure: always
|
|
|
|
|
|
|
|
install:
|
2016-12-25 21:32:47 +08:00
|
|
|
- g++ --version
|
|
|
|
- cmake --version
|
2015-10-30 01:51:28 +08:00
|
|
|
- git clone https://github.com/HowardHinnant/date
|
2016-04-14 22:41:17 +08:00
|
|
|
- cd date
|
2018-01-31 22:55:02 +08:00
|
|
|
- git checkout tags/v2.4
|
2016-04-14 22:41:17 +08:00
|
|
|
- cd ..
|
2014-08-24 15:34:01 +08:00
|
|
|
|
2015-05-29 23:52:34 +08:00
|
|
|
before_script:
|
|
|
|
- mkdir build
|
|
|
|
- cd build
|
2016-06-13 02:03:09 +08:00
|
|
|
- if [[ "$CONFIG" = "Debug" && "$TRAVIS_OS_NAME" = "linux" ]]; then
|
|
|
|
cp -r ../scripts/ . &&
|
|
|
|
cp -r ../test_scripts/ . &&
|
|
|
|
sudo apt-get install python-pyparsing;
|
|
|
|
fi
|
2015-09-14 05:33:16 +08:00
|
|
|
- if [[ "$CXX" = "g++" && "$CONFIG" = "Debug" && "$TRAVIS_OS_NAME" = "linux" ]]; then export CXXFLAGS="--coverage"; fi
|
2016-05-05 16:15:26 +08:00
|
|
|
- cmake .. -DCMAKE_BUILD_TYPE=$CONFIG -DCMAKE_PREFIX_PATH=$PWD/../date
|
2014-08-24 15:34:01 +08:00
|
|
|
|
2015-05-29 23:52:34 +08:00
|
|
|
script:
|
2019-01-28 18:00:08 +08:00
|
|
|
- ARGS="--config $CONFIG"
|
|
|
|
- if [[ -n "${TESTS_CXX_STD:-}" ]]; then ARGS="$ARGS -DSQLPP11_TESTS_CXX_STD=$TESTS_CXX_STD"; fi
|
|
|
|
- cmake --build . $ARGS
|
2015-05-29 23:52:34 +08:00
|
|
|
- ctest --output-on-failure
|
2015-05-30 05:16:50 +08:00
|
|
|
|
|
|
|
after_script:
|
|
|
|
- ../coveralls
|