-
Notifications
You must be signed in to change notification settings - Fork 20
/
.appveyor.yml
56 lines (45 loc) · 1.07 KB
/
.appveyor.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
52
53
54
55
56
version: '{branch}-{build}'
branches:
only:
- master
skip_tags: true
skip_commits:
files:
- README.md
- CODE_OF_CONDUCT.md
- .gitignore
- .gitattributes
image:
- Visual Studio 2019
- Ubuntu1804
clone_depth: 1
cache:
- packages -> **/*.csproj
- '~/.local/share/NuGet/v3-cache'
- '~/.local/share/NuGet/Cache'
- '%LocalAppData%\NuGet\v3-cache'
- '%LocalAppData%\NuGet\Cache'
install:
- git submodule update --init --recursive
- dotnet restore
configuration: Release
build:
parallel: false
project: Uchu.sln
artifacts:
- path: Uchu.Auth/bin/${configuration}/
name: UchuAuth
- path: Uchu.Char/bin/${configuration}/
name: UchuChar
- path: Uchu.World/bin/${configuration}/
name: UchuWorld
- path: Uchu.Master/bin/${configuration}/
name: UchuMaster
- path: Uchu.Instance/bin/${configuration}/
name: UchuInstance
- path: Uchu.StandardScripts/bin/${configuration}
name: UchuStandardScripts
notifications:
- provider: Webhook
url: https://uchu-builds-webhook.herokuapp.com/webhook/appveyor
method: POST