diff options
author | Tom Rini <trini@konsulko.com> | 2024-10-14 19:33:10 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-10-18 09:03:58 -0600 |
commit | 933d27e1c90dd27d8cb5cc715e4d45a6bfd9ca0f (patch) | |
tree | d288ace669c3c8826cb5e2165d000b4c77994669 | |
parent | f1de0b97d1cbfd982b7a507962bb21b12a024b2f (diff) |
Azure: Update to latest containers
Soon Azure will be removing the macOS-12 container in following their
normal support schedule. Move us to macOS-14 so we won't have problems
there for a while. At the same time, our Windows container is the oldest
supported, so move to the newer option. Finally, Ubuntu 22.04 is the
middle option currently, but 24.04 should be fine.
Link: https://github.com/actions/runner-images/issues/10721
Signed-off-by: Tom Rini <trini@konsulko.com>
-rw-r--r-- | .azure-pipelines.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.azure-pipelines.yml b/.azure-pipelines.yml index 813640df92c..3ff1b44a6bc 100644 --- a/.azure-pipelines.yml +++ b/.azure-pipelines.yml @@ -1,7 +1,7 @@ variables: - windows_vm: windows-2019 - ubuntu_vm: ubuntu-22.04 - macos_vm: macOS-12 + windows_vm: windows-2022 + ubuntu_vm: ubuntu-24.04 + macos_vm: macOS-14 ci_runner_image: trini/u-boot-gitlab-ci-runner:jammy-20240808-21Aug2024 # Add '-u 0' options for Azure pipelines, otherwise we get "permission # denied" error when it tries to "useradd -m -u 1001 vsts_azpcontainer", |