Skip to content

Commit e8a7939

Browse files
authored
Add support for nightly Swift 6.2 toolchains (#977)
1 parent ab846e1 commit e8a7939

20 files changed

+109
-35
lines changed
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_2-branch.amazonlinux2 | jsonify }},
5+
"aarch64": {{ site.data.builds.swift-6_2-branch.amazonlinux2-aarch64 | jsonify}}
6+
}

api/v1/install/dev/6.2/centos7.json

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_2-branch.centos7 | jsonify }},
5+
"aarch64": {{ site.data.builds.swift-6_2-branch.centos7-aarch64 | jsonify}}
6+
}

api/v1/install/dev/6.2/debian12.json

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_2-branch.debian12 | jsonify }},
5+
"aarch64": {{ site.data.builds.swift-6_2-branch.debian12-aarch64 | jsonify }}
6+
}

api/v1/install/dev/6.2/fedora39.json

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_2-branch.fedora39 | jsonify }},
5+
"aarch64": {{ site.data.builds.swift-6_2-branch.fedora39-aarch64 | jsonify }}
6+
}

api/v1/install/dev/6.2/macos.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
---
2+
layout: none
3+
---
4+
{ "universal": {{ site.data.builds.swift-6_2-branch.xcode | jsonify }}}
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_2-branch.static_sdk | jsonify }}

api/v1/install/dev/6.2/ubi9.json

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_2-branch.ubi9 | jsonify }},
5+
"aarch64": {{ site.data.builds.swift-6_2-branch.ubi9-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_2-branch.ubuntu2004 | jsonify }},
5+
"aarch64": {{ site.data.builds.swift-6_2-branch.ubuntu2004-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_2-branch.ubuntu2204 | jsonify }},
5+
"aarch64": {{ site.data.builds.swift-6_2-branch.ubuntu2204-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_2-branch.ubuntu2404 | jsonify }},
5+
"aarch64": {{ site.data.builds.swift-6_2-branch.ubuntu2404-aarch64 | jsonify}}
6+
}

api/v1/install/dev/6.2/windows10.json

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_2-branch.windows10 | jsonify }},
5+
"arm64": {{ site.data.builds.swift-6_2-branch.windows10-arm64 | jsonify }}
6+
}

install/linux/amazonlinux/2/index.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ development="main"
2323
docker_tag="nightly-amazonlinux2"
2424
development_builds=site.data.builds.development.amazonlinux2
2525
aarch64_development_builds=site.data.builds.development.amazonlinux2-aarch64
26-
development_2="release/6.1"
27-
docker_tag_2="nightly-6.1-amazonlinux2"
28-
development_builds_2=site.data.builds.swift-6_1-branch.amazonlinux2 aarch64_development_builds_2=site.data.builds.swift-6_1-branch.amazonlinux2-aarch64
29-
branch_dir_2="swift-6.1-branch"%}
26+
development_2="release/6.2"
27+
docker_tag_2="nightly-6.2-amazonlinux2"
28+
development_builds_2=site.data.builds.swift-6_2-branch.amazonlinux2 aarch64_development_builds_2=site.data.builds.swift-6_2-branch.amazonlinux2-aarch64
29+
branch_dir_2="swift-6.2-branch"%}

install/linux/debian/12/index.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ development="main"
2323
docker_tag="nightly-debian-12"
2424
development_builds=site.data.builds.development.debian12
2525
aarch64_development_builds=site.data.builds.development.debian12-aarch64
26-
development_2="release/6.1"
27-
docker_tag_2="nightly-6.1-debian12"
28-
development_builds_2=site.data.builds.swift-6_1-branch.debian12 aarch64_development_builds_2=site.data.builds.swift-6_1-branch.debian12-aarch64
29-
branch_dir_2="swift-6.1-branch"%}
26+
development_2="release/6.2"
27+
docker_tag_2="nightly-6.2-debian12"
28+
development_builds_2=site.data.builds.swift-6_2-branch.debian12 aarch64_development_builds_2=site.data.builds.swift-6_2-branch.debian12-aarch64
29+
branch_dir_2="swift-6.2-branch"%}

