|
|
|
@ -15,22 +15,22 @@ trigger:
|
|
|
|
|
batch: true
|
|
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
|
- ${{ if not(or(startsWith(variables['Build.SourceBranch'], 'refs/tags'), startsWith(variables['Build.SourceBranch'], 'refs/heads/master'))) }}:
|
|
|
|
|
- template: azure-pipelines-main.yml
|
|
|
|
|
condition: ! or(startsWith(variables['Build.SourceBranch'], 'refs/tags'), startsWith(variables['Build.SourceBranch'], 'refs/heads/master'))
|
|
|
|
|
parameters:
|
|
|
|
|
LinuxImage: 'ubuntu-latest'
|
|
|
|
|
RestoreBuildProjects: $(RestoreBuildProjects)
|
|
|
|
|
|
|
|
|
|
- ${{ if not(or(startsWith(variables['Build.SourceBranch'], 'refs/tags'), startsWith(variables['Build.SourceBranch'], 'refs/heads/master'))) }}:
|
|
|
|
|
- template: azure-pipelines-test.yml
|
|
|
|
|
condition: ! or(startsWith(variables['Build.SourceBranch'], 'refs/tags'), startsWith(variables['Build.SourceBranch'], 'refs/heads/master'))
|
|
|
|
|
parameters:
|
|
|
|
|
ImageNames:
|
|
|
|
|
Linux: 'ubuntu-latest'
|
|
|
|
|
Windows: 'windows-latest'
|
|
|
|
|
macOS: 'macos-latest'
|
|
|
|
|
|
|
|
|
|
- ${{ if not(or(startsWith(variables['Build.SourceBranch'], 'refs/tags'), startsWith(variables['Build.SourceBranch'], 'refs/heads/master'))) }}:
|
|
|
|
|
- template: azure-pipelines-abi.yml
|
|
|
|
|
condition: ! or(startsWith(variables['Build.SourceBranch'], 'refs/tags'), startsWith(variables['Build.SourceBranch'], 'refs/heads/master'))
|
|
|
|
|
parameters:
|
|
|
|
|
Packages:
|
|
|
|
|
Naming:
|
|
|
|
@ -47,5 +47,5 @@ jobs:
|
|
|
|
|
AssemblyFileName: MediaBrowser.Common.dll
|
|
|
|
|
LinuxImage: 'ubuntu-latest'
|
|
|
|
|
|
|
|
|
|
- ${{ if or(startsWith(variables['Build.SourceBranch'], 'refs/tags'), startsWith(variables['Build.SourceBranch'], 'refs/heads/master')) }}:
|
|
|
|
|
- template: azure-pipelines-package.yml
|
|
|
|
|
condition: or(startsWith(variables['Build.SourceBranch'], 'refs/tags'), startsWith(variables['Build.SourceBranch'], 'refs/heads/master'))
|
|
|
|
|