You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
540 B
YAML
32 lines
540 B
YAML
language: csharp
|
|
os:
|
|
- osx
|
|
- linux
|
|
|
|
# Ubuntu 14.04
|
|
sudo: required
|
|
dist: trusty
|
|
|
|
# OS X 10.12
|
|
osx_image: xcode9.2
|
|
|
|
mono:
|
|
- 5.10.0
|
|
|
|
dotnet: 2.1.500
|
|
|
|
before_install:
|
|
- git fetch --unshallow # Travis always does a shallow clone, but GitVersion needs the full history including branches and tags
|
|
- git config remote.origin.fetch "+refs/heads/*:refs/remotes/origin/*"
|
|
- git fetch origin
|
|
|
|
script:
|
|
- ./build.sh
|
|
|
|
cache:
|
|
directories:
|
|
- .packages
|
|
- tools/Addins
|
|
- tools/gitreleasemanager
|
|
- tools/GitVersion.CommandLine
|