mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-05 02:22:31 +01:00
d08b0ce47a
* Change tvsearch to movie. * Start working on AppVeyor. * Add builds. * MSBuild clean * Fix. * Added submodules. * Add NuGet and Build. * Restore properly. * Proper build. * Disable appveyor tests. * Ignore cakebuild tools and updated build task. * Package mono finished. * Added osx package task. * Less output, added osx package. * Shut up npm. * Actually shut up. * Added PackageTests task. * Added task CleanupWindowsPackage. * Add artifacts. * AssemblyVersion patching. * Fix appveyor path. * Is this a valid pattern? * Cache node modules. * Put in subdirectory. * Start from v0.2.0.x to have a clean start with versions. * Add tests. * Tests work but disabled for now. * Disable for real.
38 lines
689 B
YAML
38 lines
689 B
YAML
version: '0.2.0.{build}'
|
|
|
|
branches:
|
|
only:
|
|
- develop
|
|
|
|
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
|
|
|
|
test: off
|
|
# test:
|
|
# assemblies:
|
|
# - '_tests\*Test.dll'
|
|
# categories:
|
|
# except:
|
|
# - IntegrationTest
|
|
# - AutomationTest
|
|
|
|
artifacts:
|
|
- path: '_artifacts\*.zip'
|
|
- path: '_artifacts\*.tar.gz'
|
|
|
|
cache:
|
|
- '%USERPROFILE%\.nuget\packages'
|
|
- node_modules |