From 34621471957a94fb6ab15c6c8b7cd57f2aa38f64 Mon Sep 17 00:00:00 2001 From: Erwin de Haan Date: Fri, 5 Jul 2019 11:17:48 +0200 Subject: [PATCH] Switched to latest ubuntu image and hardcoded definitionId. --- .ci/azure-pipelines.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.ci/azure-pipelines.yml b/.ci/azure-pipelines.yml index 3a583b409e..8737a03226 100644 --- a/.ci/azure-pipelines.yml +++ b/.ci/azure-pipelines.yml @@ -16,7 +16,7 @@ jobs: - job: main_build displayName: Main Build pool: - vmImage: ubuntu-16.04 + vmImage: ubuntu-latest strategy: matrix: release: @@ -97,9 +97,9 @@ jobs: - job: dotnet_compat displayName: Compatibility Check pool: - vmImage: ubuntu-16.04 + vmImage: ubuntu-latest dependsOn: main_build - condition: false #and(succeeded(), variables['System.PullRequest.PullRequestNumber']) # Only execute if the pullrequest numer is defined. (So not for normal CI builds) + condition: and(succeeded(), variables['System.PullRequest.PullRequestNumber']) # Only execute if the pullrequest numer is defined. (So not for normal CI builds) strategy: matrix: Naming: @@ -122,8 +122,8 @@ jobs: displayName: Download the Reference Assembly Build Artifact inputs: buildType: 'specific' # Options: current, specific - project: '$(System.TeamProjectId)' # Required when buildType == Specific - pipeline: '$(System.DefinitionId)' # Required when buildType == Specific, not sure if this will take a name too + project: 'jellyfin' #$(System.TeamProjectId)' # Required when buildType == Specific + pipeline: 1 #'$(System.DefinitionId)' # Required when buildType == Specific, not sure if this will take a name too #specificBuildWithTriggering: false # Optional buildVersionToDownload: 'latestFromBranch' # Required when buildType == Specific# Options: latest, latestFromBranch, specific branchName: 'refs/heads/$(System.PullRequest.TargetBranch)' # Required when buildType == Specific && BuildVersionToDownload == LatestFromBranch