Lidarr/appveyor.yml

61 lines
1.7 KiB
YAML
Raw Normal View History

2018-12-01 20:26:37 +00:00
version: '0.5.0.{build}'
2017-05-07 21:17:34 +00:00
image: Visual Studio 2017
2018-01-28 08:08:31 +00:00
2017-05-07 21:17:34 +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
2018-09-19 00:49:25 +00:00
nodejs_version: "8"
2017-05-07 21:17:34 +00:00
install:
- git submodule update --init --recursive
2018-01-24 04:45:40 +00:00
- ps: Install-Product node $env:nodejs_version
2017-05-07 21:17:34 +00:00
build_script:
- C:\msys64\usr\bin\bash -lc "cd \"$APPVEYOR_BUILD_FOLDER\" && exec ./build.sh
after_build:
- C:\msys64\usr\bin\bash -lc "cd \"$APPVEYOR_BUILD_FOLDER\" && exec ./appveyor-package.sh
- 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 }
test_script:
- node --version
- yarn --version
- C:\msys64\usr\bin\bash -lc "cd \"$APPVEYOR_BUILD_FOLDER\" && exec ./test.sh Windows Unit
2017-05-07 21:17:34 +00:00
cache:
- '%USERPROFILE%\.nuget\packages'
- node_modules -> package.json
2017-05-07 21:17:34 +00:00
pull_requests:
do_not_increment_build_number: true
skip_branch_with_pr: true
2017-05-07 21:17:34 +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 }
only_commits:
files:
- src/
- osx/
- gulp/
- logo/
- setup/
2018-01-28 08:08:31 +00:00
- frontend/
2017-05-07 21:17:34 +00:00
- appveyor.yml
- build.sh
- test.sh
- package.json
- appveyor-package.sh