install/linux/fedora/39/index.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ development="main"
2323
docker_tag="nightly-fedora-39"
2424
development_builds=site.data.builds.development.fedora39
2525
aarch64_development_builds=site.data.builds.development.fedora39-aarch64
26-
development_2="release/6.1"
27-
docker_tag_2="nightly-6.1-fedora39"
28-
development_builds_2=site.data.builds.swift-6_1-branch.fedora39 aarch64_development_builds_2=site.data.builds.swift-6_1-branch.fedora39-aarch64
29-
branch_dir_2="swift-6.1-branch"%}
26+
development_2="release/6.2"
27+
docker_tag_2="nightly-6.2-fedora39"
28+
development_builds_2=site.data.builds.swift-6_2-branch.fedora39 aarch64_development_builds_2=site.data.builds.swift-6_2-branch.fedora39-aarch64
29+
branch_dir_2="swift-6.2-branch"%}

install/linux/ubi/9/index.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ development="main"
2323
docker_tag="nightly-rhel-ubi9"
2424
development_builds=site.data.builds.development.ubi9
2525
aarch64_development_builds=site.data.builds.development.ubi9-aarch64
26-
development_2="release/6.1"
27-
docker_tag_2="nightly-6.1-rhel-ubi9"
28-
development_builds_2=site.data.builds.swift-6_1-branch.ubi9 aarch64_development_builds_2=site.data.builds.swift-6_1-branch.ubi9-aarch64
29-
branch_dir_2="swift-6.1-branch"%}
26+
development_2="release/6.2"
27+
docker_tag_2="nightly-6.2-rhel-ubi9"
28+
development_builds_2=site.data.builds.swift-6_2-branch.ubi9 aarch64_development_builds_2=site.data.builds.swift-6_2-branch.ubi9-aarch64
29+
branch_dir_2="swift-6.2-branch"%}

install/linux/ubuntu/20_04/index.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ development="main"
2323
docker_tag="nightly-focal"
2424
development_builds=site.data.builds.development.ubuntu2004
2525
aarch64_development_builds=site.data.builds.development.ubuntu2004-aarch64
26-
development_2="release/6.1"
27-
docker_tag_2="nightly-6.1-focal"
28-
development_builds_2=site.data.builds.swift-6_1-branch.ubuntu2004 aarch64_development_builds_2=site.data.builds.swift-6_1-branch.ubuntu2004-aarch64
29-
branch_dir_2="swift-6.1-branch"%}
26+
development_2="release/6.2"
27+
docker_tag_2="nightly-6.2-focal"
28+
development_builds_2=site.data.builds.swift-6_2-branch.ubuntu2004 aarch64_development_builds_2=site.data.builds.swift-6_2-branch.ubuntu2004-aarch64
29+
branch_dir_2="swift-6.2-branch"%}

install/linux/ubuntu/22_04/index.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ development="main"
2323
docker_tag="nightly-jammy"
2424
development_builds=site.data.builds.development.ubuntu2204
2525
aarch64_development_builds=site.data.builds.development.ubuntu2204-aarch64
26-
development_2="release/6.1"
27-
docker_tag_2="nightly-6.1-jammy"
28-
development_builds_2=site.data.builds.swift-6_1-branch.ubuntu2204 aarch64_development_builds_2=site.data.builds.swift-6_1-branch.ubuntu2204-aarch64
29-
branch_dir_2="swift-6.1-branch"%}
26+
development_2="release/6.2"
27+
docker_tag_2="nightly-6.2-jammy"
28+
development_builds_2=site.data.builds.swift-6_2-branch.ubuntu2204 aarch64_development_builds_2=site.data.builds.swift-6_2-branch.ubuntu2204-aarch64
29+
branch_dir_2="swift-6.2-branch"%}

install/linux/ubuntu/24_04/index.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ development="main"
2323
docker_tag="nightly-noble"
2424
development_builds=site.data.builds.development.ubuntu2404
2525
aarch64_development_builds=site.data.builds.development.ubuntu2404-aarch64
26-
development_2="release/6.1"
27-
docker_tag_2="nightly-6.1-noble"
28-
development_builds_2=site.data.builds.swift-6_1-branch.ubuntu2404 aarch64_development_builds_2=site.data.builds.swift-6_1-branch.ubuntu2404-aarch64
29-
branch_dir_2="swift-6.1-branch"%}
26+
development_2="release/6.2"
27+
docker_tag_2="nightly-6.2-noble"
28+
development_builds_2=site.data.builds.swift-6_2-branch.ubuntu2404 aarch64_development_builds_2=site.data.builds.swift-6_2-branch.ubuntu2404-aarch64
29+
branch_dir_2="swift-6.2-branch"%}

