summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 8daba29f18d6b5fb69b6ef138262ad0057e1f895 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# Travis-CI Build for rabbitmq-c
# see travis-ci.org for details

# As CMake is not officially supported we use erlang VMs
language: c

compiler:
  - gcc
  - clang

# Settings to try
env:
  - PRE_CONFIGURE=true CONFIGURE="cmake .. -DCMAKE_INSTALL_PREFIX=../_install" BUILD_INSTALL="cmake --build . --target install"
  - PRE_CONFIGURE="autoreconf -i" CONFIGURE="../configure --prefix=`pwd`/_install" BUILD_INSTALL="make install"
      
# Make sure CMake is installed
install:
 - sudo apt-get install cmake libpopt-dev

# Run the Build script
script:
 - mkdir _build
 - $PRE_CONFIGURE && cd _build && $CONFIGURE && $BUILD_INSTALL

# Run Tests
after_script:
 - if [ -f CTestTestfile.cmake ]; then ctest -V . ; fi