Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions Sources/SWBUniversalPlatform/Specs/Clang.xcspec
Original file line number Diff line number Diff line change
Expand Up @@ -3257,6 +3257,7 @@
Architectures = (
x86_64,
x86_64h,
aarch64,
arm64,
arm64e,
);
Expand Down
2 changes: 2 additions & 0 deletions Sources/SWBUniversalPlatform/Specs/Ld.xcspec
Original file line number Diff line number Diff line change
Expand Up @@ -609,6 +609,7 @@
Architectures = (
x86_64,
x86_64h,
aarch64,
arm64,
arm64e,
);
Expand All @@ -628,6 +629,7 @@
Architectures = (
x86_64,
x86_64h,
aarch64,
arm64,
arm64e,
);
Expand Down
1 change: 1 addition & 0 deletions Sources/SWBUniversalPlatform/Specs/Swift.xcspec
Original file line number Diff line number Diff line change
Expand Up @@ -1253,6 +1253,7 @@
Architectures = (
x86_64,
x86_64h,
aarch64,
arm64,
arm64e,
);
Expand Down
Loading