You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Add macOS job to pull request workflow
* Use swiftly to install swift for macOS
* Customize swiftly home and toolchain locations for macOS
* Build release check for macOS
* Add macOS nightly smoke test and release workflow
Copy file name to clipboardExpand all lines: .github/workflows/nightly_snapshot_check.yml
+12-1Lines changed: 12 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ env:
8
8
SWIFTLY_BOOTSTRAP_VERSION: 1.0.0
9
9
10
10
jobs:
11
-
tests-selfhosted:
11
+
tests-selfhosted-linux:
12
12
name: Test (Smoke Test - Nightly Swift Toolchain) / ${{ matrix.container }}
13
13
runs-on: ubuntu-latest
14
14
strategy:
@@ -26,3 +26,14 @@ jobs:
26
26
# UBI 9 and Ubuntu 20.04 - See https://github.com/swiftlang/swift/issues/80908
27
27
# UBI 9 - See https://github.com/swiftlang/swift/issues/80909
28
28
run: bash -c 'if [[ "${{ matrix.container }}" == "redhat/ubi9" ]]; then swiftly run +main-snapshot swift build --build-tests; elif [[ "${{ matrix.container }}" == "ubuntu:20.04" ]]; then swiftly run +main-snapshot swift build --build-tests; else swiftly run +main-snapshot swift test; fi'
29
+
30
+
tests-selfhosted-macos:
31
+
name: Test (Smoke Test - Nightly Swift Toolchain) / macOS Sequoia ARM64
0 commit comments