This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.

The Swift Package Index logo.Swift Package Index

Track the adoption of Swift 6 strict concurrency checks for data race safety. How many packages are Ready for Swift 6?

Build Information

Successful build of NotarizeProcess with Swift 6.0 for macOS (SPM).

Swift 6 data race errors: 6

Build Command

env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete

Build Log

========================================
RunAll
========================================
Builder version: 4.40.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/phimage/NotarizeProcess.git
Reference: master
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/phimage/NotarizeProcess
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
HEAD is now at aee3040 Add github metadata: workflow and funding
Cloned https://github.com/phimage/NotarizeProcess.git
Revision (git rev-parse @):
aee3040eb46b53aff64598a02a6c3557b07dc610
SUCCESS checkout https://github.com/phimage/NotarizeProcess.git at master
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.0
Building package at path:  $workDir
https://github.com/phimage/NotarizeProcess.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete
Building for debugging...
[0/4] Write sources
[3/4] Write swift-version-6F35C1178C84523A.txt
[5/13] Compiling NotarizationAuditLog NotarizationAuditLog.swift
[6/13] Emitting module NotarizationAuditLog
[7/13] Compiling NotarizationInfo NotarizationUpload.swift
[8/13] Compiling NotarizationInfo NotarizationResponse.swift
[9/13] Compiling NotarizationInfo NotarizationStatus.swift
[10/13] Compiling NotarizationInfo NotarizationInfo.swift
[11/13] Compiling NotarizationInfo NotarizationHistory.swift
[12/13] Emitting module NotarizationInfo
[13/13] Compiling NotarizationInfo NotarizationError.swift
[14/21] Compiling NotarizeProcess WaitMethod.swift
[15/21] Compiling NotarizeProcess Processable.swift
/Users/admin/builder/spi-builder-workspace/Sources/NotarizeProcess/Processable.swift:30:16: warning: static property 'launchPath' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
28 |
29 | struct XcRun: Processable {
30 |     static var launchPath = "/usr/bin/xcrun"
   |                |- warning: static property 'launchPath' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'launchPath' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'launchPath' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 | }
32 |
/Users/admin/builder/spi-builder-workspace/Sources/NotarizeProcess/Processable.swift:34:16: warning: static property 'launchPath' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
32 |
33 | struct Ditto: Processable {
34 |     static var launchPath = "/usr/bin/ditto"
   |                |- warning: static property 'launchPath' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'launchPath' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'launchPath' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 | }
36 |
[16/21] Compiling NotarizeProcess NotarizeProcess.swift
[17/21] Compiling NotarizeProcess NotarizeProcessAction.swift
/Users/admin/builder/spi-builder-workspace/Sources/NotarizeProcess/NotarizeProcessAction.swift:19:23: warning: static property 'notarize' is not concurrency-safe because non-'Sendable' type 'NotarizeProcessAction' may have shared mutable state; this is an error in the Swift 6 language mode
 9 | import NotarizationInfo
