Skip to content

Commit 4c717ab

Browse files
committed
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.
1 parent 944c1cf commit 4c717ab

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

azure/community_job.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- job: ${{ parameters.configurationName }}
1717
timeoutInMinutes: ${{ parameters.timeoutInMinutes }}
1818
pool:
19-
vmImage: 'ubuntu-latest'
19+
vmImage: 'ubuntu-16.04'
2020
variables:
2121
ubsan_options: 'print_stacktrace=1'
2222
steps:

azure/coverage_job.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
- job: ${{ parameters.configurationName }}
99
timeoutInMinutes: ${{ parameters.timeoutInMinutes }}
1010
pool:
11-
vmImage: 'ubuntu-latest'
11+
vmImage: 'ubuntu-18.04'
1212
steps:
1313
- template: apt.yml
1414
- script: |

azure/i386/job.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ parameters:
55
jobs:
66
- job: ${{ parameters.configurationName }}
77
pool:
8-
vmImage: 'ubuntu-latest'
8+
vmImage: 'ubuntu-16.04'
99
steps:
1010
- template: apt.yml
1111
- script: |

azure/job.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
- job: ${{ parameters.configurationName }}
99
timeoutInMinutes: ${{ parameters.timeoutInMinutes }}
1010
pool:
11-
vmImage: 'ubuntu-latest'
11+
vmImage: 'ubuntu-18.04'
1212
steps:
1313
- template: apt.yml
1414
- template: configure.yml

azure/msan_job.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
- job: ${{ parameters.configurationName }}
99
timeoutInMinutes: ${{ parameters.timeoutInMinutes }}
1010
pool:
11-
vmImage: 'ubuntu-latest'
11+
vmImage: 'ubuntu-18.04'
1212
steps:
1313
- template: apt.yml
1414
- script: |

0 commit comments

Comments
 (0)