The Swift Package Index logo.Swift Package Index

Build Information

Successful build of ApprovalTests.Swift, reference master (f4cff7), with Swift 6.1 for macOS (SPM) on 22 Feb 2026 08:44:15 UTC.

Swift 6 data race errors: 0

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.68.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/approvals/ApprovalTests.Swift.git
Reference: master
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/approvals/ApprovalTests.Swift
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
HEAD is now at f4cff70 . d Update markdown snippets
Cloned https://github.com/approvals/ApprovalTests.Swift.git
Revision (git rev-parse @):
f4cff70c80ed2bcaa2e6d745b417dd5b5d739e66
SUCCESS checkout https://github.com/approvals/ApprovalTests.Swift.git at master
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.1
Building package at path:  $PWD
https://github.com/approvals/ApprovalTests.Swift.git
https://github.com/approvals/ApprovalTests.Swift.git
{
  "dependencies" : [
  ],
  "manifest_display_name" : "ApprovalTests.Swift",
  "name" : "ApprovalTests.Swift",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.14"
    },
    {
      "name" : "ios",
      "version" : "12.0"
    }
  ],
  "products" : [
    {
      "name" : "ApprovalTests.Swift",
      "targets" : [
        "ApprovalTests.Swift"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "ApprovalTests_Swift",
      "module_type" : "SwiftTarget",
      "name" : "ApprovalTests.Swift",
      "path" : "ApprovalTests.Swift",
      "product_memberships" : [
        "ApprovalTests.Swift"
      ],
      "sources" : [
        "Approvals.swift",
        "Approvers/ApprovalApprover.swift",
        "Approvers/FileApprover.swift",
        "Approvers/TestFailer.swift",
        "Combinations/CombinationApprovals.swift",
        "Core/ApprovalFailureReporter.swift",
        "Core/ApprovalWriter.swift",
        "Core/Options.swift",
        "Core/Scrubber.swift",
        "Core/Verifiable.swift",
        "Core/VerifyParameters.swift",
        "Namer/ApprovalNamer.swift",
        "Namer/Namer.swift",
        "Namer/NamerFactory.swift",
        "Namer/ParameterizedNamer.swift",
        "Reporters/ExecutableReporter.swift",
        "Reporters/FirstWorkingReporter.swift",
        "Reporters/GenericDiffReporter.swift",
        "Reporters/GenericDiffReporterBase.swift",
        "Reporters/ReportByCallingScript.swift",
        "Reporters/ReportByOpeningReceivedFile.swift",
        "Reporters/ReportContentsWithXCTest.swift",
        "Reporters/ReportMoveCommandToClipboard.swift",
        "Reporters/ReportMoveCommandToConsole.swift",
        "Reporters/ReportWithDiffTool.swift",
        "Reporters/ReportWithEverything.swift",
        "Reporters/ReporterFactory.swift",
        "Reporters/VariousReporters.swift",
        "Scrubbers/ScrubDates.swift",
        "Scrubbers/ScrubNothing.swift",
        "Scrubbers/ScrubWithRegEx.swift",
        "Scrubbers/ScrubWithRegExWithReplacementAliasing.swift",
        "UIKit/UIKitApprovals.swift",
        "Utils/ExecutableQuery.swift",
        "Utils/HelpMessages.swift",
        "Utils/NetUtils.swift",
        "Utils/SimpleLogger.swift",
        "Utils/StringUtils.swift",
        "Utils/SystemUtils.swift",
        "Writers/ApprovalTextWriter.swift",
        "Writers/UIWriter.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.3"
}
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/2] Write sources
[1/2] Write swift-version-2F0A5646E1D333AE.txt
[3/40] Emitting module ApprovalTests_Swift
/Users/admin/builder/spi-builder-workspace/ApprovalTests.Swift/Approvers/FileApprover.swift:4:24: warning: static property 'failer' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | public class FileApprover: ApprovalApprover {
 4 |     private static var failer: Failer = XCTFailer()
   |                        |- warning: static property 'failer' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'failer' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: add '@MainActor' to make static property 'failer' part of global actor 'MainActor'
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 5 |
 6 |     public static func registerFailer(_ failer: Failer) {
/Users/admin/builder/spi-builder-workspace/ApprovalTests.Swift/Reporters/ReporterFactory.swift:2:23: warning: static property 'defaultReporter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 1 | public enum ReporterFactory {
 2 |     public static var defaultReporter: () -> ApprovalFailureReporter = {
   |                       |- warning: static property 'defaultReporter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'defaultReporter' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'defaultReporter' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 3 |         ReportWithDiffTool()
 4 |     }
/Users/admin/builder/spi-builder-workspace/ApprovalTests.Swift/Utils/SimpleLogger.swift:28:23: warning: static property 'timestamp' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 26 |
 27 | public enum SimpleLogger {
 28 |     public static var timestamp = true
    |                       |- warning: static property 'timestamp' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'timestamp' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: add '@MainActor' to make static property 'timestamp' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 29 |     public static var printer: (String) -> Void = { print($0, terminator: "") }
 30 |     public static var timer: () -> Date = { Date() }
/Users/admin/builder/spi-builder-workspace/ApprovalTests.Swift/Utils/SimpleLogger.swift:29:23: warning: static property 'printer' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 27 | public enum SimpleLogger {
 28 |     public static var timestamp = true
 29 |     public static var printer: (String) -> Void = { print($0, terminator: "") }
    |                       |- warning: static property 'printer' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'printer' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: add '@MainActor' to make static property 'printer' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 30 |     public static var timer: () -> Date = { Date() }
 31 |     private static var indent = 0
/Users/admin/builder/spi-builder-workspace/ApprovalTests.Swift/Utils/SimpleLogger.swift:30:23: warning: static property 'timer' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 28 |     public static var timestamp = true
 29 |     public static var printer: (String) -> Void = { print($0, terminator: "") }
 30 |     public static var timer: () -> Date = { Date() }
    |                       |- warning: static property 'timer' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'timer' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: add '@MainActor' to make static property 'timer' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 31 |     private static var indent = 0
 32 |     private static var hourGlassCount = 0
/Users/admin/builder/spi-builder-workspace/ApprovalTests.Swift/Utils/SimpleLogger.swift:31:24: warning: static property 'indent' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 29 |     public static var printer: (String) -> Void = { print($0, terminator: "") }
 30 |     public static var timer: () -> Date = { Date() }
 31 |     private static var indent = 0
    |                        |- warning: static property 'indent' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'indent' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: add '@MainActor' to make static property 'indent' part of global actor 'MainActor'
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 32 |     private static var hourGlassCount = 0
 33 |     private static var hourGlassWrap = 100
/Users/admin/builder/spi-builder-workspace/ApprovalTests.Swift/Utils/SimpleLogger.swift:32:24: warning: static property 'hourGlassCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 30 |     public static var timer: () -> Date = { Date() }
 31 |     private static var indent = 0
 32 |     private static var hourGlassCount = 0
    |                        |- warning: static property 'hourGlassCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'hourGlassCount' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: add '@MainActor' to make static property 'hourGlassCount' part of global actor 'MainActor'
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 33 |     private static var hourGlassWrap = 100
 34 |     private static var lastDate: Date?
/Users/admin/builder/spi-builder-workspace/ApprovalTests.Swift/Utils/SimpleLogger.swift:33:24: warning: static property 'hourGlassWrap' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 31 |     private static var indent = 0
 32 |     private static var hourGlassCount = 0
 33 |     private static var hourGlassWrap = 100
    |                        |- warning: static property 'hourGlassWrap' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'hourGlassWrap' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: add '@MainActor' to make static property 'hourGlassWrap' part of global actor 'MainActor'
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 34 |     private static var lastDate: Date?
 35 |
/Users/admin/builder/spi-builder-workspace/ApprovalTests.Swift/Utils/SimpleLogger.swift:34:24: warning: static property 'lastDate' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 32 |     private static var hourGlassCount = 0
 33 |     private static var hourGlassWrap = 100
 34 |     private static var lastDate: Date?
    |                        |- warning: static property 'lastDate' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'lastDate' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: add '@MainActor' to make static property 'lastDate' part of global actor 'MainActor'
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 35 |
 36 |     public static func getIndentation() -> String {
[4/44] Compiling ApprovalTests_Swift ExecutableQuery.swift
/Users/admin/builder/spi-builder-workspace/ApprovalTests.Swift/Utils/SimpleLogger.swift:28:23: warning: static property 'timestamp' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 26 |
 27 | public enum SimpleLogger {
 28 |     public static var timestamp = true
    |                       |- warning: static property 'timestamp' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'timestamp' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: add '@MainActor' to make static property 'timestamp' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 29 |     public static var printer: (String) -> Void = { print($0, terminator: "") }
 30 |     public static var timer: () -> Date = { Date() }
/Users/admin/builder/spi-builder-workspace/ApprovalTests.Swift/Utils/SimpleLogger.swift:29:23: warning: static property 'printer' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 27 | public enum SimpleLogger {
 28 |     public static var timestamp = true
 29 |     public static var printer: (String) -> Void = { print($0, terminator: "") }
    |                       |- warning: static property 'printer' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'printer' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: add '@MainActor' to make static property 'printer' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 30 |     public static var timer: () -> Date = { Date() }
 31 |     private static var indent = 0
/Users/admin/builder/spi-builder-workspace/ApprovalTests.Swift/Utils/SimpleLogger.swift:30:23: warning: static property 'timer' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 28 |     public static var timestamp = true
 29 |     public static var printer: (String) -> Void = { print($0, terminator: "") }
 30 |     public static var timer: () -> Date = { Date() }
    |                       |- warning: static property 'timer' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'timer' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: add '@MainActor' to make static property 'timer' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 31 |     private static var indent = 0
 32 |     private static var hourGlassCount = 0
/Users/admin/builder/spi-builder-workspace/ApprovalTests.Swift/Utils/SimpleLogger.swift:31:24: warning: static property 'indent' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 29 |     public static var printer: (String) -> Void = { print($0, terminator: "") }
 30 |     public static var timer: () -> Date = { Date() }
 31 |     private static var indent = 0
    |                        |- warning: static property 'indent' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'indent' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: add '@MainActor' to make static property 'indent' part of global actor 'MainActor'
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 32 |     private static var hourGlassCount = 0
 33 |     private static var hourGlassWrap = 100
/Users/admin/builder/spi-builder-workspace/ApprovalTests.Swift/Utils/SimpleLogger.swift:32:24: warning: static property 'hourGlassCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 30 |     public static var timer: () -> Date = { Date() }
 31 |     private static var indent = 0
 32 |     private static var hourGlassCount = 0
    |                        |- warning: static property 'hourGlassCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'hourGlassCount' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: add '@MainActor' to make static property 'hourGlassCount' part of global actor 'MainActor'
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 33 |     private static var hourGlassWrap = 100
 34 |     private static var lastDate: Date?
/Users/admin/builder/spi-builder-workspace/ApprovalTests.Swift/Utils/SimpleLogger.swift:33:24: warning: static property 'hourGlassWrap' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 31 |     private static var indent = 0
 32 |     private static var hourGlassCount = 0
 33 |     private static var hourGlassWrap = 100
    |                        |- warning: static property 'hourGlassWrap' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'hourGlassWrap' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: add '@MainActor' to make static property 'hourGlassWrap' part of global actor 'MainActor'
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 34 |     private static var lastDate: Date?
 35 |
/Users/admin/builder/spi-builder-workspace/ApprovalTests.Swift/Utils/SimpleLogger.swift:34:24: warning: static property 'lastDate' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 32 |     private static var hourGlassCount = 0
 33 |     private static var hourGlassWrap = 100
 34 |     private static var lastDate: Date?
    |                        |- warning: static property 'lastDate' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'lastDate' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: add '@MainActor' to make static property 'lastDate' part of global actor 'MainActor'
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 35 |
 36 |     public static func getIndentation() -> String {
[5/44] Compiling ApprovalTests_Swift HelpMessages.swift
/Users/admin/builder/spi-builder-workspace/ApprovalTests.Swift/Utils/SimpleLogger.swift:28:23: warning: static property 'timestamp' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 26 |
 27 | public enum SimpleLogger {
 28 |     public static var timestamp = true
    |                       |- warning: static property 'timestamp' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'timestamp' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: add '@MainActor' to make static property 'timestamp' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 29 |     public static var printer: (String) -> Void = { print($0, terminator: "") }
 30 |     public static var timer: () -> Date = { Date() }
/Users/admin/builder/spi-builder-workspace/ApprovalTests.Swift/Utils/SimpleLogger.swift:29:23: warning: static property 'printer' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 27 | public enum SimpleLogger {
 28 |     public static var timestamp = true
 29 |     public static var printer: (String) -> Void = { print($0, terminator: "") }
    |                       |- warning: static property 'printer' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'printer' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: add '@MainActor' to make static property 'printer' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 30 |     public static var timer: () -> Date = { Date() }
 31 |     private static var indent = 0
/Users/admin/builder/spi-builder-workspace/ApprovalTests.Swift/Utils/SimpleLogger.swift:30:23: warning: static property 'timer' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 28 |     public static var timestamp = true
 29 |     public static var printer: (String) -> Void = { print($0, terminator: "") }
 30 |     public static var timer: () -> Date = { Date() }
    |                       |- warning: static property 'timer' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'timer' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: add '@MainActor' to make static property 'timer' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 31 |     private static var indent = 0
 32 |     private static var hourGlassCount = 0
/Users/admin/builder/spi-builder-workspace/ApprovalTests.Swift/Utils/SimpleLogger.swift:31:24: warning: static property 'indent' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 29 |     public static var printer: (String) -> Void = { print($0, terminator: "") }
 30 |     public static var timer: () -> Date = { Date() }
 31 |     private static var indent = 0
    |                        |- warning: static property 'indent' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'indent' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: add '@MainActor' to make static property 'indent' part of global actor 'MainActor'
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 32 |     private static var hourGlassCount = 0
 33 |     private static var hourGlassWrap = 100
/Users/admin/builder/spi-builder-workspace/ApprovalTests.Swift/Utils/SimpleLogger.swift:32:24: warning: static property 'hourGlassCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 30 |     public static var timer: () -> Date = { Date() }
 31 |     private static var indent = 0
 32 |     private static var hourGlassCount = 0
    |                        |- warning: static property 'hourGlassCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'hourGlassCount' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: add '@MainActor' to make static property 'hourGlassCount' part of global actor 'MainActor'
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 33 |     private static var hourGlassWrap = 100
 34 |     private static var lastDate: Date?
/Users/admin/builder/spi-builder-workspace/ApprovalTests.Swift/Utils/SimpleLogger.swift:33:24: warning: static property 'hourGlassWrap' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 31 |     private static var indent = 0
 32 |     private static var hourGlassCount = 0
 33 |     private static var hourGlassWrap = 100
    |                        |- warning: static property 'hourGlassWrap' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'hourGlassWrap' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: add '@MainActor' to make static property 'hourGlassWrap' part of global actor 'MainActor'
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 34 |     private static var lastDate: Date?
 35 |
/Users/admin/builder/spi-builder-workspace/ApprovalTests.Swift/Utils/SimpleLogger.swift:34:24: warning: static property 'lastDate' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 32 |     private static var hourGlassCount = 0
 33 |     private static var hourGlassWrap = 100
 34 |     private static var lastDate: Date?
    |                        |- warning: static property 'lastDate' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'lastDate' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: add '@MainActor' to make static property 'lastDate' part of global actor 'MainActor'
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 35 |
 36 |     public static func getIndentation() -> String {
[6/44] Compiling ApprovalTests_Swift NetUtils.swift
/Users/admin/builder/spi-builder-workspace/ApprovalTests.Swift/Utils/SimpleLogger.swift:28:23: warning: static property 'timestamp' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 26 |
 27 | public enum SimpleLogger {
 28 |     public static var timestamp = true
    |                       |- warning: static property 'timestamp' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'timestamp' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: add '@MainActor' to make static property 'timestamp' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 29 |     public static var printer: (String) -> Void = { print($0, terminator: "") }
 30 |     public static var timer: () -> Date = { Date() }
/Users/admin/builder/spi-builder-workspace/ApprovalTests.Swift/Utils/SimpleLogger.swift:29:23: warning: static property 'printer' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 27 | public enum SimpleLogger {
 28 |     public static var timestamp = true
 29 |     public static var printer: (String) -> Void = { print($0, terminator: "") }
    |                       |- warning: static property 'printer' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'printer' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: add '@MainActor' to make static property 'printer' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 30 |     public static var timer: () -> Date = { Date() }
 31 |     private static var indent = 0
/Users/admin/builder/spi-builder-workspace/ApprovalTests.Swift/Utils/SimpleLogger.swift:30:23: warning: static property 'timer' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 28 |     public static var timestamp = true
 29 |     public static var printer: (String) -> Void = { print($0, terminator: "") }
 30 |     public static var timer: () -> Date = { Date() }
    |                       |- warning: static property 'timer' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'timer' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: add '@MainActor' to make static property 'timer' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 31 |     private static var indent = 0
 32 |     private static var hourGlassCount = 0
/Users/admin/builder/spi-builder-workspace/ApprovalTests.Swift/Utils/SimpleLogger.swift:31:24: warning: static property 'indent' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 29 |     public static var printer: (String) -> Void = { print($0, terminator: "") }
 30 |     public static var timer: () -> Date = { Date() }
 31 |     private static var indent = 0
    |                        |- warning: static property 'indent' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'indent' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: add '@MainActor' to make static property 'indent' part of global actor 'MainActor'
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 32 |     private static var hourGlassCount = 0
 33 |     private static var hourGlassWrap = 100
/Users/admin/builder/spi-builder-workspace/ApprovalTests.Swift/Utils/SimpleLogger.swift:32:24: warning: static property 'hourGlassCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 30 |     public static var timer: () -> Date = { Date() }
 31 |     private static var indent = 0
 32 |     private static var hourGlassCount = 0
    |                        |- warning: static property 'hourGlassCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'hourGlassCount' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: add '@MainActor' to make static property 'hourGlassCount' part of global actor 'MainActor'
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 33 |     private static var hourGlassWrap = 100
 34 |     private static var lastDate: Date?
/Users/admin/builder/spi-builder-workspace/ApprovalTests.Swift/Utils/SimpleLogger.swift:33:24: warning: static property 'hourGlassWrap' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 31 |     private static var indent = 0
 32 |     private static var hourGlassCount = 0
 33 |     private static var hourGlassWrap = 100
    |                        |- warning: static property 'hourGlassWrap' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'hourGlassWrap' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: add '@MainActor' to make static property 'hourGlassWrap' part of global actor 'MainActor'
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 34 |     private static var lastDate: Date?
 35 |
/Users/admin/builder/spi-builder-workspace/ApprovalTests.Swift/Utils/SimpleLogger.swift:34:24: warning: static property 'lastDate' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 32 |     private static var hourGlassCount = 0
 33 |     private static var hourGlassWrap = 100
 34 |     private static var lastDate: Date?
    |                        |- warning: static property 'lastDate' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'lastDate' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: add '@MainActor' to make static property 'lastDate' part of global actor 'MainActor'
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 35 |
 36 |     public static func getIndentation() -> String {
[7/44] Compiling ApprovalTests_Swift SimpleLogger.swift
/Users/admin/builder/spi-builder-workspace/ApprovalTests.Swift/Utils/SimpleLogger.swift:28:23: warning: static property 'timestamp' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 26 |
 27 | public enum SimpleLogger {
 28 |     public static var timestamp = true
    |                       |- warning: static property 'timestamp' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'timestamp' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: add '@MainActor' to make static property 'timestamp' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 29 |     public static var printer: (String) -> Void = { print($0, terminator: "") }
 30 |     public static var timer: () -> Date = { Date() }
/Users/admin/builder/spi-builder-workspace/ApprovalTests.Swift/Utils/SimpleLogger.swift:29:23: warning: static property 'printer' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 27 | public enum SimpleLogger {
 28 |     public static var timestamp = true
 29 |     public static var printer: (String) -> Void = { print($0, terminator: "") }
    |                       |- warning: static property 'printer' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'printer' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: add '@MainActor' to make static property 'printer' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 30 |     public static var timer: () -> Date = { Date() }
 31 |     private static var indent = 0
/Users/admin/builder/spi-builder-workspace/ApprovalTests.Swift/Utils/SimpleLogger.swift:30:23: warning: static property 'timer' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 28 |     public static var timestamp = true
 29 |     public static var printer: (String) -> Void = { print($0, terminator: "") }
 30 |     public static var timer: () -> Date = { Date() }
    |                       |- warning: static property 'timer' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'timer' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: add '@MainActor' to make static property 'timer' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 31 |     private static var indent = 0
 32 |     private static var hourGlassCount = 0
/Users/admin/builder/spi-builder-workspace/ApprovalTests.Swift/Utils/SimpleLogger.swift:31:24: warning: static property 'indent' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 29 |     public static var printer: (String) -> Void = { print($0, terminator: "") }
 30 |     public static var timer: () -> Date = { Date() }
 31 |     private static var indent = 0
    |                        |- warning: static property 'indent' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'indent' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: add '@MainActor' to make static property 'indent' part of global actor 'MainActor'
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 32 |     private static var hourGlassCount = 0
 33 |     private static var hourGlassWrap = 100
/Users/admin/builder/spi-builder-workspace/ApprovalTests.Swift/Utils/SimpleLogger.swift:32:24: warning: static property 'hourGlassCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 30 |     public static var timer: () -> Date = { Date() }
 31 |     private static var indent = 0
 32 |     private static var hourGlassCount = 0
    |                        |- warning: static property 'hourGlassCount' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'hourGlassCount' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: add '@MainActor' to make static property 'hourGlassCount' part of global actor 'MainActor'
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 33 |     private static var hourGlassWrap = 100
 34 |     private static var lastDate: Date?
/Users/admin/builder/spi-builder-workspace/ApprovalTests.Swift/Utils/SimpleLogger.swift:33:24: warning: static property 'hourGlassWrap' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 31 |     private static var indent = 0
 32 |     private static var hourGlassCount = 0
 33 |     private static var hourGlassWrap = 100
    |                        |- warning: static property 'hourGlassWrap' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'hourGlassWrap' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: add '@MainActor' to make static property 'hourGlassWrap' part of global actor 'MainActor'
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 34 |     private static var lastDate: Date?
 35 |
/Users/admin/builder/spi-builder-workspace/ApprovalTests.Swift/Utils/SimpleLogger.swift:34:24: warning: static property 'lastDate' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 32 |     private static var hourGlassCount = 0
 33 |     private static var hourGlassWrap = 100
 34 |     private static var lastDate: Date?
    |                        |- warning: static property 'lastDate' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'lastDate' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: add '@MainActor' to make static property 'lastDate' part of global actor 'MainActor'
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 35 |
 36 |     public static func getIndentation() -> String {
[8/44] Compiling ApprovalTests_Swift ReportWithEverything.swift
/Users/admin/builder/spi-builder-workspace/ApprovalTests.Swift/Reporters/ReporterFactory.swift:2:23: warning: static property 'defaultReporter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 1 | public enum ReporterFactory {
 2 |     public static var defaultReporter: () -> ApprovalFailureReporter = {
   |                       |- warning: static property 'defaultReporter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'defaultReporter' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'defaultReporter' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 3 |         ReportWithDiffTool()
 4 |     }
[9/44] Compiling ApprovalTests_Swift ReporterFactory.swift
/Users/admin/builder/spi-builder-workspace/ApprovalTests.Swift/Reporters/ReporterFactory.swift:2:23: warning: static property 'defaultReporter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 1 | public enum ReporterFactory {
 2 |     public static var defaultReporter: () -> ApprovalFailureReporter = {
   |                       |- warning: static property 'defaultReporter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'defaultReporter' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'defaultReporter' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 3 |         ReportWithDiffTool()
 4 |     }
[10/44] Compiling ApprovalTests_Swift VariousReporters.swift
/Users/admin/builder/spi-builder-workspace/ApprovalTests.Swift/Reporters/ReporterFactory.swift:2:23: warning: static property 'defaultReporter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 1 | public enum ReporterFactory {
 2 |     public static var defaultReporter: () -> ApprovalFailureReporter = {
   |                       |- warning: static property 'defaultReporter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'defaultReporter' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'defaultReporter' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 3 |         ReportWithDiffTool()
 4 |     }
[11/44] Compiling ApprovalTests_Swift ScrubDates.swift
/Users/admin/builder/spi-builder-workspace/ApprovalTests.Swift/Reporters/ReporterFactory.swift:2:23: warning: static property 'defaultReporter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 1 | public enum ReporterFactory {
 2 |     public static var defaultReporter: () -> ApprovalFailureReporter = {
   |                       |- warning: static property 'defaultReporter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'defaultReporter' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'defaultReporter' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 3 |         ReportWithDiffTool()
 4 |     }
[12/44] Compiling ApprovalTests_Swift GenericDiffReporter.swift
[13/44] Compiling ApprovalTests_Swift GenericDiffReporterBase.swift
[14/44] Compiling ApprovalTests_Swift ReportByCallingScript.swift
[15/44] Compiling ApprovalTests_Swift ReportByOpeningReceivedFile.swift
[16/44] Compiling ApprovalTests_Swift ApprovalFailureReporter.swift
[17/44] Compiling ApprovalTests_Swift ApprovalWriter.swift
[18/44] Compiling ApprovalTests_Swift Options.swift
[19/44] Compiling ApprovalTests_Swift Scrubber.swift
[20/44] Compiling ApprovalTests_Swift NamerFactory.swift
[21/44] Compiling ApprovalTests_Swift ParameterizedNamer.swift
[22/44] Compiling ApprovalTests_Swift ExecutableReporter.swift
[23/44] Compiling ApprovalTests_Swift FirstWorkingReporter.swift
[24/44] Compiling ApprovalTests_Swift ScrubNothing.swift
[25/44] Compiling ApprovalTests_Swift ScrubWithRegEx.swift
[26/44] Compiling ApprovalTests_Swift ScrubWithRegExWithReplacementAliasing.swift
[27/44] Compiling ApprovalTests_Swift UIKitApprovals.swift
[28/44] Compiling ApprovalTests_Swift Verifiable.swift
[29/44] Compiling ApprovalTests_Swift VerifyParameters.swift
[30/44] Compiling ApprovalTests_Swift ApprovalNamer.swift
[31/44] Compiling ApprovalTests_Swift Namer.swift
[32/44] Compiling ApprovalTests_Swift ReportContentsWithXCTest.swift
[33/44] Compiling ApprovalTests_Swift ReportMoveCommandToClipboard.swift
[34/44] Compiling ApprovalTests_Swift ReportMoveCommandToConsole.swift
[35/44] Compiling ApprovalTests_Swift ReportWithDiffTool.swift
[36/44] Compiling ApprovalTests_Swift Approvals.swift
/Users/admin/builder/spi-builder-workspace/ApprovalTests.Swift/Approvers/FileApprover.swift:4:24: warning: static property 'failer' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | public class FileApprover: ApprovalApprover {
 4 |     private static var failer: Failer = XCTFailer()
   |                        |- warning: static property 'failer' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'failer' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: add '@MainActor' to make static property 'failer' part of global actor 'MainActor'
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 5 |
 6 |     public static func registerFailer(_ failer: Failer) {
[37/44] Compiling ApprovalTests_Swift ApprovalApprover.swift
/Users/admin/builder/spi-builder-workspace/ApprovalTests.Swift/Approvers/FileApprover.swift:4:24: warning: static property 'failer' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | public class FileApprover: ApprovalApprover {
 4 |     private static var failer: Failer = XCTFailer()
   |                        |- warning: static property 'failer' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'failer' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: add '@MainActor' to make static property 'failer' part of global actor 'MainActor'
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 5 |
 6 |     public static func registerFailer(_ failer: Failer) {
[38/44] Compiling ApprovalTests_Swift FileApprover.swift
/Users/admin/builder/spi-builder-workspace/ApprovalTests.Swift/Approvers/FileApprover.swift:4:24: warning: static property 'failer' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | public class FileApprover: ApprovalApprover {
 4 |     private static var failer: Failer = XCTFailer()
   |                        |- warning: static property 'failer' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'failer' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: add '@MainActor' to make static property 'failer' part of global actor 'MainActor'
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 5 |
 6 |     public static func registerFailer(_ failer: Failer) {
[39/44] Compiling ApprovalTests_Swift TestFailer.swift
/Users/admin/builder/spi-builder-workspace/ApprovalTests.Swift/Approvers/FileApprover.swift:4:24: warning: static property 'failer' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | public class FileApprover: ApprovalApprover {
 4 |     private static var failer: Failer = XCTFailer()
   |                        |- warning: static property 'failer' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'failer' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: add '@MainActor' to make static property 'failer' part of global actor 'MainActor'
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 5 |
 6 |     public static func registerFailer(_ failer: Failer) {
[40/44] Compiling ApprovalTests_Swift CombinationApprovals.swift
/Users/admin/builder/spi-builder-workspace/ApprovalTests.Swift/Approvers/FileApprover.swift:4:24: warning: static property 'failer' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | public class FileApprover: ApprovalApprover {
 4 |     private static var failer: Failer = XCTFailer()
   |                        |- warning: static property 'failer' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'failer' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: add '@MainActor' to make static property 'failer' part of global actor 'MainActor'
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 5 |
 6 |     public static func registerFailer(_ failer: Failer) {
[41/44] Compiling ApprovalTests_Swift StringUtils.swift
[42/44] Compiling ApprovalTests_Swift SystemUtils.swift
[43/44] Compiling ApprovalTests_Swift ApprovalTextWriter.swift
[44/44] Compiling ApprovalTests_Swift UIWriter.swift
Build complete! (11.11s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "ApprovalTests.Swift",
  "name" : "ApprovalTests.Swift",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.14"
    },
    {
      "name" : "ios",
      "version" : "12.0"
    }
  ],
  "products" : [
    {
      "name" : "ApprovalTests.Swift",
      "targets" : [
        "ApprovalTests.Swift"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "ApprovalTests_Swift",
      "module_type" : "SwiftTarget",
      "name" : "ApprovalTests.Swift",
      "path" : "ApprovalTests.Swift",
      "product_memberships" : [
        "ApprovalTests.Swift"
      ],
      "sources" : [
        "Approvals.swift",
        "Approvers/ApprovalApprover.swift",
        "Approvers/FileApprover.swift",
        "Approvers/TestFailer.swift",
        "Combinations/CombinationApprovals.swift",
        "Core/ApprovalFailureReporter.swift",
        "Core/ApprovalWriter.swift",
        "Core/Options.swift",
        "Core/Scrubber.swift",
        "Core/Verifiable.swift",
        "Core/VerifyParameters.swift",
        "Namer/ApprovalNamer.swift",
        "Namer/Namer.swift",
        "Namer/NamerFactory.swift",
        "Namer/ParameterizedNamer.swift",
        "Reporters/ExecutableReporter.swift",
        "Reporters/FirstWorkingReporter.swift",
        "Reporters/GenericDiffReporter.swift",
        "Reporters/GenericDiffReporterBase.swift",
        "Reporters/ReportByCallingScript.swift",
        "Reporters/ReportByOpeningReceivedFile.swift",
        "Reporters/ReportContentsWithXCTest.swift",
        "Reporters/ReportMoveCommandToClipboard.swift",
        "Reporters/ReportMoveCommandToConsole.swift",
        "Reporters/ReportWithDiffTool.swift",
        "Reporters/ReportWithEverything.swift",
        "Reporters/ReporterFactory.swift",
        "Reporters/VariousReporters.swift",
        "Scrubbers/ScrubDates.swift",
        "Scrubbers/ScrubNothing.swift",
        "Scrubbers/ScrubWithRegEx.swift",
        "Scrubbers/ScrubWithRegExWithReplacementAliasing.swift",
        "UIKit/UIKitApprovals.swift",
        "Utils/ExecutableQuery.swift",
        "Utils/HelpMessages.swift",
        "Utils/NetUtils.swift",
        "Utils/SimpleLogger.swift",
        "Utils/StringUtils.swift",
        "Utils/SystemUtils.swift",
        "Writers/ApprovalTextWriter.swift",
        "Writers/UIWriter.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.3"
}
Done.