The Swift Package Index logo.Swift Package Index

Build Information

Successful build of Sisyphos, reference main (31469f), with Swift 6.2 for macOS (SPM) on 6 Mar 2026 13:52:36 UTC.

Swift 6 data race errors: 0

Build Command

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

Build Log

========================================
RunAll
========================================
Builder version: 4.68.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/SisyphosTests/Sisyphos.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/SisyphosTests/Sisyphos
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at 31469f6 Add support for opening universal links.
Cloned https://github.com/SisyphosTests/Sisyphos.git
Revision (git rev-parse @):
31469f62691da10e91e0338207cb5f5b41a02dae
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/SisyphosTests/Sisyphos.git at main
========================================
ResolveProductDependencies
========================================
Resolving dependencies ...
{
  "identity": ".resolve-product-dependencies",
  "name": "resolve-dependencies",
  "url": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
  "version": "unspecified",
  "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
  "dependencies": [
    {
      "identity": "sisyphos",
      "name": "Sisyphos",
      "url": "https://github.com/SisyphosTests/Sisyphos.git",
      "version": "unspecified",
      "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/Sisyphos",
      "dependencies": [
      ]
    }
  ]
}
Fetching https://github.com/SisyphosTests/Sisyphos.git
[1/850] Fetching sisyphos
Fetched https://github.com/SisyphosTests/Sisyphos.git from cache (1.27s)
Creating working copy for https://github.com/SisyphosTests/Sisyphos.git
Working copy of https://github.com/SisyphosTests/Sisyphos.git resolved at main (31469f6)
warning: '.resolve-product-dependencies': dependency 'sisyphos' is not used by any target
Found 0 product dependencies
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.2
Building package at path:  $PWD
https://github.com/SisyphosTests/Sisyphos.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0.app xcrun swift build --arch arm64
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-49B95AFC49DCD68C.txt
[3/35] Emitting module Sisyphos
/Users/admin/builder/spi-builder-workspace/Sources/Sisyphos/Extensions/XCUIElementSnapshot+Matching.swift:44:33: warning: no method declared with Objective-C selector '_matchesElement:'
42 |     func matches(element: NSObject) -> Bool {
43 |         typealias MethodType = @convention(c) (NSObject, Selector, NSObject) -> Bool
44 |         let selector = Selector("_matchesElement:")
   |                                 |- warning: no method declared with Objective-C selector '_matchesElement:'
   |                                 `- note: wrap the selector name in parentheses to suppress this warning
45 |         let methodImplementation = unsafeBitCast(method(for: selector), to: MethodType.self)
46 |         return methodImplementation(self, selector, element)
/Users/admin/builder/spi-builder-workspace/Sources/Sisyphos/Extensions/XCUIElementType+BetterCustomDebugString.swift:7:1: warning: extension declares a conformance of imported type 'ElementType' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'XCUIAutomation' introduce this conformance in the future
  5 | /// `__C.XCUIElementType` for every element type which gives no idea of which type the element is. This implementation
  6 | /// will print the actual element type, e.g. `.staticText` or `.other`.
  7 | extension XCUIElement.ElementType: CustomDebugStringConvertible {
    | |- warning: extension declares a conformance of imported type 'ElementType' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'XCUIAutomation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
  8 |     public var debugDescription: String {
  9 |         guard let elementType = ElementType(self) else { return "XCUIElement.ElementType(rawValue:\(rawValue))" }
[4/38] Compiling Sisyphos Other.swift
[5/38] Compiling Sisyphos SecureTextField.swift
[6/38] Compiling Sisyphos StaticText.swift
[7/38] Compiling Sisyphos QueryIdentifier.swift
[8/38] Compiling Sisyphos TestData.swift
[9/38] Compiling Sisyphos UniversalLink.swift
[10/38] Compiling Sisyphos XCUIApplication+CurrentPage.swift
/Users/admin/builder/spi-builder-workspace/Sources/Sisyphos/Extensions/XCUIElementSnapshot+Matching.swift:15:41: warning: conditional cast from 'XCUIElement' to 'NSObject' always succeeds
13 |         guard
14 |             let selfObject = self as? NSObject,
15 |             let elementObject = element as? NSObject
   |                                         `- warning: conditional cast from 'XCUIElement' to 'NSObject' always succeeds
16 |         else {
17 |             return false
/Users/admin/builder/spi-builder-workspace/Sources/Sisyphos/Extensions/XCUIElementSnapshot+Matching.swift:44:33: warning: no method declared with Objective-C selector '_matchesElement:'
42 |     func matches(element: NSObject) -> Bool {
43 |         typealias MethodType = @convention(c) (NSObject, Selector, NSObject) -> Bool
44 |         let selector = Selector("_matchesElement:")
   |                                 |- warning: no method declared with Objective-C selector '_matchesElement:'
   |                                 `- note: wrap the selector name in parentheses to suppress this warning
45 |         let methodImplementation = unsafeBitCast(method(for: selector), to: MethodType.self)
46 |         return methodImplementation(self, selector, element)
[11/38] Compiling Sisyphos XCUIApplication+dismissKeyboard.swift
/Users/admin/builder/spi-builder-workspace/Sources/Sisyphos/Extensions/XCUIElementSnapshot+Matching.swift:15:41: warning: conditional cast from 'XCUIElement' to 'NSObject' always succeeds
13 |         guard
14 |             let selfObject = self as? NSObject,
15 |             let elementObject = element as? NSObject
   |                                         `- warning: conditional cast from 'XCUIElement' to 'NSObject' always succeeds
16 |         else {
17 |             return false
/Users/admin/builder/spi-builder-workspace/Sources/Sisyphos/Extensions/XCUIElementSnapshot+Matching.swift:44:33: warning: no method declared with Objective-C selector '_matchesElement:'
42 |     func matches(element: NSObject) -> Bool {
43 |         typealias MethodType = @convention(c) (NSObject, Selector, NSObject) -> Bool
44 |         let selector = Selector("_matchesElement:")
   |                                 |- warning: no method declared with Objective-C selector '_matchesElement:'
   |                                 `- note: wrap the selector name in parentheses to suppress this warning
45 |         let methodImplementation = unsafeBitCast(method(for: selector), to: MethodType.self)
46 |         return methodImplementation(self, selector, element)
[12/38] Compiling Sisyphos XCUIElement+Extensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/Sisyphos/Extensions/XCUIElementSnapshot+Matching.swift:15:41: warning: conditional cast from 'XCUIElement' to 'NSObject' always succeeds
13 |         guard
14 |             let selfObject = self as? NSObject,
15 |             let elementObject = element as? NSObject
   |                                         `- warning: conditional cast from 'XCUIElement' to 'NSObject' always succeeds
16 |         else {
17 |             return false
/Users/admin/builder/spi-builder-workspace/Sources/Sisyphos/Extensions/XCUIElementSnapshot+Matching.swift:44:33: warning: no method declared with Objective-C selector '_matchesElement:'
42 |     func matches(element: NSObject) -> Bool {
43 |         typealias MethodType = @convention(c) (NSObject, Selector, NSObject) -> Bool
44 |         let selector = Selector("_matchesElement:")
   |                                 |- warning: no method declared with Objective-C selector '_matchesElement:'
   |                                 `- note: wrap the selector name in parentheses to suppress this warning
45 |         let methodImplementation = unsafeBitCast(method(for: selector), to: MethodType.self)
46 |         return methodImplementation(self, selector, element)
[13/38] Compiling Sisyphos XCUIElementSnapshot+Matching.swift
/Users/admin/builder/spi-builder-workspace/Sources/Sisyphos/Extensions/XCUIElementSnapshot+Matching.swift:15:41: warning: conditional cast from 'XCUIElement' to 'NSObject' always succeeds
13 |         guard
14 |             let selfObject = self as? NSObject,
15 |             let elementObject = element as? NSObject
   |                                         `- warning: conditional cast from 'XCUIElement' to 'NSObject' always succeeds
16 |         else {
17 |             return false
/Users/admin/builder/spi-builder-workspace/Sources/Sisyphos/Extensions/XCUIElementSnapshot+Matching.swift:44:33: warning: no method declared with Objective-C selector '_matchesElement:'
42 |     func matches(element: NSObject) -> Bool {
43 |         typealias MethodType = @convention(c) (NSObject, Selector, NSObject) -> Bool
44 |         let selector = Selector("_matchesElement:")
   |                                 |- warning: no method declared with Objective-C selector '_matchesElement:'
   |                                 `- note: wrap the selector name in parentheses to suppress this warning
45 |         let methodImplementation = unsafeBitCast(method(for: selector), to: MethodType.self)
46 |         return methodImplementation(self, selector, element)
[14/38] Compiling Sisyphos XCUIElementType+BetterCustomDebugString.swift
/Users/admin/builder/spi-builder-workspace/Sources/Sisyphos/Extensions/XCUIElementType+BetterCustomDebugString.swift:7:1: warning: extension declares a conformance of imported type 'ElementType' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'XCUIAutomation' introduce this conformance in the future
  5 | /// `__C.XCUIElementType` for every element type which gives no idea of which type the element is. This implementation
  6 | /// will print the actual element type, e.g. `.staticText` or `.other`.
  7 | extension XCUIElement.ElementType: CustomDebugStringConvertible {
    | |- warning: extension declares a conformance of imported type 'ElementType' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'XCUIAutomation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
  8 |     public var debugDescription: String {
  9 |         guard let elementType = ElementType(self) else { return "XCUIElement.ElementType(rawValue:\(rawValue))" }
[15/38] Compiling Sisyphos XCUITestCase+CodeGeneration.swift
/Users/admin/builder/spi-builder-workspace/Sources/Sisyphos/Extensions/XCUIElementType+BetterCustomDebugString.swift:7:1: warning: extension declares a conformance of imported type 'ElementType' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'XCUIAutomation' introduce this conformance in the future
  5 | /// `__C.XCUIElementType` for every element type which gives no idea of which type the element is. This implementation
  6 | /// will print the actual element type, e.g. `.staticText` or `.other`.
  7 | extension XCUIElement.ElementType: CustomDebugStringConvertible {
    | |- warning: extension declares a conformance of imported type 'ElementType' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'XCUIAutomation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
  8 |     public var debugDescription: String {
  9 |         guard let elementType = ElementType(self) else { return "XCUIElement.ElementType(rawValue:\(rawValue))" }
[16/38] Compiling Sisyphos XCUITestCase+InterruptionMonitor.swift
/Users/admin/builder/spi-builder-workspace/Sources/Sisyphos/Extensions/XCUIElementType+BetterCustomDebugString.swift:7:1: warning: extension declares a conformance of imported type 'ElementType' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'XCUIAutomation' introduce this conformance in the future
  5 | /// `__C.XCUIElementType` for every element type which gives no idea of which type the element is. This implementation
  6 | /// will print the actual element type, e.g. `.staticText` or `.other`.
  7 | extension XCUIElement.ElementType: CustomDebugStringConvertible {
    | |- warning: extension declares a conformance of imported type 'ElementType' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'XCUIAutomation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
  8 |     public var debugDescription: String {
  9 |         guard let elementType = ElementType(self) else { return "XCUIElement.ElementType(rawValue:\(rawValue))" }
[17/38] Compiling Sisyphos ElementFinder.swift
/Users/admin/builder/spi-builder-workspace/Sources/Sisyphos/Extensions/XCUIElementType+BetterCustomDebugString.swift:7:1: warning: extension declares a conformance of imported type 'ElementType' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'XCUIAutomation' introduce this conformance in the future
  5 | /// `__C.XCUIElementType` for every element type which gives no idea of which type the element is. This implementation
  6 | /// will print the actual element type, e.g. `.staticText` or `.other`.
  7 | extension XCUIElement.ElementType: CustomDebugStringConvertible {
    | |- warning: extension declares a conformance of imported type 'ElementType' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'XCUIAutomation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
  8 |     public var debugDescription: String {
  9 |         guard let elementType = ElementType(self) else { return "XCUIElement.ElementType(rawValue:\(rawValue))" }
[18/38] Compiling Sisyphos Snapshot.swift
[19/38] Compiling Sisyphos UIInterruptionsObserver.swift
[20/38] Compiling Sisyphos InterruptionMonitor.swift
[21/38] Compiling Sisyphos Alert.swift
[22/38] Compiling Sisyphos Button.swift
[23/38] Compiling Sisyphos Cell.swift
[24/38] Compiling Sisyphos CollectionView.swift
[25/38] Compiling Sisyphos NavigationBar.swift
[26/38] Compiling Sisyphos Page.swift
[27/38] Compiling Sisyphos PageBuilder.swift
[28/38] Compiling Sisyphos PageDescription.swift
[29/38] Compiling Sisyphos Switch.swift
[30/38] Compiling Sisyphos TabBar.swift
[31/38] Compiling Sisyphos TextField.swift
[32/38] Compiling Sisyphos PageElement.swift
[33/38] Compiling Sisyphos PageElementIdentifier.swift
[34/38] Compiling Sisyphos PageExistsResults.swift
[35/38] Compiling Sisyphos DefaultAlert.swift
[36/38] Compiling Sisyphos DefaultPermissionAlert.swift
[37/38] Compiling Sisyphos NSPredicate+Description.swift
[38/38] Compiling Sisyphos String+Localized.swift
Build complete! (11.38s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "Sisyphos",
  "name" : "Sisyphos",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "12.0"
    },
    {
      "name" : "ios",
      "version" : "14.0"
    }
  ],
  "products" : [
    {
      "name" : "Sisyphos",
      "targets" : [
        "Sisyphos"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "SisyphosTests",
      "module_type" : "SwiftTarget",
      "name" : "SisyphosTests",
      "path" : "Tests/SisyphosTests",
      "sources" : [
        "Internal/MatchesSearchedLabelTests.swift",
        "Internal/NSPredicateTests.swift",
        "PageBuilderTests.swift",
        "SisyphosTests.swift"
      ],
      "target_dependencies" : [
        "Sisyphos"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Sisyphos",
      "module_type" : "SwiftTarget",
      "name" : "Sisyphos",
      "path" : "Sources/Sisyphos",
      "product_memberships" : [
        "Sisyphos"
      ],
      "sources" : [
        "DefaultAlert.swift",
        "DefaultPermissionAlert.swift",
        "Extensions/NSPredicate+Description.swift",
        "Extensions/String+Localized.swift",
        "Extensions/XCUIApplication+CurrentPage.swift",
        "Extensions/XCUIApplication+dismissKeyboard.swift",
        "Extensions/XCUIElement+Extensions.swift",
        "Extensions/XCUIElementSnapshot+Matching.swift",
        "Extensions/XCUIElementType+BetterCustomDebugString.swift",
        "Extensions/XCUITestCase+CodeGeneration.swift",
        "Extensions/XCUITestCase+InterruptionMonitor.swift",
        "Internal/ElementFinder.swift",
        "Internal/Snapshot.swift",
        "Internal/UIInterruptionsObserver.swift",
        "InterruptionMonitor.swift",
        "Page Elements/Alert.swift",
        "Page Elements/Button.swift",
        "Page Elements/Cell.swift",
        "Page Elements/CollectionView.swift",
        "Page Elements/NavigationBar.swift",
        "Page Elements/Other.swift",
        "Page Elements/SecureTextField.swift",
        "Page Elements/StaticText.swift",
        "Page Elements/Switch.swift",
        "Page Elements/TabBar.swift",
        "Page Elements/TextField.swift",
        "Page.swift",
        "PageBuilder.swift",
        "PageDescription.swift",
        "PageElement.swift",
        "PageElementIdentifier.swift",
        "PageExistsResults.swift",
        "QueryIdentifier.swift",
        "TestData.swift",
        "UniversalLink.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.6"
}
Done.