Skip to content

Commit e9348f3

Browse files
authored
Merge pull request #1257 from swiftlang/swift-6.3-nightly
[install] Add support for Swift 6.3 nightly toolchains
2 parents 8404c03 + 3768d34 commit e9348f3

File tree

28 files changed

+165
-70
lines changed

28 files changed

+165
-70
lines changed
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
- date: 2025-12-05 10:10:00-06:00
2+
dir: swift-6.3-DEVELOPMENT-SNAPSHOT-2025-12-05-a
3+
download: swift-6.3-DEVELOPMENT-SNAPSHOT-2025-12-05-a-windows10-arm64.exe
4+
name: Windows 10 Swift Development Snapshot
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
- date: 2025-12-05 10:10:00-06:00
2+
dir: swift-6.3-DEVELOPMENT-SNAPSHOT-2025-12-05-a
3+
download: swift-6.3-DEVELOPMENT-SNAPSHOT-2025-12-05-a-windows10.exe
4+
name: Windows 10 Swift Development Snapshot

_data/new-data/install/linux/dev.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ latest-dev:
77
- label: main
88
code: |-
99
swiftly install main-snapshot
10-
- label: release/6.2
10+
- label: release/6.3
1111
code: |-
12-
swiftly install 6.2-snapshot
12+
swiftly install 6.3-snapshot
1313
links:
1414
- href: '/install/linux/swiftly'
1515
copy: 'Instructions'

_includes/new-includes/components/android-sdk-dev.html

Lines changed: 25 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{% assign android_sdk_dev_builds = site.data.builds.development.android-sdk | sort: 'date' | reverse %}
2-
2+
{% assign android_sdk_6_3_dev_builds = site.data.builds.swift-6_3-branch.android-sdk | sort: 'date' | reverse %}
3+
<div class="releases-grid">
34
<div class="release-box section">
45
<div class="content">
56
<div class="code-box content-wrapper">
@@ -20,4 +21,26 @@ <h2>main</h2>
2021
</div>
2122
</div>
2223
</div>
23-
</div>
24+
</div>
25+
<div class="release-box section">
26+
<div class="content">
27+
<div class="code-box content-wrapper">
28+
<h2>release/6.3</h2>
29+
<p class="body-copy">
30+
<small>{{ android_sdk_6_3_dev_builds.first.date | date: '%B %-d, %Y' }}</small><br />
31+
{% assign base_url = "https://download.swift.org/swift-6.3-branch/android-sdk/" | append: android_sdk_6_3_dev_builds.first.dir | append: "/" | append: android_sdk_6_3_dev_builds.first.download %}
32+
{% assign command = "swift sdk install " | append: base_url | append: " --checksum " | append: android_sdk_6_3_dev_builds.first.checksum %}
33+
<button onclick="copyToClipboard(this, '{{ command | escape }}')">
34+
Copy install command
35+
</button>
36+
</p>
37+
<div class="link-wrapper">
38+
<div class="link-group">
39+
<a href="https://download.swift.org/development/android-sdk/{{ android_sdk_6_3_dev_builds.first.dir }}/{{ android_sdk_6_3_dev_builds.first.download }}" class="body-copy">Download</a> |
40+
<a href="https://download.swift.org/development/android-sdk/{{ android_sdk_6_3_dev_builds.first.dir }}/{{ android_sdk_6_3_dev_builds.first.download_signature }}" class="body-copy">Signature (PGP)</a>
41+
</div>
42+
</div>
43+
</div>
44+
</div>
45+
</div>
46+
</div>

_includes/new-includes/components/static-linux-sdk-dev.html

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% assign static_sdk_dev_builds = site.data.builds.development.static_sdk | sort: 'date' | reverse %}
2-
{% assign static_sdk_6_2_builds = site.data.builds.swift-6_2-branch.static-sdk | sort: 'date' | reverse %}
2+
{% assign static_sdk_6_3_builds = site.data.builds.swift-6_3-branch.static-sdk | sort: 'date' | reverse %}
33

44
<div class="releases-grid">
55
<div class="release-box section">
@@ -26,19 +26,19 @@ <h2>main</h2>
2626
<div class="release-box section">
2727
<div class="content">
2828
<div class="code-box content-wrapper">
29-
<h2>release/6.2</h2>
29+
<h2>release/6.3</h2>
3030
<p class="body-copy">
31-
<small>{{ static_sdk_6_2_builds.first.date | date: '%B %-d, %Y' }}</small><br />
32-
{% assign base_url = "https://download.swift.org/swift-6.2-branch/static-sdk/" | append: static_sdk_6_2_builds.first.dir | append: "/" | append: static_sdk_6_2_builds.first.download %}
33-
{% assign command = "swift sdk install " | append: base_url | append: " --checksum " | append: static_sdk_6_2_builds.first.checksum %}
31+
<small>{{ static_sdk_6_3_builds.first.date | date: '%B %-d, %Y' }}</small><br />
32+
{% assign base_url = "https://download.swift.org/swift-6.3-branch/static-sdk/" | append: static_sdk_6_3_builds.first.dir | append: "/" | append: static_sdk_6_3_builds.first.download %}
33+
{% assign command = "swift sdk install " | append: base_url | append: " --checksum " | append: static_sdk_6_3_builds.first.checksum %}
3434
<button onclick="copyToClipboard(this, '{{ command | escape }}')">
3535
Copy install command
3636
</button>
3737
</p>
3838
<div class="link-wrapper">
3939
<div class="link-group">
40-
<a href="https://download.swift.org/swift-6.2-branch/static-sdk/{{ static_sdk_6_2_builds.first.dir }}/{{ static_sdk_6_2_builds.first.download }}" class="body-copy">Download</a> |
41-
<a href="https://download.swift.org/swift-6.2-branch/static-sdk/{{ static_sdk_6_2_builds.first.dir }}/{{ static_sdk_6_2_builds.first.download_signature }}" class="body-copy">Signature (PGP)</a>
40+
<a href="https://download.swift.org/swift-6.3-branch/static-sdk/{{ static_sdk_6_3_builds.first.dir }}/{{ static_sdk_6_3_builds.first.download }}" class="body-copy">Download</a> |
41+
<a href="https://download.swift.org/swift-6.3-branch/static-sdk/{{ static_sdk_6_3_builds.first.dir }}/{{ static_sdk_6_3_builds.first.download_signature }}" class="body-copy">Signature (PGP)</a>
4242
</div>
4343
</div>
4444
</div>

