-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy path.travis.yml
40 lines (35 loc) · 911 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
40
language: csharp
#---------------------------------#
# Build Environment #
#---------------------------------#
matrix:
include:
- os: linux
dist: xenial
sudo: required
- os: osx
osx_image: xcode9.4
#---------------------------------#
# Environment Variables #
#---------------------------------#
env:
global:
- DOTNET_SKIP_FIRST_TIME_EXPERIENCE=1
- DOTNET_CLI_TELEMETRY_OPTOUT=1
#---------------------------------#
# Build Dependencies #
#---------------------------------#
mono: latest
dotnet: 2.1.502
#---------------------------------#
# Cake Bootstrapper #
#---------------------------------#
script:
- ./build.sh --verbosity=diagnostic -s ./recipe.cake
#---------------------------------#
# Build Cache #
#---------------------------------#
cache:
directories:
- packages
- tools