Skip to content

Commit 3719c06

Browse files
committed
Update CI
1 parent c1f68d3 commit 3719c06

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -547,7 +547,8 @@ install_android_sdk() {
547547

548548
log "Installing Android Swift SDK: $ANDROID_SDK_TAG"
549549

550-
local android_sdk_filename="${ANDROID_SDK_TAG}_android.artifactbundle.tar.gz"
550+
# FIXME: we will be removing the "-0.1" suffix
551+
local android_sdk_filename="${ANDROID_SDK_TAG}_android-0.1.artifactbundle.tar.gz"
551552
local sdk_url="${ANDROID_SDK_DOWNLOAD_ROOT}/${ANDROID_SDK_TAG}/${android_sdk_filename}"
552553

553554
log "Running: ${SWIFT_EXECUTABLE_FOR_ANDROID_SDK} sdk install ${sdk_url} --checksum ${ANDROID_SDK_CHECKSUM}"

.github/workflows/test-sdks.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,11 @@ jobs:
2020
steps:
2121
- name: Create Package
2222
run: swift package init --name SwiftDemo
23-
- name: Build Static Linux
24-
run: |
25-
curl -s --retry 3 https://raw.githubusercontent.com/swift-android-sdk/github-workflows/refs/heads/android-workflow/.github/workflows/scripts/install-and-build-with-sdk.sh | \
26-
bash -s -- --static --flags="$BUILD_FLAGS" ${{ matrix.swift_version }}
2723
- name: Build Android
2824
run: |
2925
curl -s --retry 3 https://raw.githubusercontent.com/swift-android-sdk/github-workflows/refs/heads/android-workflow/.github/workflows/scripts/install-and-build-with-sdk.sh | \
3026
bash -s -- --android --flags="$BUILD_FLAGS" ${{ matrix.swift_version }}
31-
27+
- name: Build Static Linux
28+
run: |
29+
curl -s --retry 3 https://raw.githubusercontent.com/swift-android-sdk/github-workflows/refs/heads/android-workflow/.github/workflows/scripts/install-and-build-with-sdk.sh | \
30+
bash -s -- --static --flags="$BUILD_FLAGS" ${{ matrix.swift_version }}

0 commit comments

Comments
 (0)