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 Prelude, reference main (cf08b0), with Swift 6.2 (beta) for macOS (SPM) on 20 Jun 2025 14:17:57 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/JustinGuedes/prelude.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/JustinGuedes/prelude
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at cf08b07 Add support for Apple Watch
Cloned https://github.com/JustinGuedes/prelude.git
Revision (git rev-parse @):
cf08b076457a55b193ff54881a277391a0c3e1dd
SUCCESS checkout https://github.com/JustinGuedes/prelude.git at main
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.2
Building package at path:  $PWD
https://github.com/JustinGuedes/prelude.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-1EA4D86E10B52AF.txt
[3/17] Compiling Prelude Sequence.swift
/Users/admin/builder/spi-builder-workspace/Sources/Prelude/Extensions/Sequence.swift:8:23: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 6 | public extension Sequence {
 7 |
 8 |     func flatMap<T>(_ transform: @escaping (Element) async throws -> T?) async rethrows -> [T] {
   |                       `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 9 |         var result: [T] = []
10 |         try await withThrowingTaskGroup(of: Optional<T>.self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Prelude/Extensions/Sequence.swift:27:23: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
25 |     }
26 |
27 |     func flatMap<T>(_ transform: @escaping (Element) async throws -> [T]) async rethrows -> [T] {
   |                       `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
28 |         var result: [T] = []
29 |         try await withThrowingTaskGroup(of: Array<T>.self) { group in
[4/17] Compiling Prelude String.swift
/Users/admin/builder/spi-builder-workspace/Sources/Prelude/Extensions/Sequence.swift:8:23: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 6 | public extension Sequence {
 7 |
 8 |     func flatMap<T>(_ transform: @escaping (Element) async throws -> T?) async rethrows -> [T] {
   |                       `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
 9 |         var result: [T] = []
10 |         try await withThrowingTaskGroup(of: Optional<T>.self) { group in
/Users/admin/builder/spi-builder-workspace/Sources/Prelude/Extensions/Sequence.swift:27:23: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
25 |     }
26 |
27 |     func flatMap<T>(_ transform: @escaping (Element) async throws -> [T]) async rethrows -> [T] {
   |                       `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
28 |         var result: [T] = []
29 |         try await withThrowingTaskGroup(of: Array<T>.self) { group in
[5/18] Compiling Prelude XMLDecoderSingleValueDecodingContainer.swift
[6/18] Compiling Prelude XMLElement.swift
[7/18] Compiling Prelude XMLDecoderUnkeyedDecodingContainer.swift
[8/18] Compiling Prelude UIDevice.swift
[9/18] Compiling Prelude Default.swift
[10/18] Compiling Prelude DefaultArray.swift
[11/18] Compiling Prelude DefaultBool.swift
[12/18] Compiling Prelude DefaultCodable.swift
[13/18] Compiling Prelude XMLDecoder.swift
[14/18] Emitting module Prelude
[15/18] Compiling Prelude Array.swift
[16/18] Compiling Prelude Date.swift
[17/18] Compiling Prelude XMLDecoderKeyedDecodingContainer.swift
[18/18] Compiling Prelude XMLParser.swift
Build complete! (5.54s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "Prelude",
  "name" : "Prelude",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "Prelude",
      "targets" : [
        "Prelude"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "PreludeTests",
      "module_type" : "SwiftTarget",
      "name" : "PreludeTests",
      "path" : "Tests/PreludeTests",
      "sources" : [
        "Extensions/SequenceTests.swift"
      ],
      "target_dependencies" : [
        "Prelude"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Prelude",
      "module_type" : "SwiftTarget",
      "name" : "Prelude",
      "path" : "Sources/Prelude",
      "product_memberships" : [
        "Prelude"
      ],
      "sources" : [
        "Extensions/Array.swift",
        "Extensions/Date.swift",
        "Extensions/Sequence.swift",
        "Extensions/String.swift",
        "Extensions/UIDevice.swift",
        "PropertyWrappers/Default/Default.swift",
        "PropertyWrappers/Default/DefaultArray.swift",
        "PropertyWrappers/Default/DefaultBool.swift",
        "PropertyWrappers/Default/DefaultCodable.swift",
        "Utilities/XMLDecoder/XMLDecoder.swift",
        "Utilities/XMLDecoder/XMLDecoderKeyedDecodingContainer.swift",
        "Utilities/XMLDecoder/XMLDecoderSingleValueDecodingContainer.swift",
        "Utilities/XMLDecoder/XMLDecoderUnkeyedDecodingContainer.swift",
        "Utilities/XMLDecoder/XMLElement.swift",
        "Utilities/XMLDecoder/XMLParser.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.6"
}
Done.