-
Notifications
You must be signed in to change notification settings - Fork 1
/
.travis.yml
51 lines (43 loc) · 1.08 KB
/
.travis.yml
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
language: csharp
os:
- osx
- linux
# .NET CLI require Ubuntu 14.04
sudo: required
dist: trusty
addons:
apt:
packages:
- gettext
- libcurl4-openssl-dev
- libicu-dev
- libssl-dev
- libunwind8
- zlib1g
# .NET CLI requires OSX 10.11
osx_image: xcode8.3
# Ensure that .NET Core is installed
dotnet: 2.1.301
# dotnet: 2.1.300-preview1-008174
# sudo apt-get install apt-transport-https
# sudo apt-get update
# sudo apt-get install dotnet-sdk-2.1.300-preview2-008533
# Ensure Mono is installed
mono: latest
env:
# Set the DOTNET_SKIP_FIRST_TIME_EXPERIENCE environment variable to stop wasting time caching packages
- DOTNET_SKIP_FIRST_TIME_EXPERIENCE=true
# Disable sending usage data to Microsoft
- DOTNET_CLI_TELEMETRY_OPTOUT=true
before_install:
- git fetch --depth=1
# You must run this command to give Travis permissions to execute the build.sh shell script:
- chmod +x build.sh
script:
- ./build.sh --verbosity=diagnostic
cache:
directories:
- .packages
- tools/Addins
- tools/gitreleasemanager
- tools/GitVersion.CommandLine