Skip to content

Commit 80fd5f8

Browse files
authored
Revert "Pin Windows nightly images to 3/10 snapshot (#453)" (#477)
This reverts commit 0e6e138. Fixes: https://github.com/swiftlang/swift/issue/80356
1 parent 88d4b43 commit 80fd5f8

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

nightly-main/windows/1809/Dockerfile

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -128,10 +128,8 @@ RUN Write-Host -NoNewLine ('Downloading {0} ... ' -f ${env:VSB});
128128

129129
# Install Swift toolchain.
130130
ARG SWIFT_RELEASE_METADATA=https://download.swift.org/development/windows10/latest-build.json
131-
# Pinned to 3/10 snapshot due to https://github.com/swiftlang/swift/issues/80356
132-
# $SWIFT_URL = "\"https://download.swift.org/development/windows10/$($Release.dir)/$($Release.download)\""; \
133131
RUN $Release = curl.exe -sL ${env:SWIFT_RELEASE_METADATA} | ConvertFrom-JSON; \
134-
$SWIFT_URL = "\"https://download.swift.org/development/windows10/swift-DEVELOPMENT-SNAPSHOT-2025-03-10-a/swift-DEVELOPMENT-SNAPSHOT-2025-03-10-a-windows10.exe\""; \
132+
$SWIFT_URL = "\"https://download.swift.org/development/windows10/$($Release.dir)/$($Release.download)\""; \
135133
Write-Host -NoNewLine ('Downloading {0} ... ' -f ${SWIFT_URL}); \
136134
Invoke-WebRequest -Uri ${SWIFT_URL} -OutFile installer.exe; \
137135
Write-Host '✓'; \

nightly-main/windows/LTSC2022/Dockerfile

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -128,10 +128,8 @@ RUN Write-Host -NoNewLine ('Downloading {0} ... ' -f ${env:VSB});
128128

129129
# Install Swift toolchain.
130130
ARG SWIFT_RELEASE_METADATA=https://download.swift.org/development/windows10/latest-build.json
131-
# Pinned to 3/10 snapshot due to https://github.com/swiftlang/swift/issues/80356
132-
# $SWIFT_URL = "\"https://download.swift.org/development/windows10/$($Release.dir)/$($Release.download)\""; \
133131
RUN $Release = curl.exe -sL ${env:SWIFT_RELEASE_METADATA} | ConvertFrom-JSON; \
134-
$SWIFT_URL = "\"https://download.swift.org/development/windows10/swift-DEVELOPMENT-SNAPSHOT-2025-03-10-a/swift-DEVELOPMENT-SNAPSHOT-2025-03-10-a-windows10.exe\""; \
132+
$SWIFT_URL = "\"https://download.swift.org/development/windows10/$($Release.dir)/$($Release.download)\""; \
135133
Write-Host -NoNewLine ('Downloading {0} ... ' -f ${SWIFT_URL}); \
136134
Invoke-WebRequest -Uri ${SWIFT_URL} -OutFile installer.exe; \
137135
Write-Host '✓'; \

0 commit comments

Comments
 (0)