2019-02-19 02:16:17 +00:00
name : $(Date:yyyyMMdd)$(Rev:.r)
2019-02-18 22:47:31 +00:00
variables :
2019-02-19 01:17:57 +00:00
- name : TestProjects
2019-09-18 15:43:02 +00:00
value : 'tests/Jellyfin.Common.Tests/Jellyfin.Common.Tests.csproj'
2019-02-19 01:17:57 +00:00
- name : RestoreBuildProjects
value : 'Jellyfin.Server/Jellyfin.Server.csproj'
2019-02-18 22:47:31 +00:00
2019-02-18 21:36:24 +00:00
pr :
2019-02-18 22:42:24 +00:00
autoCancel : true
trigger :
batch : true
2019-02-18 21:26:40 +00:00
2019-02-18 22:24:39 +00:00
jobs :
2019-02-19 01:17:57 +00:00
- job : main_build
displayName : Main Build
pool :
2019-07-05 09:17:48 +00:00
vmImage : ubuntu-latest
2019-02-19 01:17:57 +00:00
strategy :
matrix :
2020-01-05 07:01:42 +00:00
Release :
2019-02-19 01:17:57 +00:00
BuildConfiguration : Release
2020-01-05 07:01:42 +00:00
Debug :
2019-02-19 01:50:25 +00:00
BuildConfiguration : Debug
2019-02-19 02:16:17 +00:00
maxParallel : 2
2019-02-18 22:47:31 +00:00
steps :
- checkout : self
2019-02-26 23:53:16 +00:00
clean : true
2019-02-18 22:47:31 +00:00
submodules : true
2019-09-17 14:23:27 +00:00
persistCredentials : true
- task : CmdLine@2
2019-09-24 14:32:57 +00:00
displayName : "Check out web"
2019-09-17 14:45:18 +00:00
condition : and(succeeded(), or(contains(variables['Build.SourceBranch'], 'release'), contains(variables['Build.SourceBranch'], 'master')) ,eq(variables['BuildConfiguration'], 'Release'), in(variables['Build.Reason'], 'IndividualCI', 'BatchedCI', 'BuildCompletion'))
2019-09-17 14:23:27 +00:00
inputs :
2019-09-29 21:46:09 +00:00
script : 'git clone --single-branch --branch $(Build.SourceBranchName) --depth=1 https://github.com/jellyfin/jellyfin-web.git $(Agent.TempDirectory)/jellyfin-web'
2019-09-17 14:40:11 +00:00
- task : CmdLine@2
2019-09-24 14:32:57 +00:00
displayName : "Check out web (PR)"
2019-09-17 14:45:18 +00:00
condition : and(succeeded(), or(contains(variables['System.PullRequest.TargetBranch'], 'release'), contains(variables['System.PullRequest.TargetBranch'], 'master')) ,eq(variables['BuildConfiguration'], 'Release'), in(variables['Build.Reason'], 'PullRequest'))
2019-09-17 14:40:11 +00:00
inputs :
2019-09-24 14:32:57 +00:00
script : 'git clone --single-branch --branch $(System.PullRequest.TargetBranch) --depth 1 https://github.com/jellyfin/jellyfin-web.git $(Agent.TempDirectory)/jellyfin-web'
- task : NodeTool@0
displayName : 'Install Node.js'
condition : and(succeeded(), or(contains(variables['System.PullRequest.TargetBranch'], 'release'), contains(variables['System.PullRequest.TargetBranch'], 'master'), contains(variables['Build.SourceBranch'], 'release'), contains(variables['Build.SourceBranch'], 'master')) ,eq(variables['BuildConfiguration'], 'Release'), in(variables['Build.Reason'], 'PullRequest', 'IndividualCI', 'BatchedCI', 'BuildCompletion'))
inputs :
versionSpec : '10.x'
- task : CmdLine@2
displayName : "Build Web UI"
condition : and(succeeded(), or(contains(variables['System.PullRequest.TargetBranch'], 'release'), contains(variables['System.PullRequest.TargetBranch'], 'master'), contains(variables['Build.SourceBranch'], 'release'), contains(variables['Build.SourceBranch'], 'master')) ,eq(variables['BuildConfiguration'], 'Release'), in(variables['Build.Reason'], 'PullRequest', 'IndividualCI', 'BatchedCI', 'BuildCompletion'))
inputs :
script : yarn install
workingDirectory : $(Agent.TempDirectory)/jellyfin-web
- task : CopyFiles@2
displayName : Copy the web UI
2019-09-24 14:38:51 +00:00
condition : and(succeeded(), or(contains(variables['System.PullRequest.TargetBranch'], 'release'), contains(variables['System.PullRequest.TargetBranch'], 'master'), contains(variables['Build.SourceBranch'], 'release'), contains(variables['Build.SourceBranch'], 'master')) ,eq(variables['BuildConfiguration'], 'Release'), in(variables['Build.Reason'], 'PullRequest', 'IndividualCI', 'BatchedCI', 'BuildCompletion'))
2019-09-24 14:32:57 +00:00
inputs :
sourceFolder : $(Agent.TempDirectory)/jellyfin-web/dist # Optional
contents : '**'
targetFolder : $(Build.SourcesDirectory)/MediaBrowser.WebDashboard/jellyfin-web
cleanTargetFolder : true # Optional
overWrite : true # Optional
flattenFolders : false # Optional
2019-02-18 22:42:24 +00:00
2020-01-05 06:59:31 +00:00
- task : UseDotNet@2
displayName : Use Correct DotNet Version
inputs :
packageType : sdk
version : 3.1 .100
2019-02-18 22:47:31 +00:00
- task : DotNetCoreCLI@2
displayName : Publish
inputs :
command : publish
publishWebProjects : false
projects : '$(RestoreBuildProjects)'
arguments : '--configuration $(BuildConfiguration) --output $(build.artifactstagingdirectory)'
2019-02-19 01:55:10 +00:00
zipAfterPublish : false
2019-02-18 21:26:40 +00:00
2019-07-05 10:02:35 +00:00
- task : PublishPipelineArtifact@0
2019-02-19 01:17:57 +00:00
displayName : 'Publish Artifact Naming'
2019-03-13 20:09:08 +00:00
condition : and(eq(variables['BuildConfiguration'], 'Release'), succeeded())
2019-02-19 01:17:57 +00:00
inputs :
2019-07-05 10:02:35 +00:00
targetPath : '$(build.artifactstagingdirectory)/Jellyfin.Server/Emby.Naming.dll'
2019-02-19 01:17:57 +00:00
artifactName : 'Jellyfin.Naming'
2019-07-05 10:02:35 +00:00
- task : PublishPipelineArtifact@0
2019-02-19 01:17:57 +00:00
displayName : 'Publish Artifact Controller'
2019-03-13 20:09:08 +00:00
condition : and(eq(variables['BuildConfiguration'], 'Release'), succeeded())
2019-02-19 01:17:57 +00:00
inputs :
2019-07-05 10:02:35 +00:00
targetPath : '$(build.artifactstagingdirectory)/Jellyfin.Server/MediaBrowser.Controller.dll'
2019-02-19 01:17:57 +00:00
artifactName : 'Jellyfin.Controller'
2019-07-05 10:02:35 +00:00
- task : PublishPipelineArtifact@0
2019-02-19 01:17:57 +00:00
displayName : 'Publish Artifact Model'
2019-03-13 20:09:08 +00:00
condition : and(eq(variables['BuildConfiguration'], 'Release'), succeeded())
2019-02-19 01:17:57 +00:00
inputs :
2019-07-05 10:02:35 +00:00
targetPath : '$(build.artifactstagingdirectory)/Jellyfin.Server/MediaBrowser.Model.dll'
2019-02-19 01:17:57 +00:00
artifactName : 'Jellyfin.Model'
2019-07-05 10:02:35 +00:00
- task : PublishPipelineArtifact@0
2019-02-19 01:17:57 +00:00
displayName : 'Publish Artifact Common'
2019-03-13 20:09:08 +00:00
condition : and(eq(variables['BuildConfiguration'], 'Release'), succeeded())
2019-02-19 01:17:57 +00:00
inputs :
2019-07-05 10:02:35 +00:00
targetPath : '$(build.artifactstagingdirectory)/Jellyfin.Server/MediaBrowser.Common.dll'
2019-02-19 01:17:57 +00:00
artifactName : 'Jellyfin.Common'
2019-09-18 15:43:02 +00:00
- job : main_test
displayName : Main Test
pool :
vmImage : windows-latest
steps :
- checkout : self
clean : true
submodules : true
persistCredentials : false
- task : DotNetCoreCLI@2
displayName : Build
inputs :
command : build
publishWebProjects : false
projects : '$(TestProjects)'
arguments : '--configuration $(BuildConfiguration)'
zipAfterPublish : false
- task : VisualStudioTestPlatformInstaller@1
inputs :
packageFeedSelector: 'nugetOrg' # Options : nugetOrg, customFeed, netShare
versionSelector: 'latestPreRelease' # Required when packageFeedSelector == NugetOrg || PackageFeedSelector == CustomFeed# Options : latestPreRelease, latestStable, specificVersion
- task : VSTest@2
inputs :
testSelector: 'testAssemblies' # Options : testAssemblies, testPlan, testRun
testAssemblyVer2 : | # Required when testSelector == TestAssemblies
**\bin\$(BuildConfiguration)\**\*test*.dll
!**\obj\**
!**\xunit.runner.visualstudio.testadapter.dll
!**\xunit.runner.visualstudio.dotnetcore.testadapter.dll
searchFolder : '$(System.DefaultWorkingDirectory)'
runInParallel : True # Optional
runTestsInIsolation : True # Optional
codeCoverageEnabled : True # Optional
configuration : 'Debug' # Optional
publishRunAttachments : true # Optional
2019-09-09 21:40:51 +00:00
- job : main_build_win
2020-01-05 07:01:42 +00:00
displayName : Publish Windows
2019-09-09 21:40:51 +00:00
pool :
vmImage : windows-latest
strategy :
matrix :
2020-01-05 07:01:42 +00:00
Release :
2019-09-09 21:40:51 +00:00
BuildConfiguration : Release
maxParallel : 2
steps :
- checkout : self
clean : true
submodules : true
2019-09-17 14:23:27 +00:00
persistCredentials : true
- task : CmdLine@2
2019-11-24 22:01:18 +00:00
displayName : "Check out web (master, release or tag)"
condition : and(succeeded(), or(contains(variables['Build.SourceBranch'], 'release'), contains(variables['Build.SourceBranch'], 'master'), contains(variables['Build.SourceBranch'], 'tag')) ,eq(variables['BuildConfiguration'], 'Release'), in(variables['Build.Reason'], 'IndividualCI', 'BatchedCI', 'BuildCompletion'))
2019-09-17 14:40:11 +00:00
inputs :
2019-09-29 21:46:09 +00:00
script : 'git clone --single-branch --branch $(Build.SourceBranchName) --depth=1 https://github.com/jellyfin/jellyfin-web.git $(Agent.TempDirectory)/jellyfin-web'
2019-09-17 14:40:11 +00:00
- task : CmdLine@2
2019-09-24 14:22:26 +00:00
displayName : "Check out web (PR)"
2019-09-17 14:45:18 +00:00
condition : and(succeeded(), or(contains(variables['System.PullRequest.TargetBranch'], 'release'), contains(variables['System.PullRequest.TargetBranch'], 'master')) ,eq(variables['BuildConfiguration'], 'Release'), in(variables['Build.Reason'], 'PullRequest'))
2019-09-17 14:23:27 +00:00
inputs :
2019-09-24 14:22:26 +00:00
script : 'git clone --single-branch --branch $(System.PullRequest.TargetBranch) --depth 1 https://github.com/jellyfin/jellyfin-web.git $(Agent.TempDirectory)/jellyfin-web'
- task : NodeTool@0
displayName : 'Install Node.js'
condition : and(succeeded(), or(contains(variables['System.PullRequest.TargetBranch'], 'release'), contains(variables['System.PullRequest.TargetBranch'], 'master'), contains(variables['Build.SourceBranch'], 'release'), contains(variables['Build.SourceBranch'], 'master')) ,eq(variables['BuildConfiguration'], 'Release'), in(variables['Build.Reason'], 'PullRequest', 'IndividualCI', 'BatchedCI', 'BuildCompletion'))
inputs :
versionSpec : '10.x'
- task : CmdLine@2
displayName : "Build Web UI"
condition : and(succeeded(), or(contains(variables['System.PullRequest.TargetBranch'], 'release'), contains(variables['System.PullRequest.TargetBranch'], 'master'), contains(variables['Build.SourceBranch'], 'release'), contains(variables['Build.SourceBranch'], 'master')) ,eq(variables['BuildConfiguration'], 'Release'), in(variables['Build.Reason'], 'PullRequest', 'IndividualCI', 'BatchedCI', 'BuildCompletion'))
inputs :
script : yarn install
workingDirectory : $(Agent.TempDirectory)/jellyfin-web
- task : CopyFiles@2
displayName : Copy the web UI
2019-09-24 14:38:51 +00:00
condition : and(succeeded(), or(contains(variables['System.PullRequest.TargetBranch'], 'release'), contains(variables['System.PullRequest.TargetBranch'], 'master'), contains(variables['Build.SourceBranch'], 'release'), contains(variables['Build.SourceBranch'], 'master')) ,eq(variables['BuildConfiguration'], 'Release'), in(variables['Build.Reason'], 'PullRequest', 'IndividualCI', 'BatchedCI', 'BuildCompletion'))
2019-09-24 14:22:26 +00:00
inputs :
sourceFolder : $(Agent.TempDirectory)/jellyfin-web/dist # Optional
contents : '**'
targetFolder : $(Build.SourcesDirectory)/MediaBrowser.WebDashboard/jellyfin-web
cleanTargetFolder : true # Optional
overWrite : true # Optional
flattenFolders : false # Optional
2019-09-09 21:40:51 +00:00
- task : CmdLine@2
displayName : Clone the UX repository
inputs :
script : git clone --depth=1 https://github.com/jellyfin/jellyfin-ux $(Agent.TempDirectory)\jellyfin-ux
- task : PowerShell@2
displayName : Build the NSIS Installer
inputs :
targetType: 'filePath' # Optional. Options : filePath, inline
filePath : ./deployment/windows/build-jellyfin.ps1 # Required when targetType == FilePath
2019-10-30 22:16:31 +00:00
arguments : -InstallFFMPEG -InstallNSSM -MakeNSIS -InstallTrayApp -UXLocation $(Agent.TempDirectory)\jellyfin-ux -InstallLocation $(build.artifactstagingdirectory)
2019-09-09 21:40:51 +00:00
errorActionPreference: 'stop' # Optional. Options : stop, continue, silentlyContinue
workingDirectory : $(Build.SourcesDirectory) # Optional
- task : CopyFiles@2
displayName : Copy the NSIS Installer to the artifact directory
inputs :
sourceFolder : $(Build.SourcesDirectory)/deployment/windows/ # Optional
contents : 'jellyfin*.exe'
2019-09-24 14:32:57 +00:00
targetFolder : $(System.ArtifactsDirectory)/setup
2019-09-09 21:40:51 +00:00
cleanTargetFolder : true # Optional
overWrite : true # Optional
flattenFolders : true # Optional
- task : PublishPipelineArtifact@0
displayName : 'Publish Setup Artifact'
condition : and(eq(variables['BuildConfiguration'], 'Release'), succeeded())
inputs :
targetPath : '$(build.artifactstagingdirectory)/setup'
artifactName : 'Jellyfin Server Setup'
2019-02-19 01:17:57 +00:00
- job : dotnet_compat
displayName : Compatibility Check
pool :
2019-07-05 09:17:48 +00:00
vmImage : ubuntu-latest
2019-02-19 01:17:57 +00:00
dependsOn : main_build
2019-07-05 09:17:48 +00:00
condition : and(succeeded(), variables['System.PullRequest.PullRequestNumber']) # Only execute if the pullrequest numer is defined. (So not for normal CI builds)
2019-02-19 01:17:57 +00:00
strategy :
matrix :
Naming :
NugetPackageName : Jellyfin.Naming
2019-02-19 01:28:16 +00:00
AssemblyFileName : Emby.Naming.dll
2019-02-19 01:17:57 +00:00
Controller :
NugetPackageName : Jellyfin.Controller
2019-02-19 01:28:16 +00:00
AssemblyFileName : MediaBrowser.Controller.dll
2019-02-19 01:17:57 +00:00
Model :
NugetPackageName : Jellyfin.Model
2019-02-19 01:28:16 +00:00
AssemblyFileName : MediaBrowser.Model.dll
2019-02-19 01:17:57 +00:00
Common :
NugetPackageName : Jellyfin.Common
2019-02-19 01:28:16 +00:00
AssemblyFileName : MediaBrowser.Common.dll
2019-02-19 02:16:17 +00:00
maxParallel : 2
2019-02-19 01:17:57 +00:00
steps :
- checkout : none
2019-07-05 10:02:35 +00:00
- task : DownloadPipelineArtifact@2
2019-07-05 10:10:57 +00:00
displayName : Download the New Assembly Build Artifact
2019-02-19 01:17:57 +00:00
inputs :
2019-07-05 10:10:57 +00:00
source: 'current' # Options : current, specific
2019-07-05 10:02:35 +00:00
artifact : '$(NugetPackageName)' # Optional
2019-07-05 10:10:57 +00:00
path : '$(System.ArtifactsDirectory)/new-artifacts'
runVersion: 'latest' # Required when source == Specific. Options : latest, latestFromBranch, specific
2019-02-19 01:17:57 +00:00
- task : CopyFiles@2
2019-07-05 11:03:34 +00:00
displayName : Copy New Assembly to new-release folder
2019-02-19 01:17:57 +00:00
inputs :
2019-07-05 10:10:57 +00:00
sourceFolder : $(System.ArtifactsDirectory)/new-artifacts # Optional
2019-02-19 01:17:57 +00:00
contents : '**/*.dll'
2019-07-05 10:10:57 +00:00
targetFolder : $(System.ArtifactsDirectory)/new-release
2019-02-19 01:17:57 +00:00
cleanTargetFolder : true # Optional
overWrite : true # Optional
2019-07-05 10:10:57 +00:00
flattenFolders : true # Optional
2019-02-19 01:17:57 +00:00
2019-07-05 10:02:35 +00:00
- task : DownloadPipelineArtifact@2
2019-07-05 10:10:57 +00:00
displayName : Download the Reference Assembly Build Artifact
2019-02-19 01:17:57 +00:00
inputs :
2019-07-05 10:10:57 +00:00
source: 'specific' # Options : current, specific
2019-07-05 10:02:35 +00:00
artifact : '$(NugetPackageName)' # Optional
2019-07-05 10:10:57 +00:00
path : '$(System.ArtifactsDirectory)/current-artifacts'
project : '$(System.TeamProjectId)' # Required when source == Specific
pipeline : '$(System.DefinitionId)' # Required when source == Specific
runVersion: 'latestFromBranch' # Required when source == Specific. Options : latest, latestFromBranch, specific
runBranch : 'refs/heads/$(System.PullRequest.TargetBranch)' # Required when source == Specific && runVersion == LatestFromBranch
2019-02-19 01:59:56 +00:00
- task : CopyFiles@2
2019-07-05 11:03:34 +00:00
displayName : Copy Reference Assembly to current-release folder
2019-02-19 01:59:56 +00:00
inputs :
2019-07-05 10:10:57 +00:00
sourceFolder : $(System.ArtifactsDirectory)/current-artifacts # Optional
2019-02-19 01:59:56 +00:00
contents : '**/*.dll'
2019-07-05 10:10:57 +00:00
targetFolder : $(System.ArtifactsDirectory)/current-release
2019-02-19 01:59:56 +00:00
cleanTargetFolder : true # Optional
overWrite : true # Optional
flattenFolders : true # Optional
2019-02-19 01:17:57 +00:00
2019-03-07 21:00:28 +00:00
- task : DownloadGitHubRelease@0
2019-02-19 01:17:57 +00:00
displayName : Download ABI compatibility check tool from GitHub
inputs :
2019-07-06 22:20:37 +00:00
connection : Jellyfin Release Download
2019-02-19 01:17:57 +00:00
userRepository : EraYaN/dotnet-compatibility
defaultVersionType: 'latest' # Options : latest, specificVersion, specificTag
itemPattern : '**-ci.zip' # Optional
downloadPath : '$(System.ArtifactsDirectory)'
- task : ExtractFiles@1
displayName : Extract ABI compatibility check tool
inputs :
2019-02-19 02:07:44 +00:00
archiveFilePatterns : '$(System.ArtifactsDirectory)/*-ci.zip'
2019-02-19 01:28:16 +00:00
destinationFolder : $(System.ArtifactsDirectory)/tools
2019-02-19 01:17:57 +00:00
cleanDestinationFolder : true
2019-02-19 01:28:16 +00:00
- task : CmdLine@2
displayName : Execute ABI compatibility check tool
inputs :
2019-07-28 19:01:18 +00:00
script : 'dotnet tools/CompatibilityCheckerCoreCLI.dll current-release/$(AssemblyFileName) new-release/$(AssemblyFileName) --azure-pipelines'
2020-01-05 07:08:19 +00:00
workingDirectory : $(System.ArtifactsDirectory)