Files
csharp/.travis.yml

34 lines
718 B
YAML
Raw Normal View History

sudo: required
dist: trusty
# Don't do shallow clones
git:
depth: false
os:
- osx
- linux
2017-07-16 22:09:26 +02:00
language: csharp
mono: none
env:
global:
- DOTNET_SKIP_FIRST_TIME_EXPERIENCE=1
- DOTNET_CLI_TELEMETRY_OPTOUT=1
- COMPlus_UseManagedHttpClientHandler=true
# minikube-related changes
- CHANGE_MINIKUBE_NONE_USER=true
- MINIKUBE_WANTREPORTERRORPROMPT=false
- MINIKUBE_WANTUPDATENOTIFICATION=false
- KUBECONFIG=/home/travis/.kube/config
# We need the .NET Core 2.1 (preview 1) SDK to build. Travis doesn't know how to install this yet.
before_install:
- ./install-$TRAVIS_OS_NAME.sh
2017-07-16 22:09:26 +02:00
script:
2017-09-28 09:44:08 -07:00
- ./ci.sh
after_script:
- if [ "$TRAVIS_OS_NAME" = "linux" ]; then ./integration-tests.sh; fi