The Swift Package Index logo.Swift Package Index

Build Information

Successful build of Endpoint, reference 1.0.20 (849bf0), with Swift 6.3 for macOS (SPM) on 12 Apr 2026 20:57:24 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/OakCityLabs/Endpoint.git
Reference: 1.0.20
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/OakCityLabs/Endpoint
 * tag               1.0.20     -> FETCH_HEAD
HEAD is now at 849bf07 Make some of the HttpResponseValidator public.
Cloned https://github.com/OakCityLabs/Endpoint.git
Revision (git rev-parse @):
849bf0726209db87c495408823eeb1e6901ddb5c
SUCCESS checkout https://github.com/OakCityLabs/Endpoint.git at 1.0.20
Fetching https://github.com/apple/swift-log.git
[1/6521] Fetching swift-log
Fetched https://github.com/apple/swift-log.git from cache (1.18s)
Computing version for https://github.com/apple/swift-log.git
Computed https://github.com/apple/swift-log.git at 1.1.1 (1.83s)
Creating working copy for https://github.com/apple/swift-log.git
Working copy of https://github.com/apple/swift-log.git resolved at 1.1.1
========================================
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": "endpoint",
      "name": "Endpoint",
      "url": "https://github.com/OakCityLabs/Endpoint.git",
      "version": "unspecified",
      "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/Endpoint",
      "traits": [
        "default"
      ],
      "dependencies": [
        {
          "identity": "swift-log",
          "name": "swift-log",
          "url": "https://github.com/apple/swift-log.git",
          "version": "1.11.0",
          "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/swift-log",
          "traits": [
          ],
          "dependencies": [
          ]
        }
      ]
    }
  ]
}
Fetching https://github.com/OakCityLabs/Endpoint.git
[1/493] Fetching endpoint
Fetched https://github.com/OakCityLabs/Endpoint.git from cache (0.66s)
Fetching https://github.com/apple/swift-log.git from cache
Fetched https://github.com/apple/swift-log.git from cache (0.49s)
Computing version for https://github.com/apple/swift-log.git
Computed https://github.com/apple/swift-log.git at 1.11.0 (1.09s)
Creating working copy for https://github.com/apple/swift-log.git
Working copy of https://github.com/apple/swift-log.git resolved at 1.11.0
Creating working copy for https://github.com/OakCityLabs/Endpoint.git
Working copy of https://github.com/OakCityLabs/Endpoint.git resolved at 1.0.20 (849bf07)
warning: '.resolve-product-dependencies': dependency 'endpoint' is not used by any target
Found 1 product dependencies
  - swift-log
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.3
Building package at path:  $PWD
https://github.com/OakCityLabs/Endpoint.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 Logging LogHandler.swift
[5/7] Compiling Logging Locks.swift
[6/7] Emitting module Logging
[7/7] Compiling Logging Logging.swift
[8/24] Compiling Endpoint MimeType.swift
[9/24] Compiling Endpoint Dictionary.swift
[10/24] Compiling Endpoint DispatchQueue.swift
[11/24] Compiling Endpoint CodableEndpoint.swift
/Users/admin/builder/spi-builder-workspace/Sources/Endpoint/Endpoint.swift:269:27: warning: generic parameter 'Payload' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
  9 | import Foundation
 10 |
 11 | open class Endpoint<Payload> {
    |                     `- note: 'Payload' previously declared here
 12 |     public let serverUrl: URL?
 13 |     public let pathPrefix: String
    :
267 |
268 | extension Endpoint: Equatable {
269 |     public static func ==<Payload>(lhs: Endpoint<Payload>, rhs: Endpoint<Payload>) -> Bool {
    |                           `- warning: generic parameter 'Payload' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
270 |         return (lhs.serverUrl == rhs.serverUrl)
271 |             && (lhs.pathPrefix == rhs.pathPrefix)
[12/24] Compiling Endpoint Endpoint.swift
/Users/admin/builder/spi-builder-workspace/Sources/Endpoint/Endpoint.swift:269:27: warning: generic parameter 'Payload' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
  9 | import Foundation
 10 |
 11 | open class Endpoint<Payload> {
    |                     `- note: 'Payload' previously declared here
 12 |     public let serverUrl: URL?
 13 |     public let pathPrefix: String
    :
267 |
268 | extension Endpoint: Equatable {
269 |     public static func ==<Payload>(lhs: Endpoint<Payload>, rhs: Endpoint<Payload>) -> Bool {
    |                           `- warning: generic parameter 'Payload' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
270 |         return (lhs.serverUrl == rhs.serverUrl)
271 |             && (lhs.pathPrefix == rhs.pathPrefix)
[13/24] Compiling Endpoint EndpointController.swift
[14/24] Compiling Endpoint EndpointError.swift
[15/24] Emitting module Endpoint
/Users/admin/builder/spi-builder-workspace/Sources/Endpoint/Endpoint.swift:269:27: warning: generic parameter 'Payload' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
  9 | import Foundation
 10 |
 11 | open class Endpoint<Payload> {
    |                     `- note: 'Payload' previously declared here
 12 |     public let serverUrl: URL?
 13 |     public let pathPrefix: String
    :
267 |
268 | extension Endpoint: Equatable {
269 |     public static func ==<Payload>(lhs: Endpoint<Payload>, rhs: Endpoint<Payload>) -> Bool {
    |                           `- warning: generic parameter 'Payload' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
270 |         return (lhs.serverUrl == rhs.serverUrl)
271 |             && (lhs.pathPrefix == rhs.pathPrefix)
[16/24] Compiling Endpoint EndpointHttpMethod.swift
[17/24] Compiling Endpoint EndpointPageable.swift
[18/24] Compiling Endpoint ReachabilityTester.swift
[19/24] Compiling Endpoint EndpointServerError.swift
[20/24] Compiling Endpoint DateFormatter.swift
[21/24] Compiling Endpoint String.swift
[22/24] Compiling Endpoint FileDownloadEndpoint.swift
[23/24] Compiling Endpoint HttpResponseValidator.swift
[24/24] Compiling Endpoint JsonResponseValidator.swift
[25/25] Compiling Endpoint ValidationError.swift
Build complete! (6.35s)
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swift-log",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.1.1",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-log.git"
    }
  ],
  "manifest_display_name" : "Endpoint",
  "name" : "Endpoint",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "11.0"
    },
    {
      "name" : "macos",
      "version" : "10.14"
    }
  ],
  "products" : [
    {
      "name" : "Endpoint",
      "targets" : [
        "Endpoint"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "EndpointTests",
      "module_type" : "SwiftTarget",
      "name" : "EndpointTests",
      "path" : "Tests/EndpointTests",
      "sources" : [
        "CodableEndpointTests.swift",
        "EndpointControllerTests.swift",
        "EndpointPageableTests.swift",
        "EndpointTests+Equality.swift",
        "EndpointTests.swift",
        "Extensions/DateFormatterTests.swift",
        "Extensions/StringTests.swift",
        "FileDownloadEndpointTests.swift",
        "Model/Token.swift",
        "Model/User.swift",
        "Private/FakeLogHandler.swift",
        "Private/HttpResponseValidatorTests.swift",
        "Private/JsonResponseValidatorTests.swift",
        "Private/MimeTypeTests.swift",
        "Private/ReachabilityTests.swift",
        "ValidationErrorTests.swift",
        "XCTestManifests.swift"
      ],
      "target_dependencies" : [
        "Endpoint"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Endpoint",
      "module_type" : "SwiftTarget",
      "name" : "Endpoint",
      "path" : "Sources/Endpoint",
      "product_dependencies" : [
        "Logging"
      ],
      "product_memberships" : [
        "Endpoint"
      ],
      "sources" : [
        "CodableEndpoint.swift",
        "Endpoint.swift",
        "EndpointController.swift",
        "EndpointError.swift",
        "EndpointHttpMethod.swift",
        "EndpointPageable.swift",
        "EndpointServerError.swift",
        "Extensions/DateFormatter.swift",
        "Extensions/Dictionary.swift",
        "Extensions/DispatchQueue.swift",
        "Extensions/String.swift",
        "FileDownloadEndpoint.swift",
        "Private/HttpResponseValidator.swift",
        "Private/JsonResponseValidator.swift",
        "Private/MimeType.swift",
        "Private/ReachabilityTester.swift",
        "ValidationError.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.1"
}
Done.