.travis.yml 1.49 KB
Newer Older
Peter Drahoš committed
1 2 3
# Travis-CI Build for libgit2
# see travis-ci.org for details

4 5 6 7 8
language: c

compiler:
  - gcc
  - clang
Peter Drahoš committed
9 10 11

# Settings to try
env:
Ben Straub committed
12 13 14
 global:
  - secure: "YnhS+8n6B+uoyaYfaJ3Lei7cSJqHDPiKJCKFIF2c87YDfmCvAJke8QtE7IzjYDs7UFkTCM4ox+ph2bERUrxZbSCyEkHdjIZpKuMJfYWja/jgMqTMxdyOH9y8JLFbZsSXDIXDwqBlC6vVyl1fP90M35wuWcNTs6tctfVWVofEFbs="
 matrix:
15 16 17 18
  - OPTIONS="-DTHREADSAFE=ON -DCMAKE_BUILD_TYPE=Release"
  - OPTIONS="-DBUILD_CLAR=ON -DBUILD_EXAMPLES=ON"

matrix:
Ben Straub committed
19
 fast_finish: true
20 21
 include:
   - compiler: i586-mingw32msvc-gcc
22
     env: OPTIONS="-DBUILD_CLAR=OFF -DWIN32=ON -DMINGW=ON -DUSE_SSH=OFF"
Ben Straub committed
23 24 25 26
   - compiler: gcc
     env: COVERITY=1
 allow_failures:
   - env: COVERITY=1
27

Peter Drahoš committed
28
install:
29 30
 - sudo apt-get -qq update
 - sudo apt-get -qq install cmake libssh2-1-dev openssh-client openssh-server
Peter Drahoš committed
31

32
# Run the Build script and tests
Peter Drahoš committed
33
script:
34
 - script/cibuild.sh
Peter Drahoš committed
35 36

# Run Tests
37
after_success:
38
 - sudo apt-get -qq install valgrind
39
 - valgrind --leak-check=full --show-reachable=yes --suppressions=./libgit2_clar.supp _build/libgit2_clar -ionline
Peter Drahoš committed
40 41 42 43 44

# Only watch the development branch
branches:
 only:
   - development
45

Peter Drahoš committed
46 47
# Notify development list when needed
notifications:
48 49 50 51 52
 irc:
  channels:
    - irc.freenode.net#libgit2
  on_success: change
  on_failure: always
53 54
  use_notice: true
  skip_join: true
55
 campfire:
Vicent Marti committed
56 57 58
  on_success: always
  on_failure: always
  rooms:
Vicent Marti committed
59
   - secure: "sH0dpPWMirbEe7AvLddZ2yOp8rzHalGmv0bYL/LIhVw3JDI589HCYckeLMSB\n3e/FeXw4bn0EqXWEXijVa4ijbilVY6d8oprdqMdWHEodng4KvY5vID3iZSGT\nxylhahO1XHmRynKQLOAvxlc93IlpVW38vQfby8giIY1nkpspb2w="