_includes/new-includes/components/wasm-sdk-dev.html

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% assign wasm_sdk_dev_builds = site.data.builds.development.wasm-sdk | sort: 'date' | reverse %}
2-
{% assign wasm_sdk_6_2_builds = site.data.builds.swift-6_2-branch.wasm-sdk | sort: 'date' | reverse %}
2+
{% assign wasm_sdk_6_3_builds = site.data.builds.swift-6_3-branch.wasm-sdk | sort: 'date' | reverse %}
33

44
<div class="releases-grid">
55
<div class="release-box section">
@@ -26,19 +26,19 @@ <h2>main</h2>
2626
<div class="release-box section">
2727
<div class="content">
2828
<div class="code-box content-wrapper">
29-
<h2>release/6.2</h2>
29+
<h2>release/6.3</h2>
3030
<p class="body-copy">
31-
<small>{{ wasm_sdk_6_2_builds.first.date | date: '%B %-d, %Y' }}</small><br />
32-
{% assign base_url = "https://download.swift.org/swift-6.2-branch/wasm-sdk/" | append: wasm_sdk_6_2_builds.first.dir | append: "/" | append: wasm_sdk_6_2_builds.first.download %}
33-
{% assign command = "swift sdk install " | append: base_url | append: " --checksum " | append: wasm_sdk_6_2_builds.first.checksum %}
31+
<small>{{ wasm_sdk_6_3_builds.first.date | date: '%B %-d, %Y' }}</small><br />
32+
{% assign base_url = "https://download.swift.org/swift-6.3-branch/wasm-sdk/" | append: wasm_sdk_6_3_builds.first.dir | append: "/" | append: wasm_sdk_6_3_builds.first.download %}
33+
{% assign command = "swift sdk install " | append: base_url | append: " --checksum " | append: wasm_sdk_6_3_builds.first.checksum %}
3434
<button onclick="copyToClipboard(this, '{{ command | escape }}')">
3535
Copy install command
3636
</button>
3737
</p>
3838
<div class="link-wrapper">
3939
<div class="link-group">
40-
<a href="https://download.swift.org/swift-6.2-branch/wasm-sdk/{{ wasm_sdk_6_2_builds.first.dir }}/{{ wasm_sdk_6_2_builds.first.download }}" class="body-copy">Download</a> |
41-
<a href="https://download.swift.org/swift-6.2-branch/wasm-sdk/{{ wasm_sdk_6_2_builds.first.dir }}/{{ wasm_sdk_6_2_builds.first.download_signature }}" class="body-copy">Signature (PGP)</a>
40+
<a href="https://download.swift.org/swift-6.3-branch/wasm-sdk/{{ wasm_sdk_6_3_builds.first.dir }}/{{ wasm_sdk_6_3_builds.first.download }}" class="body-copy">Download</a> |
41+
<a href="https://download.swift.org/swift-6.3-branch/wasm-sdk/{{ wasm_sdk_6_3_builds.first.dir }}/{{ wasm_sdk_6_3_builds.first.download_signature }}" class="body-copy">Signature (PGP)</a>
4242
</div>
4343
</div>
4444
</div>
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
layout: none
3+
---
4+
{ "x86_64": {{ site.data.builds.swift-6_3-branch.amazonlinux2 | jsonify }},
5+
"aarch64": {{ site.data.builds.swift-6_3-branch.amazonlinux2-aarch64 | jsonify}}
6+
}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
layout: none
3+
---
4+
{ "x86_64": {{ site.data.builds.swift-6_3-branch.amazonlinux2023 | jsonify }},
5+
"aarch64": {{ site.data.builds.swift-6_3-branch.amazonlinux2023-aarch64 | jsonify}}
6+
}
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
---
2+
layout: none
3+
---
4+
{{ site.data.builds.swift-6_3-branch.android-sdk | jsonify }}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
layout: none
3+
---
4+
{ "x86_64": {{ site.data.builds.swift-6_3-branch.debian12 | jsonify }},
5+
"aarch64": {{ site.data.builds.swift-6_3-branch.debian12-aarch64 | jsonify }}
6+
}

0 commit comments

Comments
 (0)