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: 6a817a563ab0418c409a1279d997a8efc25aa9de (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
# Travis-CI Build for libgit2sharp
# see travis-ci.org for details

language: c

env:
 - TRAVIS_OS_UNAME=$(uname -s)

os:
 - osx
 - linux

before_install:
 - date -u
 - uname -a
 - env | sort

# Make sure CMake and Mono are installed
install:
 - if [[ $TRAVIS_OS_UNAME = 'Linux' ]]; then ./CI/travis.linux.install.deps.sh; fi
 - if [[ $TRAVIS_OS_UNAME = 'Darwin' ]]; then ./CI/travis.osx.install.deps.sh; fi

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

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

# Notify of build changes
notifications:
 email:
  - emeric.fermas@gmail.com