From 674b884c7a44c12e7c305302da3224f20c33153e Mon Sep 17 00:00:00 2001 From: Nikita Popov Date: Fri, 7 May 2021 11:29:34 +0200 Subject: [PATCH] Update community, coverage and file cache jobs to Ubuntu 20.04 This fixes the issue with apt, and seems like a good idea in general. The msan job is now the only one on 18.04, but that one needs more work. --- azure/community_job.yml | 2 +- azure/coverage_job.yml | 2 +- azure/file_cache_job.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/azure/community_job.yml b/azure/community_job.yml index e8eabce6f97..db246212ed8 100644 --- a/azure/community_job.yml +++ b/azure/community_job.yml @@ -16,7 +16,7 @@ jobs: - job: ${{ parameters.configurationName }} timeoutInMinutes: ${{ parameters.timeoutInMinutes }} pool: - vmImage: 'ubuntu-18.04' + vmImage: 'ubuntu-20.04' variables: ubsan_options: 'print_stacktrace=1' steps: diff --git a/azure/coverage_job.yml b/azure/coverage_job.yml index 184ebcfafa7..20ce581fcbb 100644 --- a/azure/coverage_job.yml +++ b/azure/coverage_job.yml @@ -8,7 +8,7 @@ jobs: - job: ${{ parameters.configurationName }} timeoutInMinutes: ${{ parameters.timeoutInMinutes }} pool: - vmImage: 'ubuntu-18.04' + vmImage: 'ubuntu-20.04' steps: - template: apt.yml - script: | diff --git a/azure/file_cache_job.yml b/azure/file_cache_job.yml index 7c8b392a66b..43e431fd1f8 100644 --- a/azure/file_cache_job.yml +++ b/azure/file_cache_job.yml @@ -8,7 +8,7 @@ jobs: - job: ${{ parameters.configurationName }} timeoutInMinutes: ${{ parameters.timeoutInMinutes }} pool: - vmImage: 'ubuntu-18.04' + vmImage: 'ubuntu-20.04' steps: - template: apt.yml - template: configure.yml