Skip to content

Commit

Permalink
Merge pull request #40 from quiye/travis
Browse files Browse the repository at this point in the history
Adding CI service only for C++, for now.
  • Loading branch information
badrishc committed Oct 5, 2018
2 parents 917f763 + d272788 commit 16ff678
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .travis.yml
@@ -0,0 +1,15 @@
language: cpp
install:
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
- sudo apt update
- sudo apt install -y g++-7 libaio-dev uuid-dev libtbb-dev
script:
- export CXX='g++-7'
- cd cc
- mkdir -p build/Debug build/Release
- cd build/Debug
- cmake -DCMAKE_BUILD_TYPE=Debug ../..
- make -j
- cd ../../build/Release
- cmake -DCMAKE_BUILD_TYPE=Release ../..
- make -j

0 comments on commit 16ff678

Please sign in to comment.