Skip to content
Merged
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
22 changes: 22 additions & 0 deletions .github/workflows/main_using_main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: main branch, main toolchain

on:
push:
branches:
- 'main'

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
tests:
name: Test
uses: swiftlang/github-workflows/.github/workflows/swift_package_test.yml@main
with:
linux_swift_versions: '["nightly-main"]'
linux_os_versions: '["amazonlinux2", "jammy"]'
windows_swift_versions: '["nightly-main"]'
enable_macos_checks: true
macos_exclude_xcode_versions: '[{"xcode_version": "16.2"}, {"xcode_version": "16.3"}, {"xcode_version": "16.4"}]'
enable_wasm_sdk_build: true
22 changes: 22 additions & 0 deletions .github/workflows/main_using_release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: main branch, 6.2 toolchain

on:
push:
branches:
- 'main'

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
tests:
name: Test
uses: swiftlang/github-workflows/.github/workflows/swift_package_test.yml@main
with:
linux_swift_versions: '["nightly-6.2"]'
linux_os_versions: '["amazonlinux2", "jammy"]'
windows_swift_versions: '["nightly-6.2"]'
enable_macos_checks: true
macos_exclude_xcode_versions: '[{"xcode_version": "16.2"}, {"xcode_version": "16.3"}, {"xcode_version": "16.4"}]'
enable_wasm_sdk_build: true
2 changes: 1 addition & 1 deletion .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
linux_os_versions: '["amazonlinux2", "jammy"]'
windows_swift_versions: '["nightly-main", "nightly-6.2"]'
enable_macos_checks: true
macos_exclude_xcode_versions: "[{\"xcode_version\": \"16.2\"}, {\"xcode_version\": \"16.3\"}, {\"xcode_version\": \"16.4\"}]"
macos_exclude_xcode_versions: '[{"xcode_version": "16.2"}, {"xcode_version": "16.3"}, {"xcode_version": "16.4"}]'
enable_wasm_sdk_build: true
soundness:
name: Soundness
Expand Down