File tree Expand file tree Collapse file tree 2 files changed +7
-4
lines changed
swift-ci/sdks/static-linux Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change 40
40
# blank arch builds all (aarch64,x86_64,armv7)
41
41
# arch: ['']
42
42
# builds only x86_64 to speed up the validation
43
- # arch: ['x86_64']
43
+ arch : ['x86_64']
44
44
# 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']
46
47
runs-on : ubuntu-24.04
47
48
steps :
48
49
- name : Checkout repository
53
54
- name : Build Android SDK
54
55
working-directory : swift-ci/sdks/android
55
56
run : |
56
- TARGET_ARCHS=${{ matrix.arch }} ./build
57
+ BUILD_VERSION=${{ matrix.swift-version }} TARGET_ARCHS=${{ matrix.arch }} ./build
57
58
- name : Get artifact info
58
59
id : info
59
60
shell : bash
Original file line number Diff line number Diff line change 35
35
$DOCKER build --build-arg OS_ARCH_SUFFIX=$OS_ARCH_SUFFIX -t static-swift-linux .
36
36
37
37
# 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
39
41
40
42
mkdir -p products
41
43
You can’t perform that action at this time.
0 commit comments