mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-19 21:46:50 -04:00
Integrate AppVeyor and change assembly versioning (#50)
* 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.
This commit is contained in:
@@ -0,0 +1,38 @@
|
||||
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
|
||||
Reference in New Issue
Block a user