Skip to content
Draft
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/load-env.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ on:
description: 'Xcode version'
type: string
required: false
default: '26.0'
default: '26.4'
macOS-runner-os:
description: 'macOS runner OS (macos-15, macos-latest)'
type: string
Expand Down
2 changes: 1 addition & 1 deletion .swift-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
6.2.0
6.3.0
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// swift-tools-version: 6.2
// swift-tools-version: 6.3
// The swift-tools-version declares the minimum version of Swift required to build this package.

import CompilerPluginSupport
Expand Down
6 changes: 2 additions & 4 deletions scripts/tools/swift/swift.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,7 @@ swift_install_sdk() {
fi
echo "SWIFT_VERSION_SHORT: ${SWIFT_VERSION_SHORT}"

SWIFT_SDK_FOLDER="swift-${SWIFT_VERSION_SHORT}-RELEASE_static-linux-0.0.1"
# For Swift 6.3 linux static SDK version is 0.1.0
# SWIFT_SDK_FOLDER="swift-${SWIFT_VERSION_SHORT}-RELEASE_static-linux-0.1.0"
SWIFT_SDK_FOLDER="swift-${SWIFT_VERSION_SHORT}-RELEASE_static-linux-0.1.0"
ARTIFACT_BUNDLE_FILE="${SWIFT_SDK_FOLDER}.artifactbundle"

if ! swift sdk list | grep "${SWIFT_SDK_FOLDER}" > /dev/null; then
Expand All @@ -34,7 +32,7 @@ swift_install_sdk() {

SDK_URL="https://download.swift.org/swift-${SWIFT_VERSION_SHORT}-release/static-sdk/swift-${SWIFT_VERSION_SHORT}-RELEASE/${ARTIFACT_BUNDLE_FILE}.tar.gz"
echo "SDK URL: ${SDK_URL}"
echo "Copied SDK URL: https://download.swift.org/swift-6.2-release/static-sdk/swift-6.2-RELEASE/swift-6.2-RELEASE_static-linux-0.0.1.artifactbundle.tar.gz"
echo "Copied SDK URL: https://download.swift.org/swift-6.3-release/static-sdk/swift-6.3-RELEASE/swift-6.3-RELEASE_static-linux-0.1.0.artifactbundle.tar.gz"

echo "Downloading Swift SDK..."
curl --output "/tmp/${ARTIFACT_BUNDLE_FILE}.tar.gz" "${SDK_URL}"
Expand Down
Loading