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

# As CMake is not officially supported we use erlang VMs
5 6 7 8 9
language: c

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

# Settings to try
env:
13 14 15 16 17 18 19 20
  - OPTIONS="-DTHREADSAFE=ON -DCMAKE_BUILD_TYPE=Release"
  - OPTIONS="-DBUILD_CLAR=ON -DBUILD_EXAMPLES=ON"

matrix:
 include:
   - compiler: i586-mingw32msvc-gcc
     env: OPTIONS="-DBUILD_CLAR=OFF -DWIN32=ON -DMINGW=ON"

Peter Drahoš committed
21 22
# Make sure CMake is installed
install:
23
 - sudo apt-get install cmake valgrind
Peter Drahoš committed
24 25 26 27 28 29 30 31 32 33

# Run the Build script
script:
 - mkdir _build
 - cd _build
 - cmake .. -DCMAKE_INSTALL_PREFIX=../_install $OPTIONS
 - cmake --build . --target install

# Run Tests
after_script:
34
 - ctest -V .
35
 - if [ -f ./libgit2_clar ]; then valgrind --leak-check=full --show-reachable=yes --suppressions=../libgit2_clar.supp ./libgit2_clar -iall; else echo "Skipping valgrind"; fi
Peter Drahoš committed
36 37 38 39 40 41 42 43

# Only watch the development branch
branches:
 only:
   - development
   
# Notify development list when needed
notifications:
44 45 46 47 48
 irc:
  channels:
    - irc.freenode.net#libgit2
  on_success: change
  on_failure: always