The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Failed to build AtlasKit, reference 0.2.1 (02c563), with Swift 6.2 (beta) for macOS (SPM) on 19 Jun 2025 09:49:57 UTC.

Build Command

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

Build Log

========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/appoly/AtlasKit.git
Reference: 0.2.1
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/appoly/AtlasKit
 * tag               0.2.1      -> FETCH_HEAD
HEAD is now at 02c5632 Test updates
Cloned https://github.com/appoly/AtlasKit.git
Revision (git rev-parse @):
02c56321bd1cb6a156b1291054c36855431716e0
SUCCESS checkout https://github.com/appoly/AtlasKit.git at 0.2.1
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.2
Building package at path:  $PWD
https://github.com/appoly/AtlasKit.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-1EA4D86E10B52AF.txt
[3/9] Compiling AtlasKit AtlasKitPlace.swift
[4/9] Compiling AtlasKit AtlasKitAPI.swift
[5/9] Compiling AtlasKit AtlasKitError.swift
[6/9] Compiling AtlasKit AtlasKitDatasource.swift
[7/9] Compiling AtlasKit GoogleHelper.swift
[8/9] Emitting module AtlasKit
[9/9] Compiling AtlasKit AtlasKit.swift
/Users/admin/builder/spi-builder-workspace/Sources/AtlasKit/AtlasKit.swift:53:26: error: 'withUnsafeThrowingContinuation(isolation:_:)' is only available in macOS 10.15 or newer
 15 |
 16 |
 17 | public class AtlasKit {
    |              `- note: add @available attribute to enclosing class
 18 |
 19 |     // MARK: - Variables
    :
 49 |
 50 |     @available(iOS 15.0.0, *)
 51 |     public func performSearchWithDelay(_ term: String, delay: TimeInterval) async throws -> [AtlasKitPlace] {
    |                 `- note: add @available attribute to enclosing instance method
 52 |         searchTimer?.invalidate()
 53 |         return try await withUnsafeThrowingContinuation { continuation in
    |                          |- error: 'withUnsafeThrowingContinuation(isolation:_:)' is only available in macOS 10.15 or newer
    |                          `- note: add 'if #available' version check
 54 |             DispatchQueue.main.async { [weak self] in
 55 |                 self?.searchTimer = Timer.scheduledTimer(withTimeInterval: delay, repeats: false, block: { [weak self] _ in
/Users/admin/builder/spi-builder-workspace/Sources/AtlasKit/AtlasKit.swift:56:62: error: 'resume(with:)' is only available in macOS 10.15 or newer
 15 |
 16 |
 17 | public class AtlasKit {
    |              `- note: add @available attribute to enclosing class
 18 |
 19 |     // MARK: - Variables
    :
 49 |
 50 |     @available(iOS 15.0.0, *)
 51 |     public func performSearchWithDelay(_ term: String, delay: TimeInterval) async throws -> [AtlasKitPlace] {
    |                 `- note: add @available attribute to enclosing instance method
 52 |         searchTimer?.invalidate()
 53 |         return try await withUnsafeThrowingContinuation { continuation in
 54 |             DispatchQueue.main.async { [weak self] in
 55 |                 self?.searchTimer = Timer.scheduledTimer(withTimeInterval: delay, repeats: false, block: { [weak self] _ in
 56 |                     self?.performSearch(term) { continuation.resume(with: $0) }
    |                                                              |- error: 'resume(with:)' is only available in macOS 10.15 or newer
    |                                                              `- note: add 'if #available' version check
 57 |                 })
 58 |             }
