Skip to content

Commit 1673b0b

Browse files
authored
Merge branch 'main' into saumya/stress-tests-gh
2 parents 96841c3 + 44f755b commit 1673b0b

5 files changed

Lines changed: 20 additions & 19 deletions

File tree

OneBranchPipelines/build-release-package-pipeline.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -201,8 +201,8 @@ extends:
201201
parameters:
202202
# Pool Configuration
203203
# Different platforms use different agent pools:
204-
# - Windows: Custom 1ES pool (Django-1ES-pool) with WIN22-SQL22 image (Windows Server 2022 + SQL Server 2022)
205-
# - Linux: Custom 1ES pool (Django-1ES-pool) with ADO-UB22-SQL22 image (Ubuntu 22.04 + SQL Server 2022)
204+
# - Windows: Custom 1ES pool (Python-1ES-pool) with PYTHON-1ES-MMS2022 image (Windows Server 2022 + SQL Server 2022)
205+
# - Linux: Custom 1ES pool (Python-1ES-pool) with PYTHON-1ES-UB2404 image (Ubuntu 24.04 + SQL Server 2022)
206206
# - macOS: Microsoft-hosted pool (Azure Pipelines) with macOS-14 image (macOS Sonoma)
207207
# Note: Container definitions section present but unused (pools configured in individual stage templates)
208208

OneBranchPipelines/dummy-release-pipeline.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,9 +96,9 @@ extends:
9696
pool:
9797
type: windows
9898
isCustom: true
99-
name: Django-1ES-pool
99+
name: Python-1ES-pool
100100
demands:
101-
- imageOverride -equals WIN22-SQL22
101+
- imageOverride -equals PYTHON-1ES-MMS2022
102102

103103
variables:
104104
ob_outputDirectory: '$(Build.ArtifactStagingDirectory)'

OneBranchPipelines/official-release-pipeline.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,9 +99,9 @@ extends:
9999
pool:
100100
type: windows
101101
isCustom: true
102-
name: Django-1ES-pool
102+
name: Python-1ES-pool
103103
demands:
104-
- imageOverride -equals WIN22-SQL22
104+
- imageOverride -equals PYTHON-1ES-MMS2022
105105

106106
variables:
107107
ob_outputDirectory: '$(Build.ArtifactStagingDirectory)'

OneBranchPipelines/stages/build-linux-single-stage.yml

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ stages:
3535
pool:
3636
type: linux
3737
isCustom: true
38-
name: Django-1ES-pool
38+
name: Python-1ES-pool
3939
demands:
40-
- imageOverride -equals ADO-UB22-SQL22
40+
- imageOverride -equals PYTHON-1ES-UB2404
4141
# Extended timeout for multi-version builds + testing (5 Python versions × build + test time)
4242
timeoutInMinutes: 120
4343

@@ -65,12 +65,8 @@ stages:
6565
- checkout: self
6666
fetchDepth: 0
6767

68-
# Install Docker
69-
- task: DockerInstaller@0
70-
inputs:
71-
dockerVersion: '20.10.21'
72-
displayName: 'Install Docker'
73-
68+
# Docker is pre-installed now
69+
# Verify it's working and start the daemon
7470
- bash: |
7571
set -e
7672
echo "Verifying we're on Linux..."
@@ -82,9 +78,14 @@ stages:
8278
8379
uname -a
8480
85-
# Start dockerd
86-
sudo dockerd > docker.log 2>&1 &
87-
sleep 10
81+
# Check if Docker daemon is already running
82+
if ! docker info > /dev/null 2>&1; then
83+
echo "Docker daemon not running, starting it..."
84+
sudo dockerd > docker.log 2>&1 &
85+
sleep 10
86+
else
87+
echo "Docker daemon already running"
88+
fi
8889
8990
# Verify Docker works
9091
docker --version

OneBranchPipelines/stages/build-windows-single-stage.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@ stages:
3838
pool:
3939
type: windows
4040
isCustom: true
41-
name: Django-1ES-pool
41+
name: Python-1ES-pool
4242
demands:
43-
- imageOverride -equals WIN22-SQL22
43+
- imageOverride -equals PYTHON-1ES-MMS2022
4444
# Extended timeout for downloads, builds, and testing
4545
timeoutInMinutes: 120
4646

0 commit comments

Comments
 (0)