Skip to content

Commit 4ed1375

Browse files
authored
Merge branch 'swiftlang:main' into main
2 parents a7b303a + 502a588 commit 4ed1375

File tree

3 files changed

+3
-7
lines changed

3 files changed

+3
-7
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 6/9 snapshot due to https://github.com/swiftlang/swift/issues/82281
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-06-09-a/swift-DEVELOPMENT-SNAPSHOT-2025-06-09-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 6/9 snapshot due to https://github.com/swiftlang/swift/issues/82281
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-06-09-a/swift-DEVELOPMENT-SNAPSHOT-2025-06-09-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 '✓'; \

swift-ci/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ The Continuous Integration system uses the Dockerfiles in this directory to defi
66

77
## Directory Structure
88

9-
The Dockerfiles used for Continuous Integration are layed out under the top level `swift-ci` directory. Under that, we have a directory for each of the target branches, e.g. Continuous Integration for Swift's `main` branch uses the `swift-ci/master` Dockerfiles.
9+
The Dockerfiles used for Continuous Integration are laid out under the top level `swift-ci` directory. Under that, we have a directory for each of the target branches, e.g. Continuous Integration for Swift's `main` branch uses the `swift-ci/master` Dockerfiles.
1010

1111
There is also a specific directory (`swift-docc-render`) for the Dockerfile used to build Swift-DocC-Render. Swift-DocC-Render builds separately from the rest of the projects in the Swift toolchain and ships a pre-built copy for use in the toolchain in the Swift-DocC-Render-Artifact repository.
1212

0 commit comments

Comments
 (0)