The Swift Package Index logo.Swift Package Index

Build Information

Successful build of AsyncObservable, reference main (0c7bde), with Swift 6.2 for macOS (SPM) on 23 Jun 2025 07:08:51 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/meech-ward/AsyncObservable.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/meech-ward/AsyncObservable
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at 0c7bdec     remove continuation manually if terminated by not being assigned
Cloned https://github.com/meech-ward/AsyncObservable.git
Revision (git rev-parse @):
0c7bdec1fb0c5341de7e463385683cb0b655f885
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/meech-ward/AsyncObservable.git at main
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.2
Building package at path:  $PWD
https://github.com/meech-ward/AsyncObservable.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
Building for debugging...
[0/3] Write sources
[2/3] Write swift-version-1EA4D86E10B52AF.txt
[4/9] Compiling AsyncObservable AsyncObservableReadOnly.swift
[5/9] Compiling AsyncObservable StreamOf.swift
/Users/admin/builder/spi-builder-workspace/Sources/AsyncObservable/StreamOf.swift:10:69: warning: conformance of 'AsyncStream<Element>.Continuation.BufferingPolicy' to protocol 'Sendable' conflicts with that stated in the type's module '_Concurrency' and will be ignored; there cannot be more than one conformance, even with different conditional bounds
 8 | #else
 9 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
10 | extension AsyncStream<Any>.Continuation.BufferingPolicy: @unchecked Sendable {}
   |                                                                     `- warning: conformance of 'AsyncStream<Element>.Continuation.BufferingPolicy' to protocol 'Sendable' conflicts with that stated in the type's module '_Concurrency' and will be ignored; there cannot be more than one conformance, even with different conditional bounds
11 | #endif
12 |
_Concurrency.AsyncStream.Continuation.BufferingPolicy:3:47: note: 'AsyncStream<Element>.Continuation.BufferingPolicy' declares conformance to protocol 'Sendable' here
1 | generic struct AsyncStream {
2 |   struct Continuation {
3 | public enum AsyncStream<Element>.Continuation.BufferingPolicy : Sendable {
  |                                               `- note: 'AsyncStream<Element>.Continuation.BufferingPolicy' declares conformance to protocol 'Sendable' here
4 |     case unbounded
5 |     case bufferingOldest(Int)
[6/9] Compiling AsyncObservable AsyncObservableUnwrapped.swift
[7/9] Compiling AsyncObservable AsyncObservable.swift
[8/9] Emitting module AsyncObservable
/Users/admin/builder/spi-builder-workspace/Sources/AsyncObservable/StreamOf.swift:10:69: warning: conformance of 'AsyncStream<Element>.Continuation.BufferingPolicy' to protocol 'Sendable' conflicts with that stated in the type's module '_Concurrency' and will be ignored; there cannot be more than one conformance, even with different conditional bounds
 8 | #else
 9 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
10 | extension AsyncStream<Any>.Continuation.BufferingPolicy: @unchecked Sendable {}
   |                                                                     `- warning: conformance of 'AsyncStream<Element>.Continuation.BufferingPolicy' to protocol 'Sendable' conflicts with that stated in the type's module '_Concurrency' and will be ignored; there cannot be more than one conformance, even with different conditional bounds
11 | #endif
12 |
_Concurrency.AsyncStream.Continuation.BufferingPolicy:3:47: note: 'AsyncStream<Element>.Continuation.BufferingPolicy' declares conformance to protocol 'Sendable' here
1 | generic struct AsyncStream {
2 |   struct Continuation {
3 | public enum AsyncStream<Element>.Continuation.BufferingPolicy : Sendable {
  |                                               `- note: 'AsyncStream<Element>.Continuation.BufferingPolicy' declares conformance to protocol 'Sendable' here
4 |     case unbounded
5 |     case bufferingOldest(Int)
[9/9] Compiling AsyncObservable AsyncObservableBase.swift
[10/11] Emitting module AsyncObservableUserDefaults
[11/11] Compiling AsyncObservableUserDefaults AsyncObservableUserDefaults.swift
Build complete! (4.16s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "AsyncObservable",
  "name" : "AsyncObservable",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "AsyncObservable",
      "targets" : [
        "AsyncObservable"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "AsyncObservableUserDefaults",
      "targets" : [
        "AsyncObservableUserDefaults"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "AsyncObservableUserDefaultsTests",
      "module_type" : "SwiftTarget",
      "name" : "AsyncObservableUserDefaultsTests",
      "path" : "Tests/AsyncObservableUserDefaultsTests",
      "sources" : [
        "AsyncObservableUserDefaultsTests.swift"
      ],
      "target_dependencies" : [
        "AsyncObservableUserDefaults"
      ],
      "type" : "test"
    },
    {
      "c99name" : "AsyncObservableUserDefaults",
      "module_type" : "SwiftTarget",
      "name" : "AsyncObservableUserDefaults",
      "path" : "Sources/AsyncObservableUserDefaults",
      "product_memberships" : [
        "AsyncObservableUserDefaults"
      ],
      "sources" : [
        "AsyncObservableUserDefaults.swift"
      ],
      "target_dependencies" : [
        "AsyncObservable"
      ],
      "type" : "library"
    },
    {
      "c99name" : "AsyncObservableTests",
      "module_type" : "SwiftTarget",
      "name" : "AsyncObservableTests",
      "path" : "Tests/AsyncObservableTests",
      "sources" : [
        "AdvancedBehaviorTests.swift",
        "AsyncObservableTests.swift",
        "BasicTests.swift",
        "CompilationTests.swift",
        "ComplexTypesTests.swift",
        "ConcurrencyTests.swift",
        "EdgeCaseTests.swift",
        "ObservableStateTests.swift",
        "StreamTests.swift",
        "TestHelpers.swift",
        "UnwrappedStreamTests.swift"
      ],
      "target_dependencies" : [
        "AsyncObservable"
      ],
      "type" : "test"
    },
    {
      "c99name" : "AsyncObservable",
      "module_type" : "SwiftTarget",
      "name" : "AsyncObservable",
      "path" : "Sources/AsyncObservable",
      "product_memberships" : [
        "AsyncObservable",
        "AsyncObservableUserDefaults"
      ],
      "sources" : [
        "AsyncObservable.swift",
        "AsyncObservableBase.swift",
        "AsyncObservableReadOnly.swift",
        "AsyncObservableUnwrapped.swift",
        "StreamOf.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.9"
}
Done.