The Swift Package Index logo.Swift Package Index

Build Information

Successful build of SwiftRater, reference master (a4241b), with Swift 6.0 for macOS (SPM) on 23 Sep 2025 20:17:45 UTC.

Swift 6 data race errors: 0

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.2.0.app xcrun swift build --arch arm64

Build Log

========================================
RunAll
========================================
Builder version: 4.67.1
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/takecian/SwiftRater.git
Reference: master
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/takecian/SwiftRater
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
HEAD is now at a4241b3 Merge pull request #55 from fl0ge/fix_appName_setter
Cloned https://github.com/takecian/SwiftRater.git
Revision (git rev-parse @):
a4241b31f35fd4c98a901ecd336f47337d2aba5d
SUCCESS checkout https://github.com/takecian/SwiftRater.git at master
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.0
Building package at path:  $PWD
https://github.com/takecian/SwiftRater.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.2.0.app xcrun swift build --arch arm64
Building for debugging...
[0/35] Copying SwiftRaterLocalization.strings
[25/35] Copying PrivacyInfo.xcprivacy
[25/35] Copying SwiftRaterLocalization.strings
[27/35] Copying Info.plist
[27/35] Copying SwiftRaterLocalization.strings
[33/35] Write sources
[34/35] Write swift-version-5BDAB9E9C0126B9D.txt
[36/42] Compiling SwiftRater UsageDataManager.swift
[37/42] Compiling SwiftRater SwiftRaterErrorCode.swift
[38/42] Compiling SwiftRater resource_bundle_accessor.swift
[39/42] Compiling SwiftRater SwiftRaterError.swift
[40/42] Compiling SwiftRater SwiftRaterBundleExtension.swift
[41/42] Emitting module SwiftRater
/Users/admin/builder/spi-builder-workspace/SwiftRater/SwiftRater.swift:359:92: warning: main actor-isolated property 'contentViewController' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
357 | #if os(macOS)
358 |   @discardableResult
359 |   @objc public static func check(host: NSViewController? = NSApplication.shared.keyWindow?.contentViewController) -> Bool {
    |                                                                                            `- warning: main actor-isolated property 'contentViewController' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
360 |     guard UsageDataManager.shared.ratingConditionsHaveBeenMet else {
361 |       return false
AppKit.NSWindow:360:25: note: property declared here
 358 |     open var titlebarSeparatorStyle: NSTitlebarSeparatorStyle { get set }
 359 |     @available(macOS 10.10, *)
 360 |     @MainActor open var contentViewController: NSViewController? { get set }
     |                         `- note: property declared here
 361 |     @available(macOS 10.10, *)
 362 |     public convenience init(contentViewController: NSViewController)
/Users/admin/builder/spi-builder-workspace/SwiftRater/SwiftRater.swift:359:81: warning: main actor-isolated property 'keyWindow' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
357 | #if os(macOS)
358 |   @discardableResult
359 |   @objc public static func check(host: NSViewController? = NSApplication.shared.keyWindow?.contentViewController) -> Bool {
    |                                                                                 `- warning: main actor-isolated property 'keyWindow' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
360 |     guard UsageDataManager.shared.ratingConditionsHaveBeenMet else {
361 |       return false
AppKit.NSApplication:13:30: note: property declared here
 11 |     open func windowWithWindowNumber(_ windowNum: Int) -> NSWindow?
 12 |     weak open var mainWindow: NSWindow? { get }
 13 |     @MainActor weak open var keyWindow: NSWindow? { get }
    |                              `- note: property declared here
 14 |     open var isActive: Bool { get }
 15 |     @available(swift, obsoleted: 3, renamed: "isActive")
/Users/admin/builder/spi-builder-workspace/SwiftRater/SwiftRater.swift:359:74: warning: main actor-isolated class property 'shared' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
357 | #if os(macOS)
358 |   @discardableResult
359 |   @objc public static func check(host: NSViewController? = NSApplication.shared.keyWindow?.contentViewController) -> Bool {
    |                                                                          `- warning: main actor-isolated class property 'shared' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
360 |     guard UsageDataManager.shared.ratingConditionsHaveBeenMet else {
361 |       return false
AppKit.NSApplication:2:20: note: class property declared here
  1 | @MainActor open class NSApplication : NSResponder, NSUserInterfaceValidations, NSMenuItemValidation, NSAccessibilityElementProtocol, NSAccessibilityProtocol {
  2 |     open class var shared: NSApplication { get }
    |                    `- note: class property declared here
  3 |     @available(swift, obsoleted: 3, renamed: "shared")
  4 |     open class var sharedApplication: NSApplication { get }
/Users/admin/builder/spi-builder-workspace/SwiftRater/SwiftRater.swift:368:94: warning: main actor-isolated property 'contentViewController' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
366 |   }
367 |
368 |   @objc public static func rateApp(host: NSViewController? = NSApplication.shared.keyWindow?.contentViewController) {
    |                                                                                              `- warning: main actor-isolated property 'contentViewController' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
369 |     NSLog("[SwiftRater] Trying to show review request dialog.")
370 |     SwiftRater.shared.showRatingAlert(host: host, force: true)
AppKit.NSWindow:360:25: note: property declared here
 358 |     open var titlebarSeparatorStyle: NSTitlebarSeparatorStyle { get set }
 359 |     @available(macOS 10.10, *)
 360 |     @MainActor open var contentViewController: NSViewController? { get set }
     |                         `- note: property declared here
 361 |     @available(macOS 10.10, *)
 362 |     public convenience init(contentViewController: NSViewController)
/Users/admin/builder/spi-builder-workspace/SwiftRater/SwiftRater.swift:368:83: warning: main actor-isolated property 'keyWindow' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
366 |   }
367 |
368 |   @objc public static func rateApp(host: NSViewController? = NSApplication.shared.keyWindow?.contentViewController) {
    |                                                                                   `- warning: main actor-isolated property 'keyWindow' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
369 |     NSLog("[SwiftRater] Trying to show review request dialog.")
370 |     SwiftRater.shared.showRatingAlert(host: host, force: true)
AppKit.NSApplication:13:30: note: property declared here
 11 |     open func windowWithWindowNumber(_ windowNum: Int) -> NSWindow?
 12 |     weak open var mainWindow: NSWindow? { get }
 13 |     @MainActor weak open var keyWindow: NSWindow? { get }
    |                              `- note: property declared here
 14 |     open var isActive: Bool { get }
 15 |     @available(swift, obsoleted: 3, renamed: "isActive")
/Users/admin/builder/spi-builder-workspace/SwiftRater/SwiftRater.swift:368:76: warning: main actor-isolated class property 'shared' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
366 |   }
367 |
368 |   @objc public static func rateApp(host: NSViewController? = NSApplication.shared.keyWindow?.contentViewController) {
    |                                                                            `- warning: main actor-isolated class property 'shared' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
369 |     NSLog("[SwiftRater] Trying to show review request dialog.")
370 |     SwiftRater.shared.showRatingAlert(host: host, force: true)
AppKit.NSApplication:2:20: note: class property declared here
  1 | @MainActor open class NSApplication : NSResponder, NSUserInterfaceValidations, NSMenuItemValidation, NSAccessibilityElementProtocol, NSAccessibilityProtocol {
  2 |     open class var shared: NSApplication { get }
    |                    `- note: class property declared here
  3 |     @available(swift, obsoleted: 3, renamed: "shared")
  4 |     open class var sharedApplication: NSApplication { get }
[42/42] Compiling SwiftRater SwiftRater.swift
/Users/admin/builder/spi-builder-workspace/SwiftRater/SwiftRater.swift:359:92: warning: main actor-isolated property 'contentViewController' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
357 | #if os(macOS)
358 |   @discardableResult
359 |   @objc public static func check(host: NSViewController? = NSApplication.shared.keyWindow?.contentViewController) -> Bool {
    |                                                                                            `- warning: main actor-isolated property 'contentViewController' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
360 |     guard UsageDataManager.shared.ratingConditionsHaveBeenMet else {
361 |       return false
AppKit.NSWindow:360:25: note: property declared here
 358 |     open var titlebarSeparatorStyle: NSTitlebarSeparatorStyle { get set }
 359 |     @available(macOS 10.10, *)
 360 |     @MainActor open var contentViewController: NSViewController? { get set }
     |                         `- note: property declared here
 361 |     @available(macOS 10.10, *)
 362 |     public convenience init(contentViewController: NSViewController)
/Users/admin/builder/spi-builder-workspace/SwiftRater/SwiftRater.swift:359:81: warning: main actor-isolated property 'keyWindow' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
357 | #if os(macOS)
358 |   @discardableResult
359 |   @objc public static func check(host: NSViewController? = NSApplication.shared.keyWindow?.contentViewController) -> Bool {
    |                                                                                 `- warning: main actor-isolated property 'keyWindow' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
360 |     guard UsageDataManager.shared.ratingConditionsHaveBeenMet else {
361 |       return false
AppKit.NSApplication:13:30: note: property declared here
 11 |     open func windowWithWindowNumber(_ windowNum: Int) -> NSWindow?
 12 |     weak open var mainWindow: NSWindow? { get }
 13 |     @MainActor weak open var keyWindow: NSWindow? { get }
    |                              `- note: property declared here
 14 |     open var isActive: Bool { get }
 15 |     @available(swift, obsoleted: 3, renamed: "isActive")
/Users/admin/builder/spi-builder-workspace/SwiftRater/SwiftRater.swift:359:74: warning: main actor-isolated class property 'shared' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
357 | #if os(macOS)
358 |   @discardableResult
359 |   @objc public static func check(host: NSViewController? = NSApplication.shared.keyWindow?.contentViewController) -> Bool {
    |                                                                          `- warning: main actor-isolated class property 'shared' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
360 |     guard UsageDataManager.shared.ratingConditionsHaveBeenMet else {
361 |       return false
AppKit.NSApplication:2:20: note: class property declared here
  1 | @MainActor open class NSApplication : NSResponder, NSUserInterfaceValidations, NSMenuItemValidation, NSAccessibilityElementProtocol, NSAccessibilityProtocol {
  2 |     open class var shared: NSApplication { get }
    |                    `- note: class property declared here
  3 |     @available(swift, obsoleted: 3, renamed: "shared")
  4 |     open class var sharedApplication: NSApplication { get }
/Users/admin/builder/spi-builder-workspace/SwiftRater/SwiftRater.swift:368:94: warning: main actor-isolated property 'contentViewController' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
366 |   }
367 |
368 |   @objc public static func rateApp(host: NSViewController? = NSApplication.shared.keyWindow?.contentViewController) {
    |                                                                                              `- warning: main actor-isolated property 'contentViewController' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
369 |     NSLog("[SwiftRater] Trying to show review request dialog.")
370 |     SwiftRater.shared.showRatingAlert(host: host, force: true)
AppKit.NSWindow:360:25: note: property declared here
 358 |     open var titlebarSeparatorStyle: NSTitlebarSeparatorStyle { get set }
 359 |     @available(macOS 10.10, *)
 360 |     @MainActor open var contentViewController: NSViewController? { get set }
     |                         `- note: property declared here
 361 |     @available(macOS 10.10, *)
 362 |     public convenience init(contentViewController: NSViewController)
/Users/admin/builder/spi-builder-workspace/SwiftRater/SwiftRater.swift:368:83: warning: main actor-isolated property 'keyWindow' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
366 |   }
367 |
368 |   @objc public static func rateApp(host: NSViewController? = NSApplication.shared.keyWindow?.contentViewController) {
    |                                                                                   `- warning: main actor-isolated property 'keyWindow' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
369 |     NSLog("[SwiftRater] Trying to show review request dialog.")
370 |     SwiftRater.shared.showRatingAlert(host: host, force: true)
AppKit.NSApplication:13:30: note: property declared here
 11 |     open func windowWithWindowNumber(_ windowNum: Int) -> NSWindow?
 12 |     weak open var mainWindow: NSWindow? { get }
 13 |     @MainActor weak open var keyWindow: NSWindow? { get }
    |                              `- note: property declared here
 14 |     open var isActive: Bool { get }
 15 |     @available(swift, obsoleted: 3, renamed: "isActive")
/Users/admin/builder/spi-builder-workspace/SwiftRater/SwiftRater.swift:368:76: warning: main actor-isolated class property 'shared' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
366 |   }
367 |
368 |   @objc public static func rateApp(host: NSViewController? = NSApplication.shared.keyWindow?.contentViewController) {
    |                                                                            `- warning: main actor-isolated class property 'shared' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
369 |     NSLog("[SwiftRater] Trying to show review request dialog.")
370 |     SwiftRater.shared.showRatingAlert(host: host, force: true)
AppKit.NSApplication:2:20: note: class property declared here
  1 | @MainActor open class NSApplication : NSResponder, NSUserInterfaceValidations, NSMenuItemValidation, NSAccessibilityElementProtocol, NSAccessibilityProtocol {
  2 |     open class var shared: NSApplication { get }
    |                    `- note: class property declared here
  3 |     @available(swift, obsoleted: 3, renamed: "shared")
  4 |     open class var sharedApplication: NSApplication { get }
Build complete! (6.76s)
Build complete.
{
  "default_localization" : "en",
  "dependencies" : [
  ],
  "manifest_display_name" : "SwiftRater",
  "name" : "SwiftRater",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "13.0"
    },
    {
      "name" : "macos",
      "version" : "10.15"
    }
  ],
  "products" : [
    {
      "name" : "SwiftRater",
      "targets" : [
        "SwiftRater"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "SwiftRaterTests",
      "module_type" : "SwiftTarget",
      "name" : "SwiftRaterTests",
      "path" : "SwiftRaterTests",
      "sources" : [
        "SwiftRaterTests.swift"
      ],
      "target_dependencies" : [
        "SwiftRater"
      ],
      "type" : "test"
    },
    {
      "c99name" : "SwiftRater",
      "module_type" : "SwiftTarget",
      "name" : "SwiftRater",
      "path" : "SwiftRater",
      "product_memberships" : [
        "SwiftRater"
      ],
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/SwiftRater/PrivacyInfo.xcprivacy",
          "rule" : {
            "copy" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/SwiftRater/ar.lproj/SwiftRaterLocalization.strings",
          "rule" : {
            "process" : {
              "localization" : "ar"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/SwiftRater/ca.lproj/SwiftRaterLocalization.strings",
          "rule" : {
            "process" : {
              "localization" : "ca"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/SwiftRater/cs.lproj/SwiftRaterLocalization.strings",
          "rule" : {
            "process" : {
              "localization" : "cs"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/SwiftRater/da.lproj/SwiftRaterLocalization.strings",
          "rule" : {
            "process" : {
              "localization" : "da"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/SwiftRater/de.lproj/SwiftRaterLocalization.strings",
          "rule" : {
            "process" : {
              "localization" : "de"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/SwiftRater/el.lproj/SwiftRaterLocalization.strings",
          "rule" : {
            "process" : {
              "localization" : "el"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/SwiftRater/en.lproj/SwiftRaterLocalization.strings",
          "rule" : {
            "process" : {
              "localization" : "en"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/SwiftRater/es.lproj/SwiftRaterLocalization.strings",
          "rule" : {
            "process" : {
              "localization" : "es"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/SwiftRater/fi.lproj/SwiftRaterLocalization.strings",
          "rule" : {
            "process" : {
              "localization" : "fi"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/SwiftRater/fr.lproj/SwiftRaterLocalization.strings",
          "rule" : {
            "process" : {
              "localization" : "fr"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/SwiftRater/he.lproj/SwiftRaterLocalization.strings",
          "rule" : {
            "process" : {
              "localization" : "he"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/SwiftRater/hu.lproj/SwiftRaterLocalization.strings",
          "rule" : {
            "process" : {
              "localization" : "hu"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/SwiftRater/id.lproj/SwiftRaterLocalization.strings",
          "rule" : {
            "process" : {
              "localization" : "id"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/SwiftRater/it.lproj/SwiftRaterLocalization.strings",
          "rule" : {
            "process" : {
              "localization" : "it"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/SwiftRater/ja.lproj/SwiftRaterLocalization.strings",
          "rule" : {
            "process" : {
              "localization" : "ja"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/SwiftRater/ko.lproj/SwiftRaterLocalization.strings",
          "rule" : {
            "process" : {
              "localization" : "ko"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/SwiftRater/ms.lproj/SwiftRaterLocalization.strings",
          "rule" : {
            "process" : {
              "localization" : "ms"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/SwiftRater/nl.lproj/SwiftRaterLocalization.strings",
          "rule" : {
            "process" : {
              "localization" : "nl"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/SwiftRater/pl.lproj/SwiftRaterLocalization.strings",
          "rule" : {
            "process" : {
              "localization" : "pl"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/SwiftRater/pt-BR.lproj/SwiftRaterLocalization.strings",
          "rule" : {
            "process" : {
              "localization" : "pt-br"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/SwiftRater/pt-PT.lproj/SwiftRaterLocalization.strings",
          "rule" : {
            "process" : {
              "localization" : "pt-pt"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/SwiftRater/ro.lproj/SwiftRaterLocalization.strings",
          "rule" : {
            "process" : {
              "localization" : "ro"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/SwiftRater/ru.lproj/SwiftRaterLocalization.strings",
          "rule" : {
            "process" : {
              "localization" : "ru"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/SwiftRater/sk.lproj/SwiftRaterLocalization.strings",
          "rule" : {
            "process" : {
              "localization" : "sk"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/SwiftRater/sv.lproj/SwiftRaterLocalization.strings",
          "rule" : {
            "process" : {
              "localization" : "sv"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/SwiftRater/th.lproj/SwiftRaterLocalization.strings",
          "rule" : {
            "process" : {
              "localization" : "th"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/SwiftRater/tr.lproj/SwiftRaterLocalization.strings",
          "rule" : {
            "process" : {
              "localization" : "tr"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/SwiftRater/uk.lproj/SwiftRaterLocalization.strings",
          "rule" : {
            "process" : {
              "localization" : "uk"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/SwiftRater/vi.lproj/SwiftRaterLocalization.strings",
          "rule" : {
            "process" : {
              "localization" : "vi"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/SwiftRater/zh-Hans.lproj/SwiftRaterLocalization.strings",
          "rule" : {
            "process" : {
              "localization" : "zh-hans"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/SwiftRater/zh-Hant.lproj/SwiftRaterLocalization.strings",
          "rule" : {
            "process" : {
              "localization" : "zh-hant"
            }
          }
        }
      ],
      "sources" : [
        "SwiftRater.swift",
        "SwiftRaterBundleExtension.swift",
        "SwiftRaterError.swift",
        "SwiftRaterErrorCode.swift",
        "UsageDataManager.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.3"
}
Done.