Skip to content

Commit

Permalink
NO-JIRA: Add TravisCI and Appveyor configuration files
Browse files Browse the repository at this point in the history
  • Loading branch information
astitcher committed Aug 12, 2016
1 parent 0587ab3 commit 6362570
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .travis.yml
@@ -0,0 +1,30 @@
os:
- linux
sudo: false
language:
- c
- cpp
cache: ccache
addons:
apt:
packages:
- cmake
- libboost-dev
- libboost-program-options-dev
- libboost-system-dev
- libboost-test-dev
- uuid-dev
- libnss3-dev
- libsasl2-dev
- sasl2-bin
- swig
- python-dev
- valgrind
- ruby
before_script:
- mkdir Build
- cd Build
- cmake .. -DCMAKE_INSTALL_PREFIX=$PWD/install
script:
- cmake --build . --target install && ctest -V

12 changes: 12 additions & 0 deletions appveyor.yml
@@ -0,0 +1,12 @@
version: '{branch}.{build}'
configuration: RelWithDebInfo
clone_depth: 1
before_build:
- mkdir BLD
- cd BLD
- cmake -G "Visual Studio 14 2015" -DBUILD_BINDING_DOTNET=OFF -DBOOST_ROOT=C:\Libraries\boost_1_59_0 -DBOOST_LIBRARYDIR=C:\Libraries\boost_1_59_0\lib32-msvc-14.0 ..
- cd ..
build:
project: BLD\qpid-cpp.sln
parallel: true
verbosity: normal

0 comments on commit 6362570

Please sign in to comment.