The Swift Package Index logo.Swift Package Index

Build Information

Successful build of CwlCatchException, reference master (fbe848), with Swift 6.1 for macOS (SPM) on 13 Sep 2025 00:57:21 UTC.

Swift 6 data race errors: 1

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures

Build Log

========================================
RunAll
========================================
Builder version: 4.67.1
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/mattgallagher/cwlcatchexception.git
Reference: master
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/mattgallagher/cwlcatchexception
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
HEAD is now at fbe8489 Merge pull request #12 from jszumski/fix-include-path
Cloned https://github.com/mattgallagher/cwlcatchexception.git
Revision (git rev-parse @):
fbe84898e2e949f91d96b8ea5c7538f5364425f2
SUCCESS checkout https://github.com/mattgallagher/cwlcatchexception.git at master
========================================
ResolveProductDependencies
========================================
Resolving dependencies ...
{
  "identity": ".resolve-product-dependencies",
  "name": "resolve-dependencies",
  "url": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
  "version": "unspecified",
  "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
  "dependencies": [
    {
      "identity": "cwlcatchexception",
      "name": "CwlCatchException",
      "url": "https://github.com/mattgallagher/cwlcatchexception.git",
      "version": "unspecified",
      "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/cwlcatchexception",
      "dependencies": [
      ]
    }
  ]
}
Fetching https://github.com/mattgallagher/cwlcatchexception.git
[5/460] Fetching cwlcatchexception
Fetched https://github.com/mattgallagher/cwlcatchexception.git from cache (0.76s)
Creating working copy for https://github.com/mattgallagher/cwlcatchexception.git
Working copy of https://github.com/mattgallagher/cwlcatchexception.git resolved at master (fbe8489)
warning: '.resolve-product-dependencies': dependency 'cwlcatchexception' is not used by any target
Found 0 product dependencies
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.1
Building package at path:  $PWD
https://github.com/mattgallagher/cwlcatchexception.git
https://github.com/mattgallagher/cwlcatchexception.git
{
  "dependencies" : [
  ],
  "manifest_display_name" : "CwlCatchException",
  "name" : "CwlCatchException",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "CwlCatchException",
      "targets" : [
        "CwlCatchException"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "CwlCatchExceptionTests",
      "module_type" : "SwiftTarget",
      "name" : "CwlCatchExceptionTests",
      "path" : "Tests/CwlCatchExceptionTests",
      "sources" : [
        "CwlCatchExceptionTests.swift"
      ],
      "target_dependencies" : [
        "CwlCatchException"
      ],
      "type" : "test"
    },
    {
      "c99name" : "CwlCatchExceptionSupport",
      "module_type" : "ClangTarget",
      "name" : "CwlCatchExceptionSupport",
      "path" : "Sources/CwlCatchExceptionSupport",
      "product_memberships" : [
        "CwlCatchException"
      ],
      "sources" : [
        "CwlCatchException.m"
      ],
      "type" : "library"
    },
    {
      "c99name" : "CwlCatchException",
      "module_type" : "SwiftTarget",
      "name" : "CwlCatchException",
      "path" : "Sources/CwlCatchException",
      "product_memberships" : [
        "CwlCatchException"
      ],
      "sources" : [
        "CwlCatchException.swift"
      ],
      "target_dependencies" : [
        "CwlCatchExceptionSupport"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.5"
}
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures
Building for debugging...
[0/3] Write sources
[1/3] Write swift-version-2F0A5646E1D333AE.txt
[2/3] Compiling CwlCatchExceptionSupport CwlCatchException.m
[4/5] Emitting module CwlCatchException
/Users/admin/builder/spi-builder-workspace/Sources/CwlCatchException/CwlCatchException.swift:62:13: warning: stored property 'errorUserInfo' of 'Sendable'-conforming struct 'ExceptionError' has non-sendable type '[String : Any]'; this is an error in the Swift 6 language mode
60 | 	public let exception: NSException
61 | 	public let domain = "com.cocoawithlove.catch-exception"
62 | 	public let errorUserInfo: [String: Any]
   |             `- warning: stored property 'errorUserInfo' of 'Sendable'-conforming struct 'ExceptionError' has non-sendable type '[String : Any]'; this is an error in the Swift 6 language mode
63 |
64 | 	public init(_ exception: NSException) {
[5/5] Compiling CwlCatchException CwlCatchException.swift
/Users/admin/builder/spi-builder-workspace/Sources/CwlCatchException/CwlCatchException.swift:62:13: warning: stored property 'errorUserInfo' of 'Sendable'-conforming struct 'ExceptionError' has non-sendable type '[String : Any]'; this is an error in the Swift 6 language mode
60 | 	public let exception: NSException
61 | 	public let domain = "com.cocoawithlove.catch-exception"
62 | 	public let errorUserInfo: [String: Any]
   |             `- warning: stored property 'errorUserInfo' of 'Sendable'-conforming struct 'ExceptionError' has non-sendable type '[String : Any]'; this is an error in the Swift 6 language mode
63 |
64 | 	public init(_ exception: NSException) {
Build complete! (4.93s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "CwlCatchException",
  "name" : "CwlCatchException",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "CwlCatchException",
      "targets" : [
        "CwlCatchException"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "CwlCatchExceptionTests",
      "module_type" : "SwiftTarget",
      "name" : "CwlCatchExceptionTests",
      "path" : "Tests/CwlCatchExceptionTests",
      "sources" : [
        "CwlCatchExceptionTests.swift"
      ],
      "target_dependencies" : [
        "CwlCatchException"
      ],
      "type" : "test"
    },
    {
      "c99name" : "CwlCatchExceptionSupport",
      "module_type" : "ClangTarget",
      "name" : "CwlCatchExceptionSupport",
      "path" : "Sources/CwlCatchExceptionSupport",
      "product_memberships" : [
        "CwlCatchException"
      ],
      "sources" : [
        "CwlCatchException.m"
      ],
      "type" : "library"
    },
    {
      "c99name" : "CwlCatchException",
      "module_type" : "SwiftTarget",
      "name" : "CwlCatchException",
      "path" : "Sources/CwlCatchException",
      "product_memberships" : [
        "CwlCatchException"
      ],
      "sources" : [
        "CwlCatchException.swift"
      ],
      "target_dependencies" : [
        "CwlCatchExceptionSupport"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.5"
}
Done.