Skip to content

Commit 6adc693

Browse files
committed
Remove WS2025 from CIs due to regression
Signed-off-by: Kirtana Ashok <[email protected]> (cherry picked from commit 117179a) Signed-off-by: Kirtana Ashok <[email protected]>
1 parent b73efa5 commit 6adc693

File tree

6 files changed

+11
-19
lines changed

6 files changed

+11
-19
lines changed

.github/workflows/build-test-images.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
azure_windows_image_id:
1010
description: Windows image URN to deploy
1111
required: true
12-
default: MicrosoftWindowsServer:WindowsServer:2025-datacenter:latest
12+
default: MicrosoftWindowsServer:WindowsServer:2022-datacenter:latest
1313
azure_vm_size:
1414
description: Windows image builder VM size
1515
required: true

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ jobs:
188188

189189
strategy:
190190
matrix:
191-
os: [ubuntu-22.04, ubuntu-24.04, ubuntu-24.04-arm, macos-13, windows-2022, windows-2025]
191+
os: [ubuntu-22.04, ubuntu-24.04, ubuntu-24.04-arm, macos-13, windows-2022]
192192
go-version: ["1.23.10", "1.24.4"]
193193
steps:
194194
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
@@ -214,7 +214,7 @@ jobs:
214214
strategy:
215215
fail-fast: false
216216
matrix:
217-
os: [windows-2025, windows-2022]
217+
os: [windows-2022]
218218
cgroup_driver: [cgroupfs]
219219

220220
defaults:

.github/workflows/windows-hyperv-periodic.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -43,16 +43,12 @@ jobs:
4343
# (e.g. hitting resource limits in the `AZTestVMCreate` task)
4444
fail-fast: false
4545
matrix:
46-
win_ver: [ltsc2022, ltsc2025]
46+
win_ver: [ltsc2022]
4747
include:
4848
- win_ver: ltsc2022
4949
AZURE_IMG: "MicrosoftWindowsServer:WindowsServer:2022-datacenter-smalldisk-g2:latest"
5050
AZURE_RESOURCE_GROUP: ctrd-integration-ltsc2022-${{ github.run_id }}
5151
GOOGLE_BUCKET: "containerd-integration/logs/windows-ltsc2022-hyperv/"
52-
- win_ver: ltsc2025
53-
AZURE_IMG: "MicrosoftWindowsServer:WindowsServer:2025-Datacenter:latest"
54-
AZURE_RESOURCE_GROUP: ctrd-integration-ltsc2025-${{ github.run_id }}
55-
GOOGLE_BUCKET: "containerd-integration/logs/windows-ltsc2025-hyperv/"
5652
runs-on: ubuntu-latest
5753
steps:
5854
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2

.github/workflows/windows-periodic.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -42,16 +42,12 @@ jobs:
4242
# (e.g. hitting resource limits in the `AZTestVMCreate` task)
4343
fail-fast: false
4444
matrix:
45-
win_ver: [ltsc2022, ltsc2025]
45+
win_ver: [ltsc2022]
4646
include:
4747
- win_ver: ltsc2022
4848
AZURE_IMG: "MicrosoftWindowsServer:WindowsServer:2022-datacenter-smalldisk-g2:latest"
4949
AZURE_RESOURCE_GROUP: ctrd-integration-ltsc2022-${{ github.run_id }}
5050
GOOGLE_BUCKET: "containerd-integration/logs/windows-ltsc2022/"
51-
- win_ver: ltsc2025
52-
AZURE_IMG: "MicrosoftWindowsServer:WindowsServer:2025-Datacenter:latest"
53-
AZURE_RESOURCE_GROUP: ctrd-integration-ltsc2025-${{ github.run_id }}
54-
GOOGLE_BUCKET: "containerd-integration/logs/windows-ltsc2025/"
5551
runs-on: ubuntu-latest
5652
timeout-minutes: 90
5753
steps:

integration/images/volume-copy-up/Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ endif
3333
OS ?= linux
3434
# Architectures supported: amd64, arm64
3535
ARCH ?= amd64
36-
# OS Version for the Windows images: ltsc2022, ltsc2025
37-
OSVERSION ?= ltsc2022
36+
# OS Version for the Windows images: 1809, 20H2, ltsc2022
37+
OSVERSION ?= 1809
3838

3939
# The output type could either be docker (local), or registry.
4040
# If it is registry, it will also allow us to push the Windows images.
@@ -46,7 +46,7 @@ ALL_OS_ARCH.linux = $(foreach arch, ${ALL_ARCH.linux}, linux-$(arch))
4646

4747
ifneq ($(REMOTE_DOCKER_URL),)
4848
ALL_OS += windows
49-
ALL_OSVERSIONS.windows := ltsc2022 ltsc2025
49+
ALL_OSVERSIONS.windows := 1809 20H2 ltsc2022
5050
ALL_OS_ARCH.windows = $(foreach osversion, ${ALL_OSVERSIONS.windows}, windows-amd64-${osversion})
5151
BASE.windows := mcr.microsoft.com/windows/nanoserver
5252
endif

integration/images/volume-ownership/Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ endif
3333
OS ?= linux
3434
# Architectures supported: amd64, arm64
3535
ARCH ?= amd64
36-
# OS Version for the Windows images: ltsc2022, lts2025
37-
OSVERSION ?= ltsc2022
36+
# OS Version for the Windows images: 1809, 20H2, ltsc2022
37+
OSVERSION ?= 1809
3838

3939
# The output type could either be docker (local), or registry.
4040
# If it is registry, it will also allow us to push the Windows images.
@@ -46,7 +46,7 @@ ALL_OS_ARCH.linux = $(foreach arch, ${ALL_ARCH.linux}, linux-$(arch))
4646

4747
ifneq ($(REMOTE_DOCKER_URL),)
4848
ALL_OS += windows
49-
ALL_OSVERSIONS.windows := ltsc2022 ltsc2025
49+
ALL_OSVERSIONS.windows := 1809 20H2 ltsc2022
5050
ALL_OS_ARCH.windows = $(foreach osversion, ${ALL_OSVERSIONS.windows}, windows-amd64-${osversion})
5151
BASE.windows := mcr.microsoft.com/windows/nanoserver
5252
endif

0 commit comments

Comments
 (0)