The Swift Package Index logo.Swift Package Index

Build Information

Successful build of UCLKit, reference main (823da0), with Swift 6.3 for macOS (SPM) on 10 Apr 2026 19:18:33 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/tiferrei/UCLKit.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/tiferrei/UCLKit
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at 823da01 Update LICENSE
Cloned https://github.com/tiferrei/UCLKit.git
Revision (git rev-parse @):
823da018a17d77852cf92841bef600bf7dc89657
SUCCESS checkout https://github.com/tiferrei/UCLKit.git at main
Fetching https://github.com/nerdishbynature/RequestKit.git
[1/1554] Fetching requestkit
Fetched https://github.com/nerdishbynature/RequestKit.git from cache (0.83s)
Creating working copy for https://github.com/nerdishbynature/RequestKit.git
Working copy of https://github.com/nerdishbynature/RequestKit.git resolved at xcode-10.2 (eb41e20)
========================================
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": "uclkit",
      "name": "UCLKit",
      "url": "https://github.com/tiferrei/UCLKit.git",
      "version": "unspecified",
      "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/UCLKit",
      "traits": [
        "default"
      ],
      "dependencies": [
        {
          "identity": "requestkit",
          "name": "RequestKit",
          "url": "https://github.com/nerdishbynature/RequestKit.git",
          "version": "unspecified",
          "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/RequestKit",
          "traits": [
            "default"
          ],
          "dependencies": [
          ]
        }
      ]
    }
  ]
}
Fetching https://github.com/tiferrei/UCLKit.git
[1/817] Fetching uclkit
Fetched https://github.com/tiferrei/UCLKit.git from cache (0.91s)
Fetching https://github.com/nerdishbynature/RequestKit.git from cache
Fetched https://github.com/nerdishbynature/RequestKit.git from cache (0.47s)
Creating working copy for https://github.com/nerdishbynature/RequestKit.git
Working copy of https://github.com/nerdishbynature/RequestKit.git resolved at xcode-10.2 (eb41e20)
Creating working copy for https://github.com/tiferrei/UCLKit.git
Working copy of https://github.com/tiferrei/UCLKit.git resolved at main (823da01)
warning: '.resolve-product-dependencies': dependency 'uclkit' is not used by any target
Found 1 product dependencies
  - RequestKit
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.3
Building package at path:  $PWD
https://github.com/tiferrei/UCLKit.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.4.0.app xcrun swift build --arch arm64
Building for debugging...
[0/3] Write sources
[2/3] Write swift-version--6988338F2F200930.txt
[4/7] Compiling RequestKit RequestKitSession.swift
[5/7] Compiling RequestKit JSONPostRouter.swift
[6/7] Emitting module RequestKit
[7/7] Compiling RequestKit Router.swift
[8/15] Compiling UCLKit Search.swift
/Users/admin/builder/spi-builder-workspace/Source/UCLKit/Search.swift:77:6: warning: deprecated default implementation is used to satisfy instance method 'loadJSON(_:expectedResultType:completion:)' required by protocol 'Router': Plase use `load` method instead [#DeprecatedDeclaration]
 75 |  - GET People router
 76 |  */
 77 | enum SearchRouter: Router {
    |      `- warning: deprecated default implementation is used to satisfy instance method 'loadJSON(_:expectedResultType:completion:)' required by protocol 'Router': Plase use `load` method instead [#DeprecatedDeclaration]
 78 |     case searchPeople(Configuration, String)
 79 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/RequestKit/Sources/RequestKit/Router.swift:145:10: note: 'loadJSON(_:expectedResultType:completion:)' declared here
 61 |     func urlQuery(_ parameters: [String: Any]) -> [URLQueryItem]?
 62 |     func request(_ urlComponents: URLComponents, parameters: [String: Any]) -> URLRequest?
 63 |     func loadJSON<T: Codable>(_ session: RequestKitURLSession, expectedResultType: T.Type, completion: @escaping (_ json: T?, _ error: Error?) -> Void) -> URLSessionDataTaskProtocol?
    |          `- note: requirement 'loadJSON(_:expectedResultType:completion:)' declared here
 64 |     func load<T: Codable>(_ session: RequestKitURLSession, dateDecodingStrategy: JSONDecoder.DateDecodingStrategy?, expectedResultType: T.Type, completion: @escaping (_ json: T?, _ error: Error?) -> Void) -> URLSessionDataTaskProtocol?
 65 |     func load<T: Codable>(_ session: RequestKitURLSession, decoder: JSONDecoder, expectedResultType: T.Type, completion: @escaping (_ json: T?, _ error: Error?) -> Void) -> URLSessionDataTaskProtocol?
    :
143 |
144 |     @available(*, deprecated, message: "Plase use `load` method instead")
145 |     func loadJSON<T: Codable>(_ session: RequestKitURLSession = URLSession.shared, expectedResultType: T.Type, completion: @escaping (_ json: T?, _ error: Error?) -> Void) -> URLSessionDataTaskProtocol? {
    |          `- note: 'loadJSON(_:expectedResultType:completion:)' declared here
146 |         return load(session, expectedResultType: expectedResultType, completion: completion)
147 |     }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[9/15] Compiling UCLKit Time.swift
[10/15] Compiling UCLKit UCLKit.swift
[11/15] Compiling UCLKit Configuration.swift
[12/15] Compiling UCLKit DecodableToDictionary.swift
[13/15] Compiling UCLKit ErrorHandling.swift
[14/15] Emitting module UCLKit
/Users/admin/builder/spi-builder-workspace/Source/UCLKit/RoomBookings.swift:292:6: warning: deprecated default implementation is used to satisfy instance method 'loadJSON(_:expectedResultType:completion:)' required by protocol 'Router': Plase use `load` method instead [#DeprecatedDeclaration]
290 |  - GET Free Rooms router
291 | */
292 | enum RoomBookingsRouter: Router {
    |      `- warning: deprecated default implementation is used to satisfy instance method 'loadJSON(_:expectedResultType:completion:)' required by protocol 'Router': Plase use `load` method instead [#DeprecatedDeclaration]
293 |     case readRooms(Configuration, String, String, String, String, Classification, String)
294 |     case readBookings(Configuration, String, String, String, String, String, String, String, String, String, String)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/RequestKit/Sources/RequestKit/Router.swift:145:10: note: 'loadJSON(_:expectedResultType:completion:)' declared here
 61 |     func urlQuery(_ parameters: [String: Any]) -> [URLQueryItem]?
 62 |     func request(_ urlComponents: URLComponents, parameters: [String: Any]) -> URLRequest?
 63 |     func loadJSON<T: Codable>(_ session: RequestKitURLSession, expectedResultType: T.Type, completion: @escaping (_ json: T?, _ error: Error?) -> Void) -> URLSessionDataTaskProtocol?
    |          `- note: requirement 'loadJSON(_:expectedResultType:completion:)' declared here
 64 |     func load<T: Codable>(_ session: RequestKitURLSession, dateDecodingStrategy: JSONDecoder.DateDecodingStrategy?, expectedResultType: T.Type, completion: @escaping (_ json: T?, _ error: Error?) -> Void) -> URLSessionDataTaskProtocol?
 65 |     func load<T: Codable>(_ session: RequestKitURLSession, decoder: JSONDecoder, expectedResultType: T.Type, completion: @escaping (_ json: T?, _ error: Error?) -> Void) -> URLSessionDataTaskProtocol?
    :
143 |
144 |     @available(*, deprecated, message: "Plase use `load` method instead")
145 |     func loadJSON<T: Codable>(_ session: RequestKitURLSession = URLSession.shared, expectedResultType: T.Type, completion: @escaping (_ json: T?, _ error: Error?) -> Void) -> URLSessionDataTaskProtocol? {
    |          `- note: 'loadJSON(_:expectedResultType:completion:)' declared here
146 |         return load(session, expectedResultType: expectedResultType, completion: completion)
147 |     }
/Users/admin/builder/spi-builder-workspace/Source/UCLKit/Search.swift:77:6: warning: deprecated default implementation is used to satisfy instance method 'loadJSON(_:expectedResultType:completion:)' required by protocol 'Router': Plase use `load` method instead [#DeprecatedDeclaration]
 75 |  - GET People router
 76 |  */
 77 | enum SearchRouter: Router {
    |      `- warning: deprecated default implementation is used to satisfy instance method 'loadJSON(_:expectedResultType:completion:)' required by protocol 'Router': Plase use `load` method instead [#DeprecatedDeclaration]
 78 |     case searchPeople(Configuration, String)
 79 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/RequestKit/Sources/RequestKit/Router.swift:145:10: note: 'loadJSON(_:expectedResultType:completion:)' declared here
 61 |     func urlQuery(_ parameters: [String: Any]) -> [URLQueryItem]?
 62 |     func request(_ urlComponents: URLComponents, parameters: [String: Any]) -> URLRequest?
 63 |     func loadJSON<T: Codable>(_ session: RequestKitURLSession, expectedResultType: T.Type, completion: @escaping (_ json: T?, _ error: Error?) -> Void) -> URLSessionDataTaskProtocol?
    |          `- note: requirement 'loadJSON(_:expectedResultType:completion:)' declared here
 64 |     func load<T: Codable>(_ session: RequestKitURLSession, dateDecodingStrategy: JSONDecoder.DateDecodingStrategy?, expectedResultType: T.Type, completion: @escaping (_ json: T?, _ error: Error?) -> Void) -> URLSessionDataTaskProtocol?
 65 |     func load<T: Codable>(_ session: RequestKitURLSession, decoder: JSONDecoder, expectedResultType: T.Type, completion: @escaping (_ json: T?, _ error: Error?) -> Void) -> URLSessionDataTaskProtocol?
    :
143 |
144 |     @available(*, deprecated, message: "Plase use `load` method instead")
145 |     func loadJSON<T: Codable>(_ session: RequestKitURLSession = URLSession.shared, expectedResultType: T.Type, completion: @escaping (_ json: T?, _ error: Error?) -> Void) -> URLSessionDataTaskProtocol? {
    |          `- note: 'loadJSON(_:expectedResultType:completion:)' declared here
146 |         return load(session, expectedResultType: expectedResultType, completion: completion)
147 |     }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[15/15] Compiling UCLKit RoomBookings.swift
/Users/admin/builder/spi-builder-workspace/Source/UCLKit/RoomBookings.swift:292:6: warning: deprecated default implementation is used to satisfy instance method 'loadJSON(_:expectedResultType:completion:)' required by protocol 'Router': Plase use `load` method instead [#DeprecatedDeclaration]
290 |  - GET Free Rooms router
291 | */
292 | enum RoomBookingsRouter: Router {
    |      `- warning: deprecated default implementation is used to satisfy instance method 'loadJSON(_:expectedResultType:completion:)' required by protocol 'Router': Plase use `load` method instead [#DeprecatedDeclaration]
293 |     case readRooms(Configuration, String, String, String, String, Classification, String)
294 |     case readBookings(Configuration, String, String, String, String, String, String, String, String, String, String)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/RequestKit/Sources/RequestKit/Router.swift:145:10: note: 'loadJSON(_:expectedResultType:completion:)' declared here
 61 |     func urlQuery(_ parameters: [String: Any]) -> [URLQueryItem]?
 62 |     func request(_ urlComponents: URLComponents, parameters: [String: Any]) -> URLRequest?
 63 |     func loadJSON<T: Codable>(_ session: RequestKitURLSession, expectedResultType: T.Type, completion: @escaping (_ json: T?, _ error: Error?) -> Void) -> URLSessionDataTaskProtocol?
    |          `- note: requirement 'loadJSON(_:expectedResultType:completion:)' declared here
 64 |     func load<T: Codable>(_ session: RequestKitURLSession, dateDecodingStrategy: JSONDecoder.DateDecodingStrategy?, expectedResultType: T.Type, completion: @escaping (_ json: T?, _ error: Error?) -> Void) -> URLSessionDataTaskProtocol?
 65 |     func load<T: Codable>(_ session: RequestKitURLSession, decoder: JSONDecoder, expectedResultType: T.Type, completion: @escaping (_ json: T?, _ error: Error?) -> Void) -> URLSessionDataTaskProtocol?
    :
143 |
144 |     @available(*, deprecated, message: "Plase use `load` method instead")
145 |     func loadJSON<T: Codable>(_ session: RequestKitURLSession = URLSession.shared, expectedResultType: T.Type, completion: @escaping (_ json: T?, _ error: Error?) -> Void) -> URLSessionDataTaskProtocol? {
    |          `- note: 'loadJSON(_:expectedResultType:completion:)' declared here
146 |         return load(session, expectedResultType: expectedResultType, completion: completion)
147 |     }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
Build complete! (5.08s)
Build complete.
{
  "dependencies" : [
    {
      "identity" : "requestkit",
      "requirement" : {
        "branch" : [
          "xcode-10.2"
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/nerdishbynature/RequestKit.git"
    }
  ],
  "manifest_display_name" : "UCLKit",
  "name" : "UCLKit",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "UCLKit",
      "targets" : [
        "UCLKit"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "UCLKitTests",
      "module_type" : "SwiftTarget",
      "name" : "UCLKitTests",
      "path" : "Tests/UCLKitTests",
      "sources" : [
        "BookingTests.swift",
        "EquipmentTests.swift",
        "FreeRoomsTests.swift",
        "HelperToolsTests.swift",
        "ResourcesManager.swift",
        "RoomTests.swift",
        "SearchTests.swift",
        "TestHelper.swift",
        "TestURLSession.swift",
        "UCLKitTests.swift"
      ],
      "target_dependencies" : [
        "UCLKit"
      ],
      "type" : "test"
    },
    {
      "c99name" : "UCLKit",
      "module_type" : "SwiftTarget",
      "name" : "UCLKit",
      "path" : "Source/UCLKit",
      "product_dependencies" : [
        "RequestKit"
      ],
      "product_memberships" : [
        "UCLKit"
      ],
      "sources" : [
        "Configuration.swift",
        "DecodableToDictionary.swift",
        "ErrorHandling.swift",
        "RoomBookings.swift",
        "Search.swift",
        "Time.swift",
        "UCLKit.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "4.2"
}
Done.