Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion nightly-main/windows/1809/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -128,8 +128,10 @@ RUN Write-Host -NoNewLine ('Downloading {0} ... ' -f ${env:VSB});

# Install Swift toolchain.
ARG SWIFT_RELEASE_METADATA=https://download.swift.org/development/windows10/latest-build.json
# Pinned to 6/9 snapshot due to https://github.com/swiftlang/swift/issues/82281
# $SWIFT_URL = "\"https://download.swift.org/development/windows10/$($Release.dir)/$($Release.download)\""; \
RUN $Release = curl.exe -sL ${env:SWIFT_RELEASE_METADATA} | ConvertFrom-JSON; \
$SWIFT_URL = "\"https://download.swift.org/development/windows10/$($Release.dir)/$($Release.download)\""; \
$SWIFT_URL = "\"https://download.swift.org/development/windows10/swift-DEVELOPMENT-SNAPSHOT-2025-06-09-a/swift-DEVELOPMENT-SNAPSHOT-2025-06-09-a-windows10.exe\""; \
Write-Host -NoNewLine ('Downloading {0} ... ' -f ${SWIFT_URL}); \
Invoke-WebRequest -Uri ${SWIFT_URL} -OutFile installer.exe; \
Write-Host '✓'; \
Expand Down
4 changes: 3 additions & 1 deletion nightly-main/windows/LTSC2022/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -128,8 +128,10 @@ RUN Write-Host -NoNewLine ('Downloading {0} ... ' -f ${env:VSB});

# Install Swift toolchain.
ARG SWIFT_RELEASE_METADATA=https://download.swift.org/development/windows10/latest-build.json
# Pinned to 6/9 snapshot due to https://github.com/swiftlang/swift/issues/82281
# $SWIFT_URL = "\"https://download.swift.org/development/windows10/$($Release.dir)/$($Release.download)\""; \
RUN $Release = curl.exe -sL ${env:SWIFT_RELEASE_METADATA} | ConvertFrom-JSON; \
$SWIFT_URL = "\"https://download.swift.org/development/windows10/$($Release.dir)/$($Release.download)\""; \
$SWIFT_URL = "\"https://download.swift.org/development/windows10/swift-DEVELOPMENT-SNAPSHOT-2025-06-09-a/swift-DEVELOPMENT-SNAPSHOT-2025-06-09-a-windows10.exe\""; \
Write-Host -NoNewLine ('Downloading {0} ... ' -f ${SWIFT_URL}); \
Invoke-WebRequest -Uri ${SWIFT_URL} -OutFile installer.exe; \
Write-Host '✓'; \
Expand Down
Loading