summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 6dfaa511eb0ad660f338c9e296509695af8143a5 (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# 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:
  global:
   # The next declaration is the encrypted COVERITY_SCAN_TOKEN, created
   #   via the "travis encrypt" command using the project repo's public key
   - secure: "gDwqo3jHj+HHGzFKnxL/nwZhbVeh2pItw0TbeaHcLtWubUZaf85ViEQRaXPyfnbG7l0OEQq+PjyhKAfvViVq2NP0lGeeu4VM5uMZJhsCLN594BJr39Y4XzOapg0O8mEMhQ0DU2u1Zo4LMgEcRz67aosVQOj6QV30tOzp9fnxn9U="
  matrix:
   - BUILD_SYSTEM=cmake
   - BUILD_SYSTEM=autotools

# Make sure CMake is installed
install:
  - sudo apt-get install cmake libpopt-dev

before_script:
  - mkdir _build
  - cd _build

# Run the Build script
script:
  - if [ ${COVERITY_SCAN_BRANCH} != 1 ]; then
      case $BUILD_SYSTEM in
        cmake)
          cmake .. -DCMAKE_INSTALL_PREFIX=`pwd`/_install &&
          cmake --build . --target install
          ;;
        autotools)
          cd .. &&
          autoreconf -i &&
          cd _build &&
          ../configure --prefix=`pwd`/_install &&
          make install
          ;;
      esac ;
    fi

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

addons:
  coverity_scan:
    project:
      name: "alanxz/rabbitmq-c"
      description: "C AMQP client for RabbitMQ"
    notification_email: alan.antonuk@gmail.com
    build_command_prepend: cmake ..
    build_command: cmake --build .
    branch_pattern: coverity_scan