The Swift Package Index logo.Swift Package Index

Build Information

Successful build of SwiftUIAdvancedMap, reference main (21bb29), with Swift 6.3 for macOS (SPM) on 13 Apr 2026 11:55:12 UTC.

Swift 6 data race errors: 0

Build Command

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

Build Log

========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/sena-mike/SwiftUIAdvancedMap.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/sena-mike/SwiftUIAdvancedMap
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at 21bb290 Update README.md
Cloned https://github.com/sena-mike/SwiftUIAdvancedMap.git
Revision (git rev-parse @):
21bb29037e98905cea0328e2b6306445b07015ee
SUCCESS checkout https://github.com/sena-mike/SwiftUIAdvancedMap.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",
  "traits": [
    "default"
  ],
  "dependencies": [
    {
      "identity": "swiftuiadvancedmap",
      "name": "SwiftUIAdvancedMap",
      "url": "https://github.com/sena-mike/SwiftUIAdvancedMap.git",
      "version": "unspecified",
      "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/SwiftUIAdvancedMap",
      "traits": [
        "default"
      ],
      "dependencies": [
      ]
    }
  ]
}
Fetching https://github.com/sena-mike/SwiftUIAdvancedMap.git
[1/305] Fetching swiftuiadvancedmap
Fetched https://github.com/sena-mike/SwiftUIAdvancedMap.git from cache (1.36s)
Creating working copy for https://github.com/sena-mike/SwiftUIAdvancedMap.git
Working copy of https://github.com/sena-mike/SwiftUIAdvancedMap.git resolved at main (21bb290)
warning: '.resolve-product-dependencies': dependency 'swiftuiadvancedmap' is not used by any target
Found 0 product dependencies
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.3
Building package at path:  $PWD
https://github.com/sena-mike/SwiftUIAdvancedMap.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.4.0.app xcrun swift build --arch arm64
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version--6988338F2F200930.txt
[3/15] Compiling AdvancedMap SwiftUIView.swift
[4/15] Compiling AdvancedMap OverlayRendererFactory.swift
[5/15] Compiling AdvancedMap MapKit+Equatable.swift
/Users/admin/builder/spi-builder-workspace/Sources/AdvancedMap/MapKit+Equatable.swift:3:1: warning: extension declares a conformance of imported type 'MKMapRect' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'MapKit' introduce this conformance in the future
 1 | import MapKit
 2 |
 3 | extension MKMapRect: Equatable {
   | |- warning: extension declares a conformance of imported type 'MKMapRect' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'MapKit' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
 4 |   public static func == (lhs: MKMapRect, rhs: MKMapRect) -> Bool {
 5 |     return lhs.origin == rhs.origin && lhs.size == rhs.size
/Users/admin/builder/spi-builder-workspace/Sources/AdvancedMap/MapKit+Equatable.swift:9:1: warning: extension declares a conformance of imported type 'MKMapPoint' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'MapKit' introduce this conformance in the future
 7 | }
 8 |
 9 | extension MKMapPoint: Equatable {
   | |- warning: extension declares a conformance of imported type 'MKMapPoint' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'MapKit' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
10 |   public static func == (lhs: MKMapPoint, rhs: MKMapPoint) -> Bool {
11 |     return (lhs.x ==~ rhs.x) && (lhs.y ==~ rhs.y)
/Users/admin/builder/spi-builder-workspace/Sources/AdvancedMap/MapKit+Equatable.swift:15:1: warning: extension declares a conformance of imported type 'MKMapSize' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'MapKit' introduce this conformance in the future
13 | }
14 |
15 | extension MKMapSize: Equatable {
   | |- warning: extension declares a conformance of imported type 'MKMapSize' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'MapKit' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
16 |   public static func == (lhs: MKMapSize, rhs: MKMapSize) -> Bool {
17 |     return lhs.width ==~ rhs.width
/Users/admin/builder/spi-builder-workspace/Sources/AdvancedMap/MapKit+Equatable.swift:21:1: warning: extension declares a conformance of imported type 'CLLocationCoordinate2D' to imported protocol 'Equatable'; this will not behave correctly if the owners of '_LocationEssentials' introduce this conformance in the future
19 | }
20 |
21 | extension CLLocationCoordinate2D: Equatable {
   | |- warning: extension declares a conformance of imported type 'CLLocationCoordinate2D' to imported protocol 'Equatable'; this will not behave correctly if the owners of '_LocationEssentials' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
22 |   public static func == (lhs: CLLocationCoordinate2D, rhs: CLLocationCoordinate2D) -> Bool {
23 |     return (lhs.latitude ==~ rhs.latitude) && (lhs.longitude ==~ rhs.longitude)
/Users/admin/builder/spi-builder-workspace/Sources/AdvancedMap/MapKit+Equatable.swift:27:1: warning: extension declares a conformance of imported type 'MKCoordinateRegion' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'MapKit' introduce this conformance in the future
25 | }
26 |
27 | extension MKCoordinateRegion: Equatable {
   | |- warning: extension declares a conformance of imported type 'MKCoordinateRegion' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'MapKit' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
28 |   public static func == (lhs: MKCoordinateRegion, rhs: MKCoordinateRegion) -> Bool {
29 |     lhs.center == rhs.center && lhs.span == rhs.span
/Users/admin/builder/spi-builder-workspace/Sources/AdvancedMap/MapKit+Equatable.swift:33:1: warning: extension declares a conformance of imported type 'MKCoordinateSpan' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'MapKit' introduce this conformance in the future
31 | }
32 |
33 | extension MKCoordinateSpan: Equatable {
   | |- warning: extension declares a conformance of imported type 'MKCoordinateSpan' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'MapKit' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
34 |   public static func == (lhs: MKCoordinateSpan, rhs: MKCoordinateSpan) -> Bool {
35 |     lhs.latitudeDelta == rhs.latitudeDelta && rhs.longitudeDelta == rhs.longitudeDelta
[6/15] Compiling AdvancedMap MKUserLocation+AnnotationViewFactory.swift
[7/15] Compiling AdvancedMap Logger.swift
[8/15] Compiling AdvancedMap MapViewCoordinator.swift
[9/16] Compiling AdvancedMap XViewRepresentableContext+Extras.swift
[10/16] Compiling AdvancedMap Configuration.swift
[11/16] Compiling AdvancedMap CrossPlatformBridging.swift
[12/16] Compiling AdvancedMap AdvancedMapModifiers.swift
[13/16] Compiling AdvancedMap AnnotationViewFactory.swift
[14/16] Emitting module AdvancedMap
/Users/admin/builder/spi-builder-workspace/Sources/AdvancedMap/MapKit+Equatable.swift:3:1: warning: extension declares a conformance of imported type 'MKMapRect' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'MapKit' introduce this conformance in the future
 1 | import MapKit
 2 |
 3 | extension MKMapRect: Equatable {
   | |- warning: extension declares a conformance of imported type 'MKMapRect' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'MapKit' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
 4 |   public static func == (lhs: MKMapRect, rhs: MKMapRect) -> Bool {
 5 |     return lhs.origin == rhs.origin && lhs.size == rhs.size
/Users/admin/builder/spi-builder-workspace/Sources/AdvancedMap/MapKit+Equatable.swift:9:1: warning: extension declares a conformance of imported type 'MKMapPoint' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'MapKit' introduce this conformance in the future
 7 | }
 8 |
 9 | extension MKMapPoint: Equatable {
   | |- warning: extension declares a conformance of imported type 'MKMapPoint' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'MapKit' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
10 |   public static func == (lhs: MKMapPoint, rhs: MKMapPoint) -> Bool {
11 |     return (lhs.x ==~ rhs.x) && (lhs.y ==~ rhs.y)
/Users/admin/builder/spi-builder-workspace/Sources/AdvancedMap/MapKit+Equatable.swift:15:1: warning: extension declares a conformance of imported type 'MKMapSize' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'MapKit' introduce this conformance in the future
13 | }
14 |
15 | extension MKMapSize: Equatable {
   | |- warning: extension declares a conformance of imported type 'MKMapSize' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'MapKit' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
16 |   public static func == (lhs: MKMapSize, rhs: MKMapSize) -> Bool {
17 |     return lhs.width ==~ rhs.width
/Users/admin/builder/spi-builder-workspace/Sources/AdvancedMap/MapKit+Equatable.swift:21:1: warning: extension declares a conformance of imported type 'CLLocationCoordinate2D' to imported protocol 'Equatable'; this will not behave correctly if the owners of '_LocationEssentials' introduce this conformance in the future
19 | }
20 |
21 | extension CLLocationCoordinate2D: Equatable {
   | |- warning: extension declares a conformance of imported type 'CLLocationCoordinate2D' to imported protocol 'Equatable'; this will not behave correctly if the owners of '_LocationEssentials' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
22 |   public static func == (lhs: CLLocationCoordinate2D, rhs: CLLocationCoordinate2D) -> Bool {
23 |     return (lhs.latitude ==~ rhs.latitude) && (lhs.longitude ==~ rhs.longitude)
/Users/admin/builder/spi-builder-workspace/Sources/AdvancedMap/MapKit+Equatable.swift:27:1: warning: extension declares a conformance of imported type 'MKCoordinateRegion' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'MapKit' introduce this conformance in the future
25 | }
26 |
27 | extension MKCoordinateRegion: Equatable {
   | |- warning: extension declares a conformance of imported type 'MKCoordinateRegion' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'MapKit' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
28 |   public static func == (lhs: MKCoordinateRegion, rhs: MKCoordinateRegion) -> Bool {
29 |     lhs.center == rhs.center && lhs.span == rhs.span
/Users/admin/builder/spi-builder-workspace/Sources/AdvancedMap/MapKit+Equatable.swift:33:1: warning: extension declares a conformance of imported type 'MKCoordinateSpan' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'MapKit' introduce this conformance in the future
31 | }
32 |
33 | extension MKCoordinateSpan: Equatable {
   | |- warning: extension declares a conformance of imported type 'MKCoordinateSpan' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'MapKit' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
34 |   public static func == (lhs: MKCoordinateSpan, rhs: MKCoordinateSpan) -> Bool {
35 |     lhs.latitudeDelta == rhs.latitudeDelta && rhs.longitudeDelta == rhs.longitudeDelta
[15/16] Compiling AdvancedMap AdvancedMap+ViewRepresentable.swift
[16/16] Compiling AdvancedMap AdvancedMap.swift
Build complete! (10.22s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "SwiftUIAdvancedMap",
  "name" : "SwiftUIAdvancedMap",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "16.0"
    },
    {
      "name" : "macos",
      "version" : "13.0"
    },
    {
      "name" : "tvos",
      "version" : "16.0"
    }
  ],
  "products" : [
    {
      "name" : "AdvancedMap",
      "targets" : [
        "AdvancedMap"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "AdvancedMap",
      "module_type" : "SwiftTarget",
      "name" : "AdvancedMap",
      "path" : "Sources/AdvancedMap",
      "product_memberships" : [
        "AdvancedMap"
      ],
      "sources" : [
        "AdvancedMap+ViewRepresentable.swift",
        "AdvancedMap.swift",
        "AdvancedMapModifiers.swift",
        "AnnotationViewFactory.swift",
        "Configuration.swift",
        "CrossPlatformBridging.swift",
        "Logger.swift",
        "MKUserLocation+AnnotationViewFactory.swift",
        "MapKit+Equatable.swift",
        "MapViewCoordinator.swift",
        "OverlayRendererFactory.swift",
        "SwiftUIView.swift",
        "XViewRepresentableContext+Extras.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.7"
}
Done.