mirror of
https://github.com/nsnail/Ocelot.git
synced 2025-04-21 00:02:50 +08:00

* upgraded packages to netcoreapp2.1 Ocelot is still netstandard2.0 * try get latest sdk travis * try get specific sdk travis
31 lines
538 B
YAML
31 lines
538 B
YAML
language: csharp
|
|
os:
|
|
- osx
|
|
- linux
|
|
|
|
# Ubuntu 14.04
|
|
sudo: required
|
|
dist: trusty
|
|
|
|
# OS X 10.12
|
|
osx_image: xcode9.2
|
|
|
|
mono:
|
|
- 4.4.2
|
|
|
|
dotnet: 2.1.301
|
|
|
|
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 |