Skip to content

Commit 54c709f

Browse files
author
Greg Roth
authored
Update macos/linux builds to *-latest (#4815)
This updates the ADO yaml to select the latest version of the OS. In the case of MacOS, this will still be 11 for now. For Ubuntu, it will silence the warnings that we are using a deprecated version and save us the headache of having to do this again. The risk is that a new version of either OS will cause the build to break without our intervention, but the real motivation for explicit versions was an earlier impulse to support the minimal build system that is no longer a priority. As for the risk, I feel it is minimal and we can respond in a timely fashion if it should occur.
1 parent ccea7c2 commit 54c709f

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

azure-pipelines.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ stages:
4343
timeoutInMinutes: 90
4444

4545
variables:
46-
macOS: macOS-11
47-
linux: Ubuntu-18.04
46+
macOS: macOS-latest
47+
linux: Ubuntu-latest
4848

4949
strategy:
5050
matrix:
@@ -64,14 +64,14 @@ stages:
6464
Linux_Gcc_Release:
6565
image: ${{ variables.linux }}
6666
configuration: Release
67-
CC: gcc-7
68-
CXX: g++-7
67+
CC: gcc-9
68+
CXX: g++-9
6969
CXX_FLAGS:
7070
Linux_Gcc_Debug:
7171
image: ${{ variables.linux }}
7272
configuration: Debug
73-
CC: gcc-7
74-
CXX: g++-7
73+
CC: gcc-9
74+
CXX: g++-9
7575
CXX_FLAGS:
7676
MacOS_Clang_Release:
7777
image: ${{ variables.macOS }}

0 commit comments

Comments
 (0)