diff options
author | Nikita Popov <nikita.ppv@gmail.com> | 2019-11-02 10:12:03 +0100 |
---|---|---|
committer | Nikita Popov <nikita.ppv@gmail.com> | 2019-11-02 10:12:58 +0100 |
commit | 4c717abad20473ea0fb7b71a5c442b9e4a5b719a (patch) | |
tree | 6e8ce45a2cb44819ac872e85233eece35b40ed24 /azure | |
parent | 944c1cf034541e16ad2c953d7f783e576ed17d63 (diff) | |
download | php-git-4c717abad20473ea0fb7b71a5c442b9e4a5b719a.tar.gz |
Explicitly specify ubuntu versions on azure pipelines
Use the new 18.04 for the ones where the build succeeded and the
previous 16.04 where it didn't.
Diffstat (limited to 'azure')
-rw-r--r-- | azure/community_job.yml | 2 | ||||
-rw-r--r-- | azure/coverage_job.yml | 2 | ||||
-rw-r--r-- | azure/i386/job.yml | 2 | ||||
-rw-r--r-- | azure/job.yml | 2 | ||||
-rw-r--r-- | azure/msan_job.yml | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/azure/community_job.yml b/azure/community_job.yml index 46cbdaded4..f8529826a9 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-latest' + vmImage: 'ubuntu-16.04' variables: ubsan_options: 'print_stacktrace=1' steps: diff --git a/azure/coverage_job.yml b/azure/coverage_job.yml index 06ac7f4ef3..d5720b87f8 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-latest' + vmImage: 'ubuntu-18.04' steps: - template: apt.yml - script: | diff --git a/azure/i386/job.yml b/azure/i386/job.yml index 623f7e1e29..f1508b8633 100644 --- a/azure/i386/job.yml +++ b/azure/i386/job.yml @@ -5,7 +5,7 @@ parameters: jobs: - job: ${{ parameters.configurationName }} pool: - vmImage: 'ubuntu-latest' + vmImage: 'ubuntu-16.04' steps: - template: apt.yml - script: | diff --git a/azure/job.yml b/azure/job.yml index afe1d99e80..918c107118 100644 --- a/azure/job.yml +++ b/azure/job.yml @@ -8,7 +8,7 @@ jobs: - job: ${{ parameters.configurationName }} timeoutInMinutes: ${{ parameters.timeoutInMinutes }} pool: - vmImage: 'ubuntu-latest' + vmImage: 'ubuntu-18.04' steps: - template: apt.yml - template: configure.yml diff --git a/azure/msan_job.yml b/azure/msan_job.yml index 28dcae3f88..c623f55d36 100644 --- a/azure/msan_job.yml +++ b/azure/msan_job.yml @@ -8,7 +8,7 @@ jobs: - job: ${{ parameters.configurationName }} timeoutInMinutes: ${{ parameters.timeoutInMinutes }} pool: - vmImage: 'ubuntu-latest' + vmImage: 'ubuntu-18.04' steps: - template: apt.yml - script: | |