/Users/admin/builder/spi-builder-workspace/Sources/AtlasKit/AtlasKit.swift:53:58: error: 'isolation()' is only available in macOS 10.15 or newer
`- /Users/admin/builder/spi-builder-workspace/Sources/AtlasKit/AtlasKit.swift:53:57: note: expanded code originates here
 15 |
 16 |
 17 | public class AtlasKit {
    |              `- note: add @available attribute to enclosing class
 18 |
 19 |     // MARK: - Variables
    :
 49 |
 50 |     @available(iOS 15.0.0, *)
 51 |     public func performSearchWithDelay(_ term: String, delay: TimeInterval) async throws -> [AtlasKitPlace] {
    |                 `- note: add @available attribute to enclosing instance method
 52 |         searchTimer?.invalidate()
 53 |         return try await withUnsafeThrowingContinuation { continuation in
    +--- /Users/admin/builder/spi-builder-workspace/Sources/AtlasKit/AtlasKit.swift
    |51 |
    |52 |
    |53 |                                                         #isolation
    |   |                                                          `- error: 'isolation()' is only available in macOS 10.15 or newer
    +-------------------------------------------------------------------------------
 54 |             DispatchQueue.main.async { [weak self] in
 55 |                 self?.searchTimer = Timer.scheduledTimer(withTimeInterval: delay, repeats: false, block: { [weak self] _ in
/Users/admin/builder/spi-builder-workspace/Sources/AtlasKit/AtlasKit.swift:55:17: warning: capture of 'self' with non-sendable type 'AtlasKit?' in a '@Sendable' closure [#SendableClosureCaptures]
 15 |
 16 |
 17 | public class AtlasKit {
    |              `- note: class 'AtlasKit' does not conform to the 'Sendable' protocol
 18 |
 19 |     // MARK: - Variables
    :
 53 |         return try await withUnsafeThrowingContinuation { continuation in
 54 |             DispatchQueue.main.async { [weak self] in
 55 |                 self?.searchTimer = Timer.scheduledTimer(withTimeInterval: delay, repeats: false, block: { [weak self] _ in
    |                 `- warning: capture of 'self' with non-sendable type 'AtlasKit?' in a '@Sendable' closure [#SendableClosureCaptures]
 56 |                     self?.performSearch(term) { continuation.resume(with: $0) }
 57 |                 })
/Users/admin/builder/spi-builder-workspace/Sources/AtlasKit/AtlasKit.swift:65:26: error: 'withUnsafeThrowingContinuation(isolation:_:)' is only available in macOS 10.15 or newer
 15 |
 16 |
 17 | public class AtlasKit {
    |              `- note: add @available attribute to enclosing class
 18 |
 19 |     // MARK: - Variables
    :
 62 |
 63 |     @available(iOS 15.0.0, *)
 64 |     public func performSearch(_ term: String) async throws -> [AtlasKitPlace] {
    |                 `- note: add @available attribute to enclosing instance method
 65 |         return try await withUnsafeThrowingContinuation { continuation in
    |                          |- error: 'withUnsafeThrowingContinuation(isolation:_:)' is only available in macOS 10.15 or newer
    |                          `- note: add 'if #available' version check
 66 |             performSearch(term, completion: { continuation.resume(with: $0) })
 67 |         }
/Users/admin/builder/spi-builder-workspace/Sources/AtlasKit/AtlasKit.swift:66:60: error: 'resume(with:)' is only available in macOS 10.15 or newer
 15 |
 16 |
 17 | public class AtlasKit {
    |              `- note: add @available attribute to enclosing class
 18 |
 19 |     // MARK: - Variables
    :
 62 |
 63 |     @available(iOS 15.0.0, *)
 64 |     public func performSearch(_ term: String) async throws -> [AtlasKitPlace] {
    |                 `- note: add @available attribute to enclosing instance method
 65 |         return try await withUnsafeThrowingContinuation { continuation in
 66 |             performSearch(term, completion: { continuation.resume(with: $0) })
    |                                                            |- error: 'resume(with:)' is only available in macOS 10.15 or newer
    |                                                            `- note: add 'if #available' version check
 67 |         }
 68 |     }
/Users/admin/builder/spi-builder-workspace/Sources/AtlasKit/AtlasKit.swift:65:58: error: 'isolation()' is only available in macOS 10.15 or newer
`- /Users/admin/builder/spi-builder-workspace/Sources/AtlasKit/AtlasKit.swift:65:57: note: expanded code originates here
 15 |
 16 |
 17 | public class AtlasKit {
    |              `- note: add @available attribute to enclosing class
 18 |
 19 |     // MARK: - Variables
    :
 62 |
 63 |     @available(iOS 15.0.0, *)
 64 |     public func performSearch(_ term: String) async throws -> [AtlasKitPlace] {
    |                 `- note: add @available attribute to enclosing instance method
 65 |         return try await withUnsafeThrowingContinuation { continuation in
    +--- /Users/admin/builder/spi-builder-workspace/Sources/AtlasKit/AtlasKit.swift
    |63 |
    |64 |
    |65 |                                                         #isolation
    |   |                                                          `- error: 'isolation()' is only available in macOS 10.15 or newer
    +-------------------------------------------------------------------------------
 66 |             performSearch(term, completion: { continuation.resume(with: $0) })
 67 |         }
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
BUILD FAILURE 6.2 macosSpm