mirror of
https://github.com/rbock/sqlpp11.git
synced 2024-11-16 04:47:18 +08:00
39 lines
953 B
YAML
39 lines
953 B
YAML
language: cpp
|
|
|
|
os:
|
|
- linux
|
|
|
|
compiler:
|
|
# - clang # disabled clang due to missing libc++
|
|
- gcc
|
|
|
|
notifications:
|
|
email:
|
|
on_success: change
|
|
on_failure: always
|
|
|
|
before_install:
|
|
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
|
|
- sudo apt-get update
|
|
- if [ "$CXX" = "g++" ]; then sudo apt-get install g++-4.8 libboost-dev; fi
|
|
- if [ "$CXX" = "g++" ]; then export CXX="g++-4.8" CC="gcc-4.8"; fi
|
|
|
|
|
|
install:
|
|
- git clone https://github.com/boostorg/preprocessor.git
|
|
- cd preprocessor
|
|
- git checkout tags/boost-1.50.0
|
|
- sudo cp -rf include/boost/* /usr/include/boost/
|
|
- ls -l /usr/include/boost/preprocessor/tuple
|
|
- sed 's|104600|105000|' -i /usr/include/boost/version.hpp
|
|
- "mkdir -p $TRAVIS_BUILD_DIR/build/scripts"
|
|
- "cd $TRAVIS_BUILD_DIR/build/scripts"
|
|
- "cmake $TRAVIS_BUILD_DIR"
|
|
|
|
script:
|
|
- "cd $TRAVIS_BUILD_DIR/build/scripts"
|
|
- "make -j3"
|
|
# test compile-time constraints
|
|
- "make test_sqlpp_constraints"
|
|
|