forked from guryanovev/CrystalQuartz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
37 lines (32 loc) · 1.12 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
language: csharp
dotnet: 2.1.300
mono: 5.14.0
before_install:
- which msbuild
- curl -s -o $HOME/.nvm/nvm.sh https://raw.githubusercontent.com/creationix/nvm/v0.31.0/nvm.sh
- source $HOME/.nvm/nvm.sh
- nvm install stable
- node --version
install:
npm i -g typescript
script:
- sudo cp /usr/lib/mono/4.5/System.Configuration.dll /usr/lib/mono/4.5/System.configuration.dll
- export FrameworkPathOverride=/usr/lib/mono/4.5/
- export EnableNuGetPackageRestore="true"
- mono src/.nuget/NuGet.exe install Rosalia -ExcludeVersion -Prerelease
- mono Rosalia/tools/Rosalia.exe /workDirectory=src /task=CiBuild "CrystalQuartz.Build/CrystalQuartz.Build.csproj"
deploy:
provider: pages
skip-cleanup: true
github-token: $GITHUB_TOKEN
keep-history: true
local-dir: Artifacts/gh-pages
on:
branch: master
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/fa02e86751dcd3aedd1f
on_success: change # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: never # options: [always|never|change] default: always