From 822a17acf87167064d892cb860526752341da2ed Mon Sep 17 00:00:00 2001 From: Andrew Arnott Date: Fri, 4 Oct 2024 05:43:43 -0600 Subject: [PATCH 1/2] Fix linux agent on AzDO --- azure-pipelines/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines/build.yml b/azure-pipelines/build.yml index 2384952..dbf81b7 100644 --- a/azure-pipelines/build.yml +++ b/azure-pipelines/build.yml @@ -28,7 +28,7 @@ jobs: - job: Linux pool: - vmImage: Ubuntu 22.04 + vmImage: Ubuntu-22.04 steps: - checkout: self fetchDepth: 0 # avoid shallow clone so nbgv can do its work. From adc4a246070c3c6b9e92b3200050d8f2274a43b7 Mon Sep 17 00:00:00 2001 From: Andrew Arnott Date: Fri, 4 Oct 2024 05:46:54 -0600 Subject: [PATCH 2/2] Update build agent to macos-14 Also pin the Windows agent version. --- .github/workflows/build.yml | 4 ++-- azure-pipelines/build.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 015f421..6866289 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -22,8 +22,8 @@ jobs: matrix: os: - ubuntu-22.04 - - macos-latest - - windows-latest + - macos-14 + - windows-2022 steps: - uses: actions/checkout@v4 diff --git a/azure-pipelines/build.yml b/azure-pipelines/build.yml index dbf81b7..1082582 100644 --- a/azure-pipelines/build.yml +++ b/azure-pipelines/build.yml @@ -44,7 +44,7 @@ jobs: - job: macOS condition: ${{ parameters.includeMacOS }} pool: - vmImage: macOS-12 + vmImage: macOS-14 steps: - checkout: self fetchDepth: 0 # avoid shallow clone so nbgv can do its work.