diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index b36c5875..5292cb10 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -36,6 +36,17 @@ jobs: macos_build_command: swift test && /usr/bin/xcrun xcodebuild -workspace . -scheme SwiftBuild-Package -destination generic/platform=iOS + tests_without_docker: + name: Test without Docker + uses: swiftlang/github-workflows/.github/workflows/swift_package_test.yml@main + needs: [soundness, space-format-check] + with: + enable_linux_checks: false + enable_windows_docker: false + windows_pre_build_command: 'Invoke-Program .\.github\scripts\prebuild.ps1' + windows_swift_versions: '["nightly", "nightly-6.2"]' + windows_build_command: 'Invoke-Program swift test --no-parallel' + windows_os_versions: '["windows-2022", "windows-11-arm"]' cmake-smoke-test: name: cmake-smoke-test uses: swiftlang/github-workflows/.github/workflows/swift_package_test.yml@0.0.1 diff --git a/Sources/SWBUniversalPlatform/Specs/Clang.xcspec b/Sources/SWBUniversalPlatform/Specs/Clang.xcspec index 38df870c..89e1aa1a 100644 --- a/Sources/SWBUniversalPlatform/Specs/Clang.xcspec +++ b/Sources/SWBUniversalPlatform/Specs/Clang.xcspec @@ -3257,6 +3257,7 @@ Architectures = ( x86_64, x86_64h, + aarch64, arm64, arm64e, ); diff --git a/Sources/SWBUniversalPlatform/Specs/Ld.xcspec b/Sources/SWBUniversalPlatform/Specs/Ld.xcspec index 40022fee..6f0b4f32 100644 --- a/Sources/SWBUniversalPlatform/Specs/Ld.xcspec +++ b/Sources/SWBUniversalPlatform/Specs/Ld.xcspec @@ -609,6 +609,7 @@ Architectures = ( x86_64, x86_64h, + aarch64, arm64, arm64e, ); @@ -628,6 +629,7 @@ Architectures = ( x86_64, x86_64h, + aarch64, arm64, arm64e, ); diff --git a/Sources/SWBUniversalPlatform/Specs/Swift.xcspec b/Sources/SWBUniversalPlatform/Specs/Swift.xcspec index ba60e9b1..384b099b 100644 --- a/Sources/SWBUniversalPlatform/Specs/Swift.xcspec +++ b/Sources/SWBUniversalPlatform/Specs/Swift.xcspec @@ -1253,6 +1253,7 @@ Architectures = ( x86_64, x86_64h, + aarch64, arm64, arm64e, );