We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f0b6057 commit 1161e56Copy full SHA for 1161e56
swift-ci/sdks/android/scripts/toolchain-vars.sh
@@ -35,5 +35,8 @@ case "${BUILD_SCHEME}" in
35
esac
36
37
SWIFT_BASE=$SWIFT_TAG-$HOST_OS
38
-export SWIFT_TOOLCHAIN_URL="https://download.swift.org/$SWIFT_BRANCH/$OS/$SWIFT_TAG/$SWIFT_BASE.tar.gz"
39
-
+if [[ "${BUILD_SCHEME}" == "development" ]]; then
+ export SWIFT_TOOLCHAIN_URL="https://download.swift.org/$SWIFT_BRANCH/$OS/swift-DEVELOPMENT-SNAPSHOT-2025-06-12-a/swift-DEVELOPMENT-SNAPSHOT-2025-06-12-a-$HOST_OS.tar.gz"
40
+else
41
+ export SWIFT_TOOLCHAIN_URL="https://download.swift.org/$SWIFT_BRANCH/$OS/$SWIFT_TAG/$SWIFT_BASE.tar.gz"
42
+fi
0 commit comments