File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed
Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 2626 with :
2727 # Linux
2828 linux_os_versions : ' ["jammy", "rhel-ubi9", "amazonlinux2"]'
29- linux_host_archs : ' ["x86_64", "aarch64" ]'
29+ linux_host_archs : ' ["x86_64"]'
3030 linux_build_command : |
3131 cd tests/TestPackage
3232 swift build
Original file line number Diff line number Diff line change 5353 linux_host_archs :
5454 type : string
5555 description : " Linux arch list (JSON)"
56- default : " [\" x86_64\" ]"
56+ default : " [\" x86_64\" , \" aarch64\" ]"
57+ linux_exclude_host_archs :
58+ type : string
59+ description : " Exclude Linux arch list (JSON)"
60+ default : " [{\" arch\" : \" aarch64\" }]"
5761 linux_static_sdk_versions :
5862 type : string
5963 description : " Static Linux Swift SDK version list (JSON)"
@@ -313,6 +317,7 @@ jobs:
313317 arch : ${{ fromJson(inputs.linux_host_archs) }}
314318 exclude :
315319 - ${{ fromJson(inputs.linux_exclude_swift_versions) }}
320+ - ${{ fromJson(inputs.linux_exclude_host_archs) }}
316321 - ${{ fromJson((!inputs.enable_linux_checks && inputs.linux_swift_versions) || '[]') }}
317322 - ${{ fromJson((!inputs.enable_linux_checks && inputs.linux_os_versions) || '[]') }}
318323 - ${{ fromJson((!inputs.enable_linux_checks && inputs.linux_host_archs) || '[]') }}
@@ -387,6 +392,7 @@ jobs:
387392 arch : ${{ fromJson(inputs.linux_host_archs) }}
388393 exclude :
389394 - ${{ fromJson(inputs.linux_static_sdk_exclude_swift_versions) }}
395+ - ${{ fromJson(inputs.linux_exclude_host_archs) }}
390396 - ${{ fromJson((!inputs.enable_linux_static_sdk_build && inputs.linux_static_sdk_versions) || '[]') }}
391397 - ${{ fromJson((!inputs.enable_linux_static_sdk_build && inputs.linux_os_versions) || '[]') }}
392398 - ${{ fromJson((!inputs.enable_linux_static_sdk_build && inputs.linux_host_archs) || '[]') }}
You can’t perform that action at this time.
0 commit comments