Skip to content

Commit a705d09

Browse files
committed
Swift Android build 6.2
1 parent 80901f2 commit a705d09

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

.github/workflows/pull_request.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,10 @@ jobs:
4040
# blank arch builds all (aarch64,x86_64,armv7)
4141
#arch: ['']
4242
# builds only x86_64 to speed up the validation
43-
#arch: ['x86_64']
43+
arch: ['x86_64']
4444
# build both the quick (x86_64) and complete (aarch64,x86_64,armv7) SDKs
45-
arch: ['x86_64', '']
45+
#arch: ['x86_64', '']
46+
swift-version: ['release', 'devel', 'trunk']
4647
runs-on: ubuntu-24.04
4748
steps:
4849
- name: Checkout repository
@@ -53,7 +54,7 @@ jobs:
5354
- name: Build Android SDK
5455
working-directory: swift-ci/sdks/android
5556
run: |
56-
TARGET_ARCHS=${{ matrix.arch }} ./build
57+
BUILD_VERSION=${{ matrix.swift-version }} TARGET_ARCHS=${{ matrix.arch }} ./build
5758
- name: Get artifact info
5859
id: info
5960
shell: bash

swift-ci/sdks/static-linux/build

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,9 @@ esac
3535
$DOCKER build --build-arg OS_ARCH_SUFFIX=$OS_ARCH_SUFFIX -t static-swift-linux .
3636

3737
# Check-out the sources
38-
scripts/fetch-source.sh --clone-with-ssh --source-dir source
38+
# disabled --clone-with-ssh for fork CI which doesn't have the keys
39+
scripts/fetch-source.sh --source-dir source
40+
#scripts/fetch-source.sh --clone-with-ssh --source-dir source
3941

4042
mkdir -p products
4143

0 commit comments

Comments
 (0)