Build Information
Successful build of Endpoint, reference master (849bf0), with Swift 6.3 for macOS (SPM) on 12 Apr 2026 20:56:51 UTC.
Swift 6 data race errors: 0
Build Command
env DEVELOPER_DIR=/Applications/Xcode-26.4.0.app xcrun swift build --arch arm64Build Log
========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/OakCityLabs/Endpoint.git
Reference: master
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/OakCityLabs/Endpoint
* branch master -> FETCH_HEAD
* [new branch] master -> origin/master
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 master
Fetching https://github.com/apple/swift-log.git
[1/6521] Fetching swift-log
Fetched https://github.com/apple/swift-log.git from cache (1.20s)
Computing version for https://github.com/apple/swift-log.git
Computed https://github.com/apple/swift-log.git at 1.1.1 (1.89s)
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.68s)
Fetching https://github.com/apple/swift-log.git from cache
Fetched https://github.com/apple/swift-log.git from cache (0.53s)
Computing version for https://github.com/apple/swift-log.git
Computed https://github.com/apple/swift-log.git at 1.11.0 (1.15s)
Creating working copy for https://github.com/OakCityLabs/Endpoint.git
Working copy of https://github.com/OakCityLabs/Endpoint.git resolved at master (849bf07)
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
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] Emitting module Logging
[6/7] Compiling Logging Locks.swift
[7/7] Compiling Logging Logging.swift
[8/24] Compiling Endpoint HttpResponseValidator.swift
[9/24] Compiling Endpoint JsonResponseValidator.swift
[10/24] Compiling Endpoint Dictionary.swift
[11/24] Compiling Endpoint DispatchQueue.swift
[12/24] Compiling Endpoint MimeType.swift
[13/25] Compiling Endpoint EndpointHttpMethod.swift
[14/25] Compiling Endpoint EndpointPageable.swift
[15/25] Compiling Endpoint String.swift
[16/25] Compiling Endpoint FileDownloadEndpoint.swift
[17/25] Compiling Endpoint EndpointController.swift
[18/25] Compiling Endpoint EndpointError.swift
[19/25] Compiling Endpoint EndpointServerError.swift
[20/25] Compiling Endpoint DateFormatter.swift
[21/25] 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)
[22/25] Compiling Endpoint ReachabilityTester.swift
[23/25] 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)
[24/25] 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)
[25/25] Compiling Endpoint ValidationError.swift
Build complete! (6.47s)
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.