Welcome to mirror list, hosted at ThFree Co, Russian Federation.

.travis.yml - github.com/mono/libgit2sharp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f564a6e81173474a6942e5bb8ece7351af3c072d (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
# Travis-CI Build for libgit2sharp
# see travis-ci.org for details

language: c

# Make sure CMake and Mono are installed
install:
 - sudo apt-get install cmake mono-devel mono-gmcs

# Build libgit2, LibGit2Sharp and run the tests
script:
 - git submodule update --init
 - ./build.libgit2sharp.sh

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

# Notify development list when needed
notifications:
 recipients:
   - emeric.fermas@gmail.com
 email:
   on_success: change
   on_failure: always