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 99 build :
1010 name : Build Docker images
1111 runs-on : ubuntu-latest
12- if : false
1312 steps :
1413 - name : Checkout repository
1514 uses : actions/checkout@v4
2625 static-linux-build :
2726 name : Build Static Linux image
2827 runs-on : ubuntu-latest
29- if : false
3028 steps :
3129 - name : Checkout repository
3230 uses : actions/checkout@v4
3937 strategy :
4038 fail-fast : false
4139 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
4343 # arch: ['x86_64']
44- arch : ['x86_64', '']
44+ # arch: ['x86_64', '']
4545 runs-on : ubuntu-24.04
4646 steps :
4747 - name : Checkout repository
7777
7878 # There is no way to prevent even a single-file artifact from being zipped:
7979 # 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
8482 echo "artifact-name=${ARTIFACT_NAME}" >> $GITHUB_OUTPUT
8583
8684 # validate some required paths in the artifactbundle
@@ -157,3 +155,4 @@ jobs:
157155 package-path : ${{ runner.temp }}/swift-algorithms
158156 installed-sdk : ${{ steps.info.outputs.sdk-id }}
159157 installed-swift : ${{ steps.info.outputs.swift-root }}
158+
You can’t perform that action at this time.
0 commit comments