Skip to content

Commit b4e3554

Browse files
authored
Merge pull request github#11370 from github/alexdenisov/swift-5.7.1
Swift: upgrade to Swift 5.7.1
2 parents d53d275 + fe0ae6b commit b4e3554

File tree

27 files changed

+10209
-22
lines changed

27 files changed

+10209
-22
lines changed

misc/bazel/workspace.bzl

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
22
load("@bazel_tools//tools/build_defs/repo:utils.bzl", "maybe")
33

4-
_swift_prebuilt_version = "swift-5.7-RELEASE.43809.66"
4+
_swift_prebuilt_version = "swift-5.7.1-RELEASE.44356.85"
55
_swift_sha_map = {
6-
"linux": "8c6480ed4b38bf46d2e55a97f08c38ae183bfeb68649f98193b7540b04428741",
7-
"macos-x86_64": "ab103774b384a7f3f01c0d876699cae6afafe6cf2ee458b77b9aac6e08e4ca4d",
6+
"Linux-X64": "c9f17e13cac89f097aaaa65b1bc32aac566c8e4f3b68fc18e970cc3ee31f4913",
7+
"macOS-X64": "638ac0552e9e1ccee9e276525d1ea9454256feec20bc778efa8856fd6e506987",
88
}
99

1010
_swift_arch_map = {
11-
"linux": "linux",
12-
"macos-x86_64": "darwin_x86_64",
11+
"Linux-X64": "linux",
12+
"macOS-X64": "darwin_x86_64",
1313
}
1414

1515
def codeql_workspace(repository_name = "codeql"):

swift/actions/run-integration-tests/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ runs:
1313
- uses: actions/setup-python@v4
1414
with:
1515
python-version-file: 'swift/.python-version'
16-
- uses: swift-actions/setup-swift@5cdaa9161ad1f55ae39a5ea1784ef96de72f95d9
16+
- uses: swift-actions/setup-swift@194625b58a582570f61cc707c3b558086c26b723
1717
with:
1818
swift-version: "${{steps.get_swift_version.outputs.version}}"
1919
- uses: ./.github/actions/fetch-codeql
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
// Removes AbiSafeConversionExprs from ImplicitConversionExprs
2+
class Element extends @element {
3+
string toString() { none() }
4+
}
5+
6+
from Element e, Element child
7+
where implicit_conversion_exprs(e, child) and not abi_safe_conversion_exprs(e)
8+
select e, child

0 commit comments

Comments
 (0)