diff options
| author | Erwin de Haan <EraYaN@users.noreply.github.com> | 2019-07-05 11:17:48 +0200 |
|---|---|---|
| committer | Erwin de Haan <EraYaN@users.noreply.github.com> | 2019-07-05 11:17:48 +0200 |
| commit | 34621471957a94fb6ab15c6c8b7cd57f2aa38f64 (patch) | |
| tree | 85f9d8cdd9e00004784e38fcd080afd8403d24ec | |
| parent | 268fe5efe8cd677d7637162e400f349f35aae181 (diff) | |
Switched to latest ubuntu image and hardcoded definitionId.
| -rw-r--r-- | .ci/azure-pipelines.yml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/.ci/azure-pipelines.yml b/.ci/azure-pipelines.yml index 3a583b409..8737a0322 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 |
