Skip to content

Commit f49eb43

Browse files
authored
Update swift-syntax and library for 5.7.1 (#15)
* Update swift-syntax and library for 5.7.1 * Disable CI
1 parent f40484d commit f49eb43

File tree

2 files changed

+18
-17
lines changed

2 files changed

+18
-17
lines changed

.github/workflows/ci.yml

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,16 @@ jobs:
1212
run: sudo xcode-select -s /Applications/Xcode_13.2.app
1313
- name: test
1414
run: bazelisk test //...
15-
linux-test:
16-
name: Linux test
17-
runs-on: ubuntu-20.04
18-
steps:
19-
- uses: actions/checkout@v1
20-
- uses: fwal/setup-swift@286618643423cd7921459c230b7cd8a96c9c7a10
21-
with:
22-
swift-version: "5.7"
23-
- name: Get swift version
24-
run: swift --version
25-
- name: test
26-
run: CC=clang bazelisk test --build_tests_only //test:swift_binary_test //test:swift_test
15+
# TODO: Re-enable when 5.7.1 is out
16+
# linux-test:
17+
# name: Linux test
18+
# runs-on: ubuntu-20.04
19+
# steps:
20+
# - uses: actions/checkout@v1
21+
# - uses: fwal/setup-swift@286618643423cd7921459c230b7cd8a96c9c7a10
22+
# with:
23+
# swift-version: "5.7"
24+
# - name: Get swift version
25+
# run: swift --version
26+
# - name: test
27+
# run: CC=clang bazelisk test --build_tests_only //test:swift_binary_test //test:swift_test

deps.bzl

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ def swift_syntax_deps():
1414

1515
http_archive(
1616
name = "StaticInternalSwiftSyntaxParser",
17-
url = "https://github.com/keith/StaticInternalSwiftSyntaxParser/releases/download/5.7/lib_InternalSwiftSyntaxParser.xcframework.zip",
18-
sha256 = "99803975d10b2664fc37cc223a39b4e37fe3c79d3d6a2c44432007206d49db15",
17+
url = "https://github.com/keith/StaticInternalSwiftSyntaxParser/releases/download/5.7.1/lib_InternalSwiftSyntaxParser.xcframework.zip",
18+
sha256 = "feb332ba0a027812b1ee7f552321d6069a46207e5cd0f64fa9bb78e2a261b366",
1919
build_file_content = """
2020
load("@build_bazel_rules_apple//apple:apple.bzl", "apple_static_framework_import")
2121
@@ -33,7 +33,7 @@ apple_static_framework_import(
3333
http_archive(
3434
name = "com_github_keith_swift_syntax",
3535
build_file = "@com_github_keith_swift_syntax_bazel//:SwiftSyntax.BUILD",
36-
sha256 = "d652af27b8a986d8fe4967292839374e06e3a962382318eaf00e0278746b6a41",
37-
strip_prefix = "swift-syntax-swift-5.7-DEVELOPMENT-SNAPSHOT-2022-08-30-a",
38-
url = "https://github.com/apple/swift-syntax/archive/refs/tags/swift-5.7-DEVELOPMENT-SNAPSHOT-2022-08-30-a.tar.gz",
36+
sha256 = "ea96dcd129ed4a05ea0efd7dbe39d929d47c55b1b5b8c2c7a8fce5c7de0bc4d8",
37+
strip_prefix = "swift-syntax-0.50700.1",
38+
url = "https://github.com/apple/swift-syntax/archive/refs/tags/0.50700.1.tar.gz",
3939
)

0 commit comments

Comments
 (0)