Skip to content

Commit 4276853

Browse files
authored
Android 6.3 support (#251)
1 parent 531b791 commit 4276853

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/scripts/install-and-build-with-sdk.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ command -v jq >/dev/null || install_package jq
199199
SWIFT_API_INSTALL_ROOT="https://www.swift.org/api/v1/install"
200200

201201
# Transforms a minor Swift release version into its latest patch version
202-
# and gets the checksum for the patch version's Static Linux and/or Wasm Swift SDK.
202+
# and gets the checksum for the patch version's Android, Static Linux, or Wasm Swift SDK.
203203
#
204204
# $1 (string): A minor Swift version, e.g. "6.1"
205205
# Output: A string of the form "<patch-version>|<android-checksum>|<static-checksum>|<static-version>|<wasm-checksum>
@@ -233,7 +233,7 @@ find_latest_swift_version() {
233233
.[]
234234
| select(.name == $version)
235235
| .platforms[]
236-
| select(.platform == "android")
236+
| select(.platform == "android-sdk")
237237
| .checksum
238238
')
239239

.github/workflows/swift_package_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ on:
7373
android_sdk_versions:
7474
type: string
7575
description: "Android Swift SDK version list (JSON)"
76-
default: "[\"nightly-main\", \"nightly-6.3\"]"
76+
default: "[\"nightly-main\", \"nightly-6.3\", \"6.3\"]"
7777
android_exclude_swift_versions:
7878
type: string
7979
description: "Exclude Android Swift SDK version list (JSON)"

0 commit comments

Comments
 (0)