@@ -28,25 +28,14 @@ jobs:
28
28
fail-fast : false
29
29
matrix :
30
30
include :
31
- # - swift-version: 'swift-6.2-branch'
32
- # build-type: 'docker'
33
- # build-compiler: '1'
34
- # runner: 'self-hosted'
35
- # - swift-version: 'development'
36
- # build-type: 'docker'
37
- # build-compiler: '1'
38
- # runner: 'self-hosted'
39
- - swift-version : ' swift-6.2-branch'
31
+ - swift-version : ' tag:swift-DEVELOPMENT-SNAPSHOT-2025-09-13-a'
32
+ # - swift-version: 'tag:swift-6.2-DEVELOPMENT-SNAPSHOT-2025-09-10-a'
40
33
build-type : ' docker'
41
- build-compiler : ' 0'
42
- runner : ' ubuntu-24.04'
43
- - swift-version : ' development'
44
- build-type : ' docker'
45
- build-compiler : ' 0'
46
- runner : ' ubuntu-24.04'
34
+ build-compiler : ' 1'
35
+ runner : ' self-hosted'
47
36
runs-on : ${{ matrix.runner }}
48
- # 15 hour timeout
49
- timeout-minutes : 900
37
+ # 16 hour timeout
38
+ timeout-minutes : 960
50
39
steps :
51
40
- name : Free Disk Space
52
41
if : ${{ matrix.runner != 'self-hosted' }}
63
52
run : |
64
53
# these variabes are used by build-docker and build-local
65
54
# to determine which Swift version to build for
66
- echo "BUILD_SCHEME =${{ matrix.swift-version }}" >> $GITHUB_ENV
55
+ echo "SWIFT_VERSION =${{ matrix.swift-version }}" >> $GITHUB_ENV
67
56
# pass the build-compiler matrix through to the build script
68
57
echo "BUILD_COMPILER=${{ matrix.build-compiler }}" >> $GITHUB_ENV
69
58
echo "TARGET_ARCHS=${{ matrix.arch }}" >> $GITHUB_ENV
@@ -75,12 +64,12 @@ jobs:
75
64
working-directory : swift-ci/sdks/android
76
65
run : |
77
66
sudo apt install -q patchelf build-essential cmake ninja-build python3 golang git gnupg2 libcurl4-openssl-dev libedit-dev libicu-dev libncurses5-dev libpython3-dev libsqlite3-dev libxml2-dev rsync uuid-dev uuid-runtime tzdata curl unzip
78
- ./build-local ${BUILD_SCHEME } ${WORKDIR}
67
+ ./build-local ${SWIFT_VERSION } ${WORKDIR}
79
68
- name : Build Android SDK (Docker)
80
69
if : ${{ matrix.build-type == 'docker' }}
81
70
working-directory : swift-ci/sdks/android
82
71
run : |
83
- ./build-docker ${BUILD_SCHEME } ${WORKDIR}
72
+ ./build-docker ${SWIFT_VERSION } ${WORKDIR}
84
73
- name : Install Host Toolchain
85
74
if : ${{ matrix.build-type == 'docker' }}
86
75
working-directory : swift-ci/sdks/android
0 commit comments