forked from Handlebars-Net/Handlebars.Net
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
34 lines (29 loc) · 1.36 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
language: csharp
mono: none
dotnet: 2.0.0
dist: trusty
sudo: required
addons:
apt:
sources:
- sourceline: 'deb [arch=amd64] https://packages.microsoft.com/repos/microsoft-ubuntu-trusty-prod trusty main'
key_url: 'https://packages.microsoft.com/keys/microsoft.asc'
packages:
- dotnet-hostfxr-1.0.1
- dotnet-sharedframework-microsoft.netcore.app-1.1.2
env:
- DOTNET_SKIP_FIRST_TIME_EXPERIENCE=true
script:
- dotnet --info
- dotnet restore source
- dotnet build source/Handlebars/Handlebars.csproj --configuration Debug --framework netstandard1.3
- dotnet build source/Handlebars/Handlebars.csproj --configuration Release --framework netstandard1.3
- dotnet build source/Handlebars/Handlebars.csproj --configuration Debug --framework netstandard2.0
- dotnet build source/Handlebars/Handlebars.csproj --configuration Release --framework netstandard2.0
- dotnet test source/Handlebars.Test/Handlebars.Test.csproj --configuration Debug --framework netcoreapp1.1
- dotnet test source/Handlebars.Test/Handlebars.Test.csproj --configuration Release --framework netcoreapp1.1
- dotnet test source/Handlebars.Test/Handlebars.Test.csproj --configuration Debug --framework netcoreapp2.0
- dotnet test source/Handlebars.Test/Handlebars.Test.csproj --configuration Release --framework netcoreapp2.0
notifications:
email: