-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
39 lines (31 loc) · 1.02 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
version: 0.0.{build}
configuration: Release
image: Visual Studio 2017 RC
environment:
packageVersion: 0.0
cache:
- packages -> **\packages.config
init:
- cmd: git config --global core.autocrlf true
- ps: $env:buildVersion = "$env:packageVersion.$env:appveyor_build_number"
- ps: $env:nugetVersion = "$env:packageVersion-alpha$env:appveyor_build_number"
- ps: Update-AppveyorBuild -Version $env:buildVersion
assembly_info:
patch: true
file: '**\AssemblyInfo.*'
assembly_version: '$(buildVersion)'
assembly_file_version: '$(buildVersion)'
assembly_informational_version: '$(nugetVersion)'
nuget:
account_feed: false
project_feed: false
before_build:
- cmd: nuget restore CodeJam.Dogfooding.PerfTests.sln
build:
project: CodeJam.Dogfooding.PerfTests.sln
publish_nuget: false
verbosity: minimal
# artifacts for perftests
on_finish:
- ps: Get-ChildItem *.csv -r | % { Push-AppveyorArtifact $_.FullName -FileName $_.Name }
- ps: Get-ChildItem *.PerfTests.log -r | % { Push-AppveyorArtifact $_.FullName -FileName $_.Name }