2017-01-08 10:03:04 +00:00
|
|
|
version: '0.2.0.{build}'
|
|
|
|
|
2018-08-05 14:28:05 +00:00
|
|
|
image: Visual Studio 2017
|
|
|
|
|
2017-01-08 10:03:04 +00:00
|
|
|
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
|
2018-08-05 14:28:05 +00:00
|
|
|
|
|
|
|
#init:
|
|
|
|
# - ps: iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
|
2017-01-08 10:03:04 +00:00
|
|
|
|
|
|
|
build_script:
|
|
|
|
- ps: ./build-appveyor.ps1
|
|
|
|
|
2017-08-15 18:23:02 +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'
|
2018-01-26 07:54:59 +00:00
|
|
|
- node_modules -> package.json
|
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:
|
2018-08-05 14:28:05 +00:00
|
|
|
# - ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
|
2017-04-11 17:40:13 +00:00
|
|
|
- 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/
|
2019-06-13 00:34:30 +00:00
|
|
|
- frontend/
|
2017-04-10 12:47:07 +00:00
|
|
|
- appveyor.yml
|
|
|
|
- build-appveyor.cake
|