install/macos/_older-6_2-snapshots.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<table id="osx-builds" class="downloads">
2+
<thead>
3+
<tr>
4+
<th class="download">Download</th>
5+
</tr>
6+
</thead>
7+
<tbody>
8+
{% for build in xcode_6_2_builds | offset:1 | limit:10 %}
9+
{% include_relative _old-snapshot.html build=build name="Xcode" platform_dir="xcode" branch_dir="swift-6.2-branch" %}
10+
{% endfor %}
11+
</tbody>
12+
</table>

install/macos/index.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ Swift snapshots are prebuilt binaries that are automatically created from the br
6161
The easiest way to install development snapshots is with the Swiftly tool. Read more on the [instructions page](/install/macos/swiftly).
6262

6363
{% assign xcode_dev_builds = site.data.builds.development.xcode | sort: 'date' | reverse %}
64-
{% assign xcode_6_1_builds = site.data.builds.swift-6_1-branch.xcode | sort: 'date' | reverse %}
64+
{% assign xcode_6_2_builds = site.data.builds.swift-6_2-branch.xcode | sort: 'date' | reverse %}
6565

6666
<h3>Toolchain</h3>
6767
<ul class="grid-level-0 grid-layout-2-column">
@@ -79,17 +79,17 @@ The easiest way to install development snapshots is with the Swiftly tool. Read
7979
<a href="https://download.swift.org/development/xcode/{{ xcode_dev_builds.first.dir }}/{{ xcode_dev_builds.first.download }}" class="cta-secondary">Download Toolchain</a>
8080
</li>
8181
<li class="grid-level-1">
82-
<h3>release/6.1</h3>
82+
<h3>release/6.2</h3>
8383
<p class="description" style="font-size: 14px;">
84-
<time datetime="{{ xcode_6_1_builds.first.date | date_to_xmlschema }}" title="{{ xcode_6_1_builds.first.date | date: '%B %-d, %Y %l:%M %p (%Z)' }}">{{ xcode_6_1_builds.first.date | date: '%B %-d, %Y' }}</time>
84+
<time datetime="{{ xcode_6_2_builds.first.date | date_to_xmlschema }}" title="{{ xcode_6_2_builds.first.date | date: '%B %-d, %Y %l:%M %p (%Z)' }}">{{ xcode_6_2_builds.first.date | date: '%B %-d, %Y' }}</time>
8585
</p>
8686
<p class="description">
8787
Toolchain package installer (.pkg)
8888
<ul>
89-
<li><a href="https://download.swift.org/swift-6.1-branch/xcode/{{ xcode_6_1_builds.first.dir }}/{{ xcode_6_1_builds.first.debug_info }}">Debugging Symbols</a></li>
89+
<li><a href="https://download.swift.org/swift-6.2-branch/xcode/{{ xcode_6_2_builds.first.dir }}/{{ xcode_6_2_builds.first.debug_info }}">Debugging Symbols</a></li>
9090
</ul>
9191
</p>
92-
<a href="https://download.swift.org/swift-6.1-branch/xcode/{{ xcode_6_1_builds.first.dir }}/{{ xcode_6_1_builds.first.download }}" class="cta-secondary">Download Toolchain</a>
92+
<a href="https://download.swift.org/swift-6.2-branch/xcode/{{ xcode_6_2_builds.first.dir }}/{{ xcode_6_2_builds.first.download }}" class="cta-secondary">Download Toolchain</a>
9393
</li>
9494
</ul>
9595
<a href="/install/macos/package_installer" class="cta-secondary">Instructions (Toolchain)</a>
@@ -101,6 +101,6 @@ The easiest way to install development snapshots is with the Swiftly tool. Read
101101
{% include_relative _older-development-snapshots.md %}
102102
</details>
103103
<details class="download" style="margin-bottom: 0;">
104-
<summary>Older Snapshots (release/6.1)</summary>
105-
{% include_relative _older-6_1-snapshots.md %}
104+
<summary>Older Snapshots (release/6.2)</summary>
105+
{% include_relative _older-6_2-snapshots.md %}
106106
</details>

0 commit comments

Comments
 (0)