From cccb4dfa5e618583955bead3e17f4c6ec30d57fc Mon Sep 17 00:00:00 2001 From: Damien-Chen Date: Fri, 2 Aug 2024 00:28:54 +0800 Subject: [PATCH 1/2] Change base OS image in Azure pipeline to ubuntu-24.04 --- .azure-pipelines/ci.yml | 2 +- .azure-pipelines/pr.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.azure-pipelines/ci.yml b/.azure-pipelines/ci.yml index b5b2765e43844f..e78a0552ea72d4 100644 --- a/.azure-pipelines/ci.yml +++ b/.azure-pipelines/ci.yml @@ -5,7 +5,7 @@ jobs: displayName: Pre-build checks pool: - vmImage: ubuntu-22.04 + vmImage: ubuntu-24.04 steps: - template: ./prebuild-checks.yml diff --git a/.azure-pipelines/pr.yml b/.azure-pipelines/pr.yml index 335a4b407cb83c..f7385ee72749c1 100644 --- a/.azure-pipelines/pr.yml +++ b/.azure-pipelines/pr.yml @@ -5,7 +5,7 @@ jobs: displayName: Pre-build checks pool: - vmImage: ubuntu-22.04 + vmImage: ubuntu-24.04 steps: - template: ./prebuild-checks.yml @@ -17,7 +17,7 @@ jobs: condition: and(succeeded(), eq(dependencies.Prebuild.outputs['tests.run'], 'true')) pool: - vmImage: ubuntu-22.04 + vmImage: ubuntu-24.04 variables: testRunTitle: '$(system.pullRequest.TargetBranch)-linux' From c179fcda99529b1b6a0ebf5572c51d32db6a0325 Mon Sep 17 00:00:00 2001 From: Damien-Chen Date: Fri, 2 Aug 2024 15:19:27 +0800 Subject: [PATCH 2/2] Adding trigger python version 3.13 and remove EOL 3.7 --- .azure-pipelines/ci.yml | 2 +- .azure-pipelines/pr.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.azure-pipelines/ci.yml b/.azure-pipelines/ci.yml index e78a0552ea72d4..7490dd947e1504 100644 --- a/.azure-pipelines/ci.yml +++ b/.azure-pipelines/ci.yml @@ -1,4 +1,4 @@ -trigger: ['main', '3.12', '3.11', '3.10', '3.9', '3.8', '3.7'] +trigger: ['main', '3.13', '3.12', '3.11', '3.10', '3.9', '3.8'] jobs: - job: Prebuild diff --git a/.azure-pipelines/pr.yml b/.azure-pipelines/pr.yml index f7385ee72749c1..34be5f73c6374d 100644 --- a/.azure-pipelines/pr.yml +++ b/.azure-pipelines/pr.yml @@ -1,4 +1,4 @@ -pr: ['main', '3.12', '3.11', '3.10', '3.9', '3.8', '3.7'] +pr: ['main', '3.13', '3.12', '3.11', '3.10', '3.9', '3.8'] jobs: - job: Prebuild