File tree Expand file tree Collapse file tree 1 file changed +7
-8
lines changed Expand file tree Collapse file tree 1 file changed +7
-8
lines changed Original file line number Diff line number Diff line change 9
9
build :
10
10
name : Build Docker images
11
11
runs-on : ubuntu-latest
12
- if : false
13
12
steps :
14
13
- name : Checkout repository
15
14
uses : actions/checkout@v4
26
25
static-linux-build :
27
26
name : Build Static Linux image
28
27
runs-on : ubuntu-latest
29
- if : false
30
28
steps :
31
29
- name : Checkout repository
32
30
uses : actions/checkout@v4
39
37
strategy :
40
38
fail-fast : false
41
39
matrix :
42
- # build only x86_64 to speed up the validation
40
+ # blank arch builds all (aarch64,x86_64,armv7)
41
+ arch : ['']
42
+ # builds only x86_64 to speed up the validation
43
43
# arch: ['x86_64']
44
- arch : ['x86_64', '']
44
+ # arch: ['x86_64', '']
45
45
runs-on : ubuntu-24.04
46
46
steps :
47
47
- name : Checkout repository
77
77
78
78
# There is no way to prevent even a single-file artifact from being zipped:
79
79
# https://github.com/actions/upload-artifact?tab=readme-ov-file#zip-archives
80
- # so we tack ".zip" on to the end of the name
81
- ARTIFACT_NAME="${ARTIFACT_NAME}.zip"
82
-
83
- # e.g.: swift-6.1-RELEASE_android-0.1-x86_64.artifactbundle.tar.gz
80
+ # so the actual artifact download will look like:
81
+ # swift-6.1-RELEASE_android-0.1-x86_64.artifactbundle.tar.gz.zip
84
82
echo "artifact-name=${ARTIFACT_NAME}" >> $GITHUB_OUTPUT
85
83
86
84
# validate some required paths in the artifactbundle
@@ -157,3 +155,4 @@ jobs:
157
155
package-path : ${{ runner.temp }}/swift-algorithms
158
156
installed-sdk : ${{ steps.info.outputs.sdk-id }}
159
157
installed-swift : ${{ steps.info.outputs.swift-root }}
158
+
You can’t perform that action at this time.
0 commit comments