mirror of
https://github.com/nsnail/Ocelot.git
synced 2025-04-20 19:32:51 +08:00

* Upgrade Projects * Push to trigger builds * Tried Thread Sleep before deleting file * FileDeleteTryCatch * Updated from AspnetCore All to App * Travis version Upgrade (.net core 2.2) * dotnet 2.2.105
32 lines
540 B
YAML
32 lines
540 B
YAML
language: csharp
|
|
os:
|
|
- osx
|
|
- linux
|
|
|
|
# Ubuntu 14.04
|
|
sudo: required
|
|
dist: bionic
|
|
|
|
# OS X 10.12
|
|
osx_image: xcode9.2
|
|
|
|
mono:
|
|
- 5.10.0
|
|
|
|
dotnet: 2.2.105
|
|
|
|
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
|