forked from reportunit/reportunit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappveyor.yml
45 lines (37 loc) · 1.01 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
version: 0.2.{build}
pull_requests:
do_not_increment_build_number: true
assembly_info:
patch: true
file: '**\AssemblyInfo.*'
assembly_version: '{version}'
assembly_file_version: '{version}'
assembly_informational_version: '{version}'
skip_tags: true
test: off
before_build:
- nuget restore
platform:
- Any CPU
configuration:
- Release
build:
project: ReportUnit.sln
parallel: true
verbosity: quiet
after_build:
- nunit3-console .\ReportUnitTest\bin\Release\ReportUnitTest.dll --result=ReportUnitTestResults.xml;format=AppVeyor
artifacts:
- path: ReportUnit\bin\ReportUnit.exe
name: ReportUnitBinary
deploy:
- provider: GitHub
tag: latest-build
release: reportunit-latest-build
description: 'This release is a result of CI run after a repo change (commit). Might contain a not working version of the executable.'
auth_token:
secure: aF0fLLmz97WNRikUBXRnLxJVJIn7sb7+h0uUH21d4S6zdAB0lfv3JGE5xPbcmUl6
artifact: ReportUnitBinary
draft: false
prerelease: true
force_update: true