HyriseSQLParser/.travis.yml

40 lines
900 B
YAML
Raw Normal View History

2016-02-27 15:55:43 +01:00
2016-02-27 16:40:24 +01:00
language: cpp
2016-02-27 15:55:43 +01:00
install:
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
- sudo apt-get -qq update
- sudo apt-get install -y g++-5 libstdc++-5-dev
- sudo apt-get install -y flex valgrind
2016-02-27 15:55:43 +01:00
- sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.8 90
- sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-4.8 90
# Install bison 3.0.4.
- wget http://ftp.gnu.org/gnu/bison/bison-3.0.4.tar.gz
- tar -xvzf bison-3.0.4.tar.gz
- cd bison-3.0.4
- ./configure && make && sudo make install
- cd ..
# Show installed versions.
2016-02-27 15:55:43 +01:00
- which g++
- g++ -v
- bison --version
- flex --version
- valgrind --version
- if [ "$CXX" = "clang++" ]; then export CXXFLAGS="-stdlib=libc++"; fi
2016-02-27 15:55:43 +01:00
compiler:
- gcc
2016-02-27 17:44:42 +01:00
- clang
2016-02-27 15:55:43 +01:00
script:
- make cleanall
- make -j4
2016-02-27 16:40:24 +01:00
- make test
- make test_example
# Test if benchmark can be built.
# - make benchmark