@@ -10,15 +10,27 @@ concurrency:
10
10
11
11
jobs :
12
12
tests :
13
- name : Test
13
+ name : Test (Native)
14
14
uses : swiftlang/github-workflows/.github/workflows/swift_package_test.yml@main
15
15
with :
16
16
linux_os_versions : ' ["amazonlinux2", "bookworm", "noble", "jammy", "rhel-ubi9"]'
17
17
linux_pre_build_command : ./.github/scripts/linux_pre_build.sh
18
- linux_build_command : ' swift test --no-parallel'
18
+ linux_build_command : ' swift test --no-parallel --build-system native '
19
19
linux_swift_versions : ' ["nightly-main", "nightly-6.2"]'
20
20
windows_swift_versions : ' ["nightly-main"]'
21
- windows_build_command : ' Invoke-Program swift test --no-parallel'
21
+ windows_build_command : ' Invoke-Program swift test --no-parallel --build-system native'
22
+ enable_linux_static_sdk_build : true
23
+ linux_static_sdk_build_command : SWIFTBUILD_STATIC_LINK=1 LLBUILD_STATIC_LINK=1 swift build
24
+ tests-swift-build :
25
+ name : Test (Swift Build)
26
+ uses : swiftlang/github-workflows/.github/workflows/swift_package_test.yml@main
27
+ with :
28
+ linux_os_versions : ' ["amazonlinux2", "bookworm", "noble", "jammy", "rhel-ubi9"]'
29
+ linux_pre_build_command : ./.github/scripts/linux_pre_build.sh
30
+ linux_build_command : ' swift test --no-parallel --build-system swiftbuild'
31
+ linux_swift_versions : ' ["nightly-main",]'
32
+ windows_swift_versions : ' ["nightly-main"]'
33
+ windows_build_command : ' Invoke-Program swift test --no-parallel --build-system swiftbuild'
22
34
enable_linux_static_sdk_build : true
23
35
linux_static_sdk_build_command : SWIFTBUILD_STATIC_LINK=1 LLBUILD_STATIC_LINK=1 swift build
24
36
cmake-smoke-test :
0 commit comments