The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Successful build of PublisherExpectations, reference main (623cdd), with Swift 6.2 (beta) for macOS (SPM) on 21 Jun 2025 03:18:00 UTC.

Swift 6 data race errors: 0

Build Command

env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64

Build Log

========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/yannxou/PublisherExpectations.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/yannxou/PublisherExpectations
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at 623cdd9 removed duplicated code
Cloned https://github.com/yannxou/PublisherExpectations.git
Revision (git rev-parse @):
623cdd9236d66dd1aa173640cbbd8aab194f7fc3
SUCCESS checkout https://github.com/yannxou/PublisherExpectations.git at main
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.2
Building package at path:  $PWD
https://github.com/yannxou/PublisherExpectations.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
Building for debugging...
[0/5] Write sources
[4/5] Write swift-version-1EA4D86E10B52AF.txt
[6/24] Compiling IssueReporting TestContext.swift
[7/24] Compiling IssueReporting Unimplemented.swift
[8/26] Compiling IssueReporting WithExpectedIssue.swift
[9/26] Compiling IssueReporting WithIssueContext.swift
[10/26] Compiling IssueReporting BreakpointReporter.swift
[11/26] Compiling IssueReporting FatalErrorReporter.swift
[12/26] Emitting module IssueReporting
[13/26] Compiling IssueReporting LockIsolated.swift
[14/26] Compiling IssueReporting Rethrows.swift
[15/26] Compiling IssueReporting Warn.swift
[16/26] Compiling IssueReporting XCTest.swift
[17/26] Compiling IssueReporting IsTesting.swift
[18/26] Compiling IssueReporting IssueReporter.swift
[19/26] Compiling IssueReporting SwiftTesting.swift
[20/26] Compiling IssueReporting UncheckedSendable.swift
[21/26] Compiling IssueReporting ErrorReporting.swift
[22/26] Compiling IssueReporting AppHostWarning.swift
[23/26] Compiling IssueReporting Deprecations.swift
[24/26] Compiling IssueReporting FailureObserver.swift
[25/26] Compiling IssueReporting RuntimeWarningReporter.swift
[26/26] Compiling IssueReporting ReportIssue.swift
[27/29] Compiling XCTestDynamicOverlay Exports.swift
[28/29] Compiling XCTestDynamicOverlay Deprecations.swift
[29/29] Emitting module XCTestDynamicOverlay
[30/55] Emitting module CustomDump
[31/57] Compiling CustomDump Dump.swift
[32/57] Compiling CustomDump AnyType.swift
[33/57] Compiling CustomDump Box.swift
[34/57] Compiling CustomDump XCTAssertDifference.swift
[35/57] Compiling CustomDump XCTAssertNoDifference.swift
[36/57] Compiling CustomDump CustomDumpRepresentable.swift
[37/57] Compiling CustomDump CustomDumpStringConvertible.swift
[38/57] Compiling CustomDump Diff.swift
[39/57] Compiling CustomDump Foundation.swift
[40/57] Compiling CustomDump GameKit.swift
[41/57] Compiling CustomDump KeyPath.swift
[42/57] Compiling CustomDump CoreImage.swift
[43/57] Compiling CustomDump CoreLocation.swift
[44/57] Compiling CustomDump CoreMotion.swift
[45/57] Compiling CustomDump UserNotifications.swift
[46/57] Compiling CustomDump UserNotificationsUI.swift
[47/57] Compiling CustomDump CustomDumpReflectable.swift
[48/57] Compiling CustomDump String.swift
[49/57] Compiling CustomDump Unordered.swift
[50/57] Compiling CustomDump CollectionDifference.swift
[51/57] Compiling CustomDump Mirror.swift
[52/57] Compiling CustomDump Swift.swift
[53/57] Compiling CustomDump SwiftUI.swift
[54/57] Compiling CustomDump UIKit.swift
[55/57] Compiling CustomDump Photos.swift
[56/57] Compiling CustomDump Speech.swift
[57/57] Compiling CustomDump StoreKit.swift
[58/63] Compiling PublisherExpectations FailureMessages.swift
[59/63] Compiling PublisherExpectations PublisherExpectation.swift
[60/63] Compiling PublisherExpectations PublisherValueExpectation.swift
/Users/admin/builder/spi-builder-workspace/Sources/PublisherExpectations/API/PublisherValueExpectation.swift:6:20: warning: class 'PublisherValueExpectation' must restate inherited '@unchecked Sendable' conformance
 4 |
 5 | /// An expectation that is fulfilled when a publisher emits a value that matches a certain condition.
 6 | public final class PublisherValueExpectation<P: Publisher>: XCTestExpectation {
   |                    `- warning: class 'PublisherValueExpectation' must restate inherited '@unchecked Sendable' conformance
 7 |     private var cancellable: AnyCancellable?
 8 |     private let expectedValue: P.Output?
[61/63] Compiling PublisherExpectations PublisherFailureExpectation.swift
/Users/admin/builder/spi-builder-workspace/Sources/PublisherExpectations/API/PublisherFailureExpectation.swift:5:20: warning: class 'PublisherFailureExpectation' must restate inherited '@unchecked Sendable' conformance
  3 |
  4 | /// An expectation that is fulfilled when a publisher completes with a failure.
  5 | public final class PublisherFailureExpectation<P: Publisher>: XCTestExpectation {
    |                    `- warning: class 'PublisherFailureExpectation' must restate inherited '@unchecked Sendable' conformance
  6 |     private var cancellable: AnyCancellable?
  7 |     private var expectedError: P.Failure?
[62/63] Emitting module PublisherExpectations
/Users/admin/builder/spi-builder-workspace/Sources/PublisherExpectations/API/PublisherFailureExpectation.swift:5:20: warning: class 'PublisherFailureExpectation' must restate inherited '@unchecked Sendable' conformance
  3 |
  4 | /// An expectation that is fulfilled when a publisher completes with a failure.
  5 | public final class PublisherFailureExpectation<P: Publisher>: XCTestExpectation {
    |                    `- warning: class 'PublisherFailureExpectation' must restate inherited '@unchecked Sendable' conformance
  6 |     private var cancellable: AnyCancellable?
  7 |     private var expectedError: P.Failure?
/Users/admin/builder/spi-builder-workspace/Sources/PublisherExpectations/API/PublisherFinishedExpectation.swift:5:20: warning: class 'PublisherFinishedExpectation' must restate inherited '@unchecked Sendable' conformance
  3 |
  4 | /// An expectation that is fulfilled when a publisher completes successfully.
  5 | public final class PublisherFinishedExpectation<P: Publisher>: XCTestExpectation {
    |                    `- warning: class 'PublisherFinishedExpectation' must restate inherited '@unchecked Sendable' conformance
  6 |     private var cancellable: AnyCancellable?
  7 |     private let expectedValue: P.Output?
/Users/admin/builder/spi-builder-workspace/Sources/PublisherExpectations/API/PublisherValueExpectation.swift:6:20: warning: class 'PublisherValueExpectation' must restate inherited '@unchecked Sendable' conformance
 4 |
 5 | /// An expectation that is fulfilled when a publisher emits a value that matches a certain condition.
 6 | public final class PublisherValueExpectation<P: Publisher>: XCTestExpectation {
   |                    `- warning: class 'PublisherValueExpectation' must restate inherited '@unchecked Sendable' conformance
 7 |     private var cancellable: AnyCancellable?
 8 |     private let expectedValue: P.Output?
[63/63] Compiling PublisherExpectations PublisherFinishedExpectation.swift
/Users/admin/builder/spi-builder-workspace/Sources/PublisherExpectations/API/PublisherFinishedExpectation.swift:5:20: warning: class 'PublisherFinishedExpectation' must restate inherited '@unchecked Sendable' conformance
  3 |
  4 | /// An expectation that is fulfilled when a publisher completes successfully.
  5 | public final class PublisherFinishedExpectation<P: Publisher>: XCTestExpectation {
    |                    `- warning: class 'PublisherFinishedExpectation' must restate inherited '@unchecked Sendable' conformance
  6 |     private var cancellable: AnyCancellable?
  7 |     private let expectedValue: P.Output?
Build complete! (25.59s)
Fetching https://github.com/pointfreeco/swift-custom-dump
[1/4581] Fetching swift-custom-dump
Fetched https://github.com/pointfreeco/swift-custom-dump from cache (0.94s)
Computing version for https://github.com/pointfreeco/swift-custom-dump
Computed https://github.com/pointfreeco/swift-custom-dump at 1.1.2 (1.45s)
Fetching https://github.com/pointfreeco/xctest-dynamic-overlay
[1/5467] Fetching xctest-dynamic-overlay
Fetched https://github.com/pointfreeco/xctest-dynamic-overlay from cache (1.32s)
Computing version for https://github.com/pointfreeco/xctest-dynamic-overlay
Computed https://github.com/pointfreeco/xctest-dynamic-overlay at 1.5.2 (1.75s)
Creating working copy for https://github.com/pointfreeco/xctest-dynamic-overlay
Working copy of https://github.com/pointfreeco/xctest-dynamic-overlay resolved at 1.5.2
Creating working copy for https://github.com/pointfreeco/swift-custom-dump
Working copy of https://github.com/pointfreeco/swift-custom-dump resolved at 1.1.2
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swift-custom-dump",
      "requirement" : {
        "exact" : [
          "1.1.2"
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/pointfreeco/swift-custom-dump"
    }
  ],
  "manifest_display_name" : "PublisherExpectations",
  "name" : "PublisherExpectations",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "13.0"
    },
    {
      "name" : "maccatalyst",
      "version" : "13.0"
    },
    {
      "name" : "macos",
      "version" : "12.0"
    },
    {
      "name" : "tvos",
      "version" : "14.0"
    },
    {
      "name" : "watchos",
      "version" : "6.0"
    }
  ],
  "products" : [
    {
      "name" : "PublisherExpectations",
      "targets" : [
        "PublisherExpectations"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "PublisherExpectationsTests",
      "module_type" : "SwiftTarget",
      "name" : "PublisherExpectationsTests",
      "path" : "Tests/PublisherExpectationsTests",
      "sources" : [
        "PublisherFailureExpectationTests.swift",
        "PublisherFinishedExpectationTests.swift",
        "PublisherValueExpectationTests.swift"
      ],
      "target_dependencies" : [
        "PublisherExpectations"
      ],
      "type" : "test"
    },
    {
      "c99name" : "PublisherExpectations",
      "module_type" : "SwiftTarget",
      "name" : "PublisherExpectations",
      "path" : "Sources/PublisherExpectations",
      "product_dependencies" : [
        "CustomDump"
      ],
      "product_memberships" : [
        "PublisherExpectations"
      ],
      "sources" : [
        "API/PublisherFailureExpectation.swift",
        "API/PublisherFinishedExpectation.swift",
        "API/PublisherValueExpectation.swift",
        "FailureMessages.swift",
        "PublisherExpectation.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.7"
}
Done.