Skip to content

Commit 5b64336

Browse files
committed
Don't short circuit failures, we want to see them.
1 parent 18de7e6 commit 5b64336

File tree

7 files changed

+10
-16
lines changed

7 files changed

+10
-16
lines changed

.github/workflows/ios-tests.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ jobs:
2828
if: ${{ github.event_name == 'push' || needs.check-changes.outputs.changed == 'true' }}
2929
needs: check-changes
3030
strategy:
31+
fail-fast: false
3132
matrix:
3233
xcode: [ "16.0", "16.1" ]
3334
os: [ macos-14, macos-15 ]

.github/workflows/linux-tests.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ jobs:
3333
if: ${{ github.event_name == 'push' || needs.check-changes.outputs.changed == 'true' }}
3434
needs: check-changes
3535
strategy:
36+
fail-fast: false
3637
matrix:
3738
swift: [ "swift:6.0.2" ]
3839
os: [ amazonlinux2, focal, jammy, rhel-ubi9, mantic, noble ]

.github/workflows/macos-tests.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ jobs:
2828
if: ${{ github.event_name == 'push' || needs.check-changes.outputs.changed == 'true' }}
2929
needs: check-changes
3030
strategy:
31+
fail-fast: false
3132
matrix:
3233
xcode: [ "16.0", "16.1" ]
3334
os: [ macos-14, macos-15 ]
@@ -53,5 +54,5 @@ jobs:
5354
needs: build-macos-matrix
5455
steps:
5556
- name: Check build matrix status
56-
if: ${{ needs.build-ios-matrix.result != 'success' }}
57+
if: ${{ needs.build-macos-matrix.result != 'success' }}
5758
run: exit 1

.github/workflows/tvos-tests.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ jobs:
2828
if: ${{ github.event_name == 'push' || needs.check-changes.outputs.changed == 'true' }}
2929
needs: check-changes
3030
strategy:
31+
fail-fast: false
3132
matrix:
3233
xcode: [ "16.0", "16.1" ]
3334
os: [ macos-14, macos-15 ]
@@ -53,5 +54,5 @@ jobs:
5354
needs: build-tvos-matrix
5455
steps:
5556
- name: Check build matrix status
56-
if: ${{ needs.build-ios-matrix.result != 'success' }}
57+
if: ${{ needs.build-tvos-matrix.result != 'success' }}
5758
run: exit 1

.github/workflows/visionos-tests.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ jobs:
2828
if: ${{ github.event_name == 'push' || needs.check-changes.outputs.changed == 'true' }}
2929
needs: check-changes
3030
strategy:
31+
fail-fast: false
3132
matrix:
3233
xcode: [ "16.0", "16.1" ]
3334
os: [ macos-14, macos-15 ]
@@ -53,5 +54,5 @@ jobs:
5354
needs: build-visionos-matrix
5455
steps:
5556
- name: Check build matrix status
56-
if: ${{ needs.build-ios-matrix.result != 'success' }}
57+
if: ${{ needs.build-visionos-matrix.result != 'success' }}
5758
run: exit 1

.github/workflows/watchos-tests.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ jobs:
2828
if: ${{ github.event_name == 'push' || needs.check-changes.outputs.changed == 'true' }}
2929
needs: check-changes
3030
strategy:
31+
fail-fast: false
3132
matrix:
3233
xcode: [ "16.0", "16.1" ]
3334
os: [ macos-14, macos-15 ]
@@ -53,5 +54,5 @@ jobs:
5354
needs: build-watchos-matrix
5455
steps:
5556
- name: Check build matrix status
56-
if: ${{ needs.build-ios-matrix.result != 'success' }}
57+
if: ${{ needs.build-watchos-matrix.result != 'success' }}
5758
run: exit 1

Package.swift

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,6 @@ let package = Package(
2424
Package.Dependency.package(url: "https://github.com/apple/swift-async-algorithms.git", from: "1.0.0")
2525
Package.Dependency.package(url: "https://github.com/nicklockwood/SwiftFormat.git", from: "0.54.1")
2626
Package.Dependency.package(url: "https://github.com/swiftlang/swift-syntax.git", .upToNextMajor(from: "600.0.1"))
27-
28-
#if os(Linux)
29-
// Linux does not come bundled with swift-testing
30-
Package.Dependency.package(url: "https://github.com/apple/swift-testing.git", exact: "0.11.0")
31-
#endif
32-
3327
},
3428

3529
targets: .init {
@@ -50,12 +44,6 @@ let package = Package(
5044
name: "VexilTests",
5145
dependencies: .init {
5246
Target.Dependency.target(name: "Vexil")
53-
54-
#if os(Linux)
55-
// Linux does not come bundled with swift-testing
56-
Target.Dependency.product(name: "Testing", package: "swift-testing")
57-
#endif
58-
5947
},
6048
swiftSettings: [
6149
.swiftLanguageMode(.v6),

0 commit comments

Comments
 (0)