-
Notifications
You must be signed in to change notification settings - Fork 121
pipeline: Include steps to test using SwiftBuild build system #752
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
7e250ee
to
b61447c
Compare
b61447c
to
9169cfb
Compare
.github/workflows/pull_request.yml
Outdated
windows_build_command: 'Invoke-Program swift test --no-parallel' | ||
windows_build_command: 'Invoke-Program swift test --no-parallel --build-system native' | ||
enable_linux_static_sdk_build: true | ||
linux_static_sdk_build_command: SWIFTBUILD_STATIC_LINK=1 LLBUILD_STATIC_LINK=1 swift build |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
missing --build-system native
.github/workflows/pull_request.yml
Outdated
linux_build_command: 'swift test --no-parallel --build-system swiftbuild' | ||
linux_swift_versions: '["nightly-main",]' | ||
windows_swift_versions: '["nightly-main"]' | ||
windows_build_command: 'Invoke-Program swift test --no-parallel --build-system swiftbuild' | ||
enable_linux_static_sdk_build: true | ||
linux_static_sdk_build_command: SWIFTBUILD_STATIC_LINK=1 LLBUILD_STATIC_LINK=1 swift build |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
missing --build-system swiftbuild
9169cfb
to
291952a
Compare
291952a
to
ed08d83
Compare
matrix: | ||
buildSystem: ["native", "swiftbuild" ] | ||
linuxSwiftVersion: ['["nightly-main", "nightly-6.2"]', '["nightly-main"]'] | ||
exclude: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
clever!
No description provided.