Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on:
xcode_version:
description: 'The Xcode version to use for building'
required: true
default: '26.0.1'
default: '26.3.0'
type: string
macos_version:
description: 'The minimum macOS version to support'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dry-run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SWIFT_SYNTAX_VERSION: 602.0.0
XCODE_VERSION: 26.0.1
XCODE_VERSION: 26.3.0
RULES_SWIFT_VERSION: 3.1.2
MACOS_VERSION: 13.0
steps:
Expand Down
15 changes: 0 additions & 15 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -78,21 +78,6 @@ bazel_dep(name = "rules_swift", version = "$RULES_SWIFT_VERSION", repo_name = "b
bazel_dep(name = "rules_apple", version = "$RULES_APPLE_VERSION", repo_name = "build_bazel_rules_apple")
EOF

# TODO: remove this eventually
# swift-syntax 601.0.x does not properly declare the version marker target
# so we add it to the BUILD file manually.
if [ "$SWIFT_SYNTAX_VERSION" == "601.0.1" ]; then
echo "NOTE: patching swift-syntax BUILD.bazel for version marker module in swift-syntax $SWIFT_SYNTAX_VERSION"
cat >>"BUILD.bazel" <<EOF
swift_syntax_library(
name = "SwiftSyntax601",
srcs = glob(["Sources/VersionMarkerModules/SwiftSyntax601/**/*.swift"]),
deps = [
],
)
EOF
fi

# Shared build flags:
# - set the minimum macOS version to the version specified in the workflow input
# - set the host macOS version to the version specified in the workflow input
Expand Down
Loading