From 5b53d1b20ce1a3ea1631c6aa08c6eb7ac8cafd08 Mon Sep 17 00:00:00 2001 From: Adrien Ferrand Date: Sun, 10 Oct 2021 17:33:27 +0200 Subject: [PATCH] Use ubuntu 20.04 to build --- .azure-pipelines/templates/integration-jobs.yml | 4 ++-- .azure-pipelines/templates/release-jobs.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.azure-pipelines/templates/integration-jobs.yml b/.azure-pipelines/templates/integration-jobs.yml index 368d43a..ffe630d 100644 --- a/.azure-pipelines/templates/integration-jobs.yml +++ b/.azure-pipelines/templates/integration-jobs.yml @@ -19,7 +19,7 @@ jobs: - job: unit_tests dependsOn: build pool: - vmImage: ubuntu-18.04 + vmImage: ubuntu-20.04 steps: - task: DownloadPipelineArtifact@2 inputs: @@ -36,7 +36,7 @@ jobs: - job: integration_tests dependsOn: build pool: - vmImage: ubuntu-18.04 + vmImage: ubuntu-20.04 steps: - task: DownloadPipelineArtifact@2 inputs: diff --git a/.azure-pipelines/templates/release-jobs.yml b/.azure-pipelines/templates/release-jobs.yml index 431d3fc..77c9341 100644 --- a/.azure-pipelines/templates/release-jobs.yml +++ b/.azure-pipelines/templates/release-jobs.yml @@ -1,7 +1,7 @@ jobs: - job: docker pool: - vmImage: ubuntu-18.04 + vmImage: ubuntu-20.04 steps: - task: Docker@2 inputs: @@ -18,7 +18,7 @@ jobs: displayName: Tag and push Docker images to DockerHub - job: github pool: - vmImage: ubuntu-18.04 + vmImage: ubuntu-20.04 dependsOn: docker steps: - task: UsePythonVersion@0