forked from RehanSaeed/Serilog.Exceptions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
39 lines (33 loc) · 958 Bytes
/
.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
# Travis CI documentation https://docs.travis-ci.com/
language: csharp
os:
- linux
- osx
# .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: xcode7.2
# Ensure that .NET Core is installed
dotnet: 1.0.0-preview2-003121
# 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
# You must run the following command for Travis to be able to have permissions to execute the shell script below
# git update-index --chmod=+x build.sh
script:
# Skip running tests due to tooling bug https://github.com/dotnet/cli/issues/3073
- ./build.sh --target Build