2017-01-08 10:03:04 +00:00
|
|
|
version: '0.2.0.{build}'
|
|
|
|
|
|
|
|
assembly_info:
|
|
|
|
patch: true
|
|
|
|
file: 'src\NzbDrone.Common\Properties\SharedAssemblyInfo.cs'
|
|
|
|
assembly_version: '{version}'
|
|
|
|
assembly_file_version: '{version}'
|
|
|
|
assembly_informational_version: '{version}-rc1'
|
|
|
|
|
|
|
|
environment:
|
|
|
|
DOTNET_CLI_TELEMETRY_OPTOUT: 1
|
|
|
|
|
|
|
|
install:
|
|
|
|
- git submodule update --init --recursive
|
|
|
|
|
|
|
|
build_script:
|
|
|
|
- ps: ./build-appveyor.ps1
|
|
|
|
|
2017-03-06 21:23:25 +00:00
|
|
|
# test: off
|
|
|
|
test:
|
|
|
|
assemblies:
|
|
|
|
- '_tests\*Test.dll'
|
|
|
|
categories:
|
|
|
|
except:
|
|
|
|
- IntegrationTest
|
|
|
|
- AutomationTest
|
2017-01-08 10:03:04 +00:00
|
|
|
|
|
|
|
artifacts:
|
|
|
|
- path: '_artifacts\*.zip'
|
2017-04-12 10:23:07 +00:00
|
|
|
- path: '_artifacts\*.exe'
|
2017-01-08 10:03:04 +00:00
|
|
|
- path: '_artifacts\*.tar.gz'
|
|
|
|
|
|
|
|
cache:
|
|
|
|
- '%USERPROFILE%\.nuget\packages'
|
2017-01-11 07:57:15 +00:00
|
|
|
- node_modules
|
2017-01-13 05:15:38 +00:00
|
|
|
|
|
|
|
pull_requests:
|
|
|
|
do_not_increment_build_number: true
|
2017-01-11 07:57:15 +00:00
|
|
|
|
2017-04-11 17:40:13 +00:00
|
|
|
on_failure:
|
|
|
|
- ps: Get-ChildItem .\_artifacts\*.zip | % { Push-AppveyorArtifact $_.FullName -FileName $_.Name }
|
|
|
|
- ps: Get-ChildItem .\_artifacts\*.exe | % { Push-AppveyorArtifact $_.FullName -FileName $_.Name }
|
|
|
|
- ps: Get-ChildItem .\_artifacts\*.tar.gz | % { Push-AppveyorArtifact $_.FullName -FileName $_.Name }
|
|
|
|
|
2017-01-11 07:57:15 +00:00
|
|
|
only_commits:
|
|
|
|
files:
|
|
|
|
- src/
|
|
|
|
- osx/
|
|
|
|
- gulp/
|
|
|
|
- logo/
|
2017-04-10 13:51:36 +00:00
|
|
|
- setup/
|
2017-04-10 12:47:07 +00:00
|
|
|
- appveyor.yml
|
|
|
|
- build-appveyor.cake
|