forked from ADockhorn/HearthstoneAICompetition
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
38 lines (31 loc) · 895 Bytes
/
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
version: 1.0.{build}
image: Visual Studio 2017
configuration: Release
pull_requests:
do_not_increment_build_number: true
# Can't change default email notifications without providing
# e-mail addresses.
cache:
- './packages'
# Only build when the following files were changed
only_commits:
files:
- '**/*.cs'
# All script lines are by default interpreted as batch
before_build:
- REM Restore packages for all projects within solution
- nuget.exe restore
build:
project: SabberStone.sln
parallel: true
verbosity: minimal
# All script lines are by default interpreted as batch
test_script:
- REM Run the test project (.NET Core)
- cd ./SabberStoneCoreTest
- dotnet xunit -fxversion 2.0.5
artifacts:
- path: SabberStoneCore\bin\**\Release\**\SabberStoneCore.xml
name: SabberStoneCore doc
- path: SabberStoneCore\bin\**\Release\**\*.dll
name: SabberStoneCore libs