10 |
11 | public struct NotarizeProcessAction: OptionSet {
   |               `- note: consider making struct 'NotarizeProcessAction' conform to the 'Sendable' protocol
12 |
13 |     public let rawValue: Int
   :
17 |     }
18 |
19 |     public static let notarize = NotarizeProcessAction(rawValue: 1 << 0)
   |                       |- warning: static property 'notarize' is not concurrency-safe because non-'Sendable' type 'NotarizeProcessAction' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'notarize' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |     public static let wait = NotarizeProcessAction(rawValue: 1 << 1)
21 |     public static let staple = NotarizeProcessAction(rawValue: 1 << 2)
/Users/admin/builder/spi-builder-workspace/Sources/NotarizeProcess/NotarizeProcessAction.swift:20:23: warning: static property 'wait' is not concurrency-safe because non-'Sendable' type 'NotarizeProcessAction' may have shared mutable state; this is an error in the Swift 6 language mode
 9 | import NotarizationInfo
10 |
11 | public struct NotarizeProcessAction: OptionSet {
   |               `- note: consider making struct 'NotarizeProcessAction' conform to the 'Sendable' protocol
12 |
13 |     public let rawValue: Int
   :
18 |
19 |     public static let notarize = NotarizeProcessAction(rawValue: 1 << 0)
20 |     public static let wait = NotarizeProcessAction(rawValue: 1 << 1)
   |                       |- warning: static property 'wait' is not concurrency-safe because non-'Sendable' type 'NotarizeProcessAction' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'wait' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |     public static let staple = NotarizeProcessAction(rawValue: 1 << 2)
22 |
/Users/admin/builder/spi-builder-workspace/Sources/NotarizeProcess/NotarizeProcessAction.swift:21:23: warning: static property 'staple' is not concurrency-safe because non-'Sendable' type 'NotarizeProcessAction' may have shared mutable state; this is an error in the Swift 6 language mode
 9 | import NotarizationInfo
10 |
11 | public struct NotarizeProcessAction: OptionSet {
   |               `- note: consider making struct 'NotarizeProcessAction' conform to the 'Sendable' protocol
12 |
13 |     public let rawValue: Int
   :
19 |     public static let notarize = NotarizeProcessAction(rawValue: 1 << 0)
20 |     public static let wait = NotarizeProcessAction(rawValue: 1 << 1)
21 |     public static let staple = NotarizeProcessAction(rawValue: 1 << 2)
   |                       |- warning: static property 'staple' is not concurrency-safe because non-'Sendable' type 'NotarizeProcessAction' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'staple' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |
23 |     public static let all: NotarizeProcessAction = [ .notarize, .wait, .staple]
/Users/admin/builder/spi-builder-workspace/Sources/NotarizeProcess/NotarizeProcessAction.swift:23:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'NotarizeProcessAction' may have shared mutable state; this is an error in the Swift 6 language mode
 9 | import NotarizationInfo
10 |
11 | public struct NotarizeProcessAction: OptionSet {
   |               `- note: consider making struct 'NotarizeProcessAction' conform to the 'Sendable' protocol
12 |
13 |     public let rawValue: Int
   :
21 |     public static let staple = NotarizeProcessAction(rawValue: 1 << 2)
22 |
23 |     public static let all: NotarizeProcessAction = [ .notarize, .wait, .staple]
   |                       |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'NotarizeProcessAction' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'all' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 | }
25 |
[18/21] Compiling NotarizeProcess NotarizePlatform.swift
[19/21] Emitting module NotarizeProcess
/Users/admin/builder/spi-builder-workspace/Sources/NotarizeProcess/NotarizeProcessAction.swift:19:23: warning: static property 'notarize' is not concurrency-safe because non-'Sendable' type 'NotarizeProcessAction' may have shared mutable state; this is an error in the Swift 6 language mode
 9 | import NotarizationInfo
10 |
11 | public struct NotarizeProcessAction: OptionSet {
   |               `- note: consider making struct 'NotarizeProcessAction' conform to the 'Sendable' protocol
12 |
13 |     public let rawValue: Int
   :
17 |     }
18 |
19 |     public static let notarize = NotarizeProcessAction(rawValue: 1 << 0)
   |                       |- warning: static property 'notarize' is not concurrency-safe because non-'Sendable' type 'NotarizeProcessAction' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'notarize' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |     public static let wait = NotarizeProcessAction(rawValue: 1 << 1)
21 |     public static let staple = NotarizeProcessAction(rawValue: 1 << 2)
/Users/admin/builder/spi-builder-workspace/Sources/NotarizeProcess/NotarizeProcessAction.swift:20:23: warning: static property 'wait' is not concurrency-safe because non-'Sendable' type 'NotarizeProcessAction' may have shared mutable state; this is an error in the Swift 6 language mode
 9 | import NotarizationInfo
10 |
11 | public struct NotarizeProcessAction: OptionSet {
   |               `- note: consider making struct 'NotarizeProcessAction' conform to the 'Sendable' protocol
12 |
13 |     public let rawValue: Int
   :
18 |
19 |     public static let notarize = NotarizeProcessAction(rawValue: 1 << 0)
20 |     public static let wait = NotarizeProcessAction(rawValue: 1 << 1)
   |                       |- warning: static property 'wait' is not concurrency-safe because non-'Sendable' type 'NotarizeProcessAction' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'wait' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |     public static let staple = NotarizeProcessAction(rawValue: 1 << 2)
22 |
/Users/admin/builder/spi-builder-workspace/Sources/NotarizeProcess/NotarizeProcessAction.swift:21:23: warning: static property 'staple' is not concurrency-safe because non-'Sendable' type 'NotarizeProcessAction' may have shared mutable state; this is an error in the Swift 6 language mode
 9 | import NotarizationInfo
10 |
11 | public struct NotarizeProcessAction: OptionSet {
   |               `- note: consider making struct 'NotarizeProcessAction' conform to the 'Sendable' protocol
12 |
13 |     public let rawValue: Int
   :
19 |     public static let notarize = NotarizeProcessAction(rawValue: 1 << 0)
20 |     public static let wait = NotarizeProcessAction(rawValue: 1 << 1)
21 |     public static let staple = NotarizeProcessAction(rawValue: 1 << 2)
   |                       |- warning: static property 'staple' is not concurrency-safe because non-'Sendable' type 'NotarizeProcessAction' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'staple' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |
23 |     public static let all: NotarizeProcessAction = [ .notarize, .wait, .staple]
/Users/admin/builder/spi-builder-workspace/Sources/NotarizeProcess/NotarizeProcessAction.swift:23:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'NotarizeProcessAction' may have shared mutable state; this is an error in the Swift 6 language mode
 9 | import NotarizationInfo
10 |
11 | public struct NotarizeProcessAction: OptionSet {
   |               `- note: consider making struct 'NotarizeProcessAction' conform to the 'Sendable' protocol
12 |
13 |     public let rawValue: Int
   :
21 |     public static let staple = NotarizeProcessAction(rawValue: 1 << 2)
22 |
23 |     public static let all: NotarizeProcessAction = [ .notarize, .wait, .staple]
   |                       |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'NotarizeProcessAction' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'all' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 | }
25 |
/Users/admin/builder/spi-builder-workspace/Sources/NotarizeProcess/Processable.swift:30:16: warning: static property 'launchPath' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
28 |
29 | struct XcRun: Processable {
30 |     static var launchPath = "/usr/bin/xcrun"
   |                |- warning: static property 'launchPath' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'launchPath' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'launchPath' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 | }
32 |
/Users/admin/builder/spi-builder-workspace/Sources/NotarizeProcess/Processable.swift:34:16: warning: static property 'launchPath' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
32 |
33 | struct Ditto: Processable {
34 |     static var launchPath = "/usr/bin/ditto"
   |                |- warning: static property 'launchPath' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'launchPath' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'launchPath' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 | }
36 |
[20/21] Compiling NotarizeProcess NotarizeProcessError.swift
[21/21] Compiling NotarizeProcess NotarizationInfo+AuditLog.swift
Build complete! (21.51s)
Fetching https://github.com/phimage/NotarizationInfo
[1/85] Fetching notarizationinfo
Fetched https://github.com/phimage/NotarizationInfo from cache (0.61s)
Fetching https://github.com/phimage/NotarizationAuditLog
[1/32] Fetching notarizationauditlog
Fetched https://github.com/phimage/NotarizationAuditLog from cache (0.65s)
Creating working copy for https://github.com/phimage/NotarizationInfo
Working copy of https://github.com/phimage/NotarizationInfo resolved at HEAD (0622445)
Creating working copy for https://github.com/phimage/NotarizationAuditLog
Working copy of https://github.com/phimage/NotarizationAuditLog resolved at HEAD (daa6a29)
Build complete.
{
  "dependencies" : [
    {
      "identity" : "notarizationinfo",
      "requirement" : {
        "revision" : [
          "HEAD"
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/phimage/NotarizationInfo"
    },
    {
      "identity" : "notarizationauditlog",
      "requirement" : {
        "revision" : [
          "HEAD"
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/phimage/NotarizationAuditLog"
    }
  ],
  "manifest_display_name" : "NotarizeProcess",
  "name" : "NotarizeProcess",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.15"
    }
  ],
  "products" : [
    {
      "name" : "NotarizeProcess",
      "targets" : [
        "NotarizeProcess"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "NotarizeProcessTests",
      "module_type" : "SwiftTarget",
      "name" : "NotarizeProcessTests",
      "path" : "Tests/NotarizeProcessTests",
      "sources" : [
        "NotarizeProcessTests.swift",
        "XCTestManifests.swift"
      ],
      "target_dependencies" : [
        "NotarizeProcess"
      ],
      "type" : "test"
    },
    {
      "c99name" : "NotarizeProcess",
      "module_type" : "SwiftTarget",
      "name" : "NotarizeProcess",
      "path" : "Sources/NotarizeProcess",
      "product_dependencies" : [
        "NotarizationInfo",
        "NotarizationAuditLog"
      ],
      "product_memberships" : [
        "NotarizeProcess"
      ],
      "sources" : [
        "NotarizationInfo+AuditLog.swift",
        "NotarizePlatform.swift",
        "NotarizeProcess.swift",
        "NotarizeProcessAction.swift",
        "NotarizeProcessError.swift",
        "Processable.swift",
        "WaitMethod.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.1"
}
Done.
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.