Build Information
Successful build of Athena, reference main (a4e351
), with Swift 6.2 (beta) for Android on 20 Jun 2025 06:14:16 UTC.
Swift 6 data race errors: 0
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4606859-2":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:android-6.2-latest swift build --swift-sdk aarch64-unknown-linux-android28 2>&1
Build Log
========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/vsanthanam/Athena.git
Reference: main
Initialized empty Git repository in /host/spi-builder-workspace/.git/
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: git branch -m <name>
From https://github.com/vsanthanam/Athena
* branch main -> FETCH_HEAD
* [new branch] main -> origin/main
HEAD is now at a4e3517 Add custom string interpolation for `JSONEncodable` conforming types (#26)
Cloned https://github.com/vsanthanam/Athena.git
Revision (git rev-parse @):
a4e3517d00cf0bbef9dc3c7f7b972b3024ff8a76
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/vsanthanam/Athena.git at main
========================================
Build
========================================
Selected platform: android
Swift version: 6.2
Building package at path: $PWD
https://github.com/vsanthanam/Athena.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-2":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:android-6.2-latest swift build --swift-sdk aarch64-unknown-linux-android28 2>&1
android-6.2-latest: Pulling from finestructure/spi-images
Digest: sha256:b7c4a6b4153ff40ef9277e2157e708f835b8eb011095d53bd8db4594eb2b7798
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:android-6.2-latest
Fetching https://github.com/apple/swift-docc-plugin
Fetching https://github.com/nicklockwood/SwiftFormat
[1/2082] Fetching swift-docc-plugin
[2083/51023] Fetching swift-docc-plugin, swiftformat
Fetched https://github.com/apple/swift-docc-plugin from cache (30.85s)
Fetched https://github.com/nicklockwood/SwiftFormat from cache (31.67s)
Computing version for https://github.com/nicklockwood/SwiftFormat
Computed https://github.com/nicklockwood/SwiftFormat at 0.51.7 (36.61s)
Computing version for https://github.com/apple/swift-docc-plugin
Computed https://github.com/apple/swift-docc-plugin at 1.4.4 (0.78s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit
[1/3413] Fetching swift-docc-symbolkit
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (0.40s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (1.10s)
Creating working copy for https://github.com/nicklockwood/SwiftFormat
Working copy of https://github.com/nicklockwood/SwiftFormat resolved at 0.51.7
Creating working copy for https://github.com/swiftlang/swift-docc-symbolkit
Working copy of https://github.com/swiftlang/swift-docc-symbolkit resolved at 1.0.0
Creating working copy for https://github.com/apple/swift-docc-plugin
Working copy of https://github.com/apple/swift-docc-plugin resolved at 1.4.4
[1/1] Compiling plugin SwiftFormatPlugin
[2/2] Compiling plugin Swift-DocC Preview
[3/3] Compiling plugin Swift-DocC
Building for debugging...
[3/5] Write sources
[4/5] Write swift-version-8C5A4AE7A8CE2BA.txt
[6/27] Compiling Athena Literal.swift
[7/27] Compiling Athena LiteralDecodable.swift
[8/27] Compiling Athena Number.swift
[9/29] Compiling Athena StringExtensions.swift
[10/29] Compiling Athena UInt8Extensions.swift
[11/29] Compiling Athena UnicodeEscapeParser.swift
[12/29] Compiling Athena NumberDecodable.swift
[13/29] Compiling Athena Serializer.swift
[14/29] Compiling Athena SerializerOptions.swift
[15/29] Compiling Athena JSON.swift
[16/29] Compiling Athena JSONCodable.swift
[17/29] Compiling Athena JSONSubscriptRepresentable.swift
[18/29] Emitting module Athena
[19/29] Compiling Athena IntExtensions.swift
[20/29] Compiling Athena NumberParser.swift
[21/29] Compiling Athena SerializationOptionsExtensions.swift
[22/29] Compiling Athena StringInterpolationExtensions.swift
[23/29] Compiling Athena Subscript.swift
[24/29] Compiling Athena Decoder.swift
/host/spi-builder-workspace/Sources/Athena/Decoder.swift:82:34: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
80 | from json: JSON
81 | ) async throws -> T where T: JSONDecodable {
82 | try await Task { try decode(type, from: json) }.value
| `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
83 | }
84 |
/host/spi-builder-workspace/Sources/Athena/Decoder.swift:79:15: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
77 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
78 | public static func decode<T>(
79 | _ type: T.Type = T.self,
| `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
80 | from json: JSON
81 | ) async throws -> T where T: JSONDecodable {
/host/spi-builder-workspace/Sources/Athena/Decoder.swift:120:32: warning: capture of 'type' with non-sendable type 'T.Type' in a '@Sendable' closure; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
118 | DispatchQueue.global().async {
119 | let result = Result {
120 | try decode(type, from: json)
| `- warning: capture of 'type' with non-sendable type 'T.Type' in a '@Sendable' closure; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
121 | }
122 | completionHandler(json, result)
/host/spi-builder-workspace/Sources/Athena/Decoder.swift:119:30: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
117 | ) where T: JSONDecodable {
118 | DispatchQueue.global().async {
119 | let result = Result {
| `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
120 | try decode(type, from: json)
121 | }
/host/spi-builder-workspace/Sources/Athena/Decoder.swift:114:15: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
112 | @available(tvOS, deprecated: 15.0, message: "Use the Swift Concurrency based APIs instead.")
113 | public static func decode<T>(
114 | _ type: T.Type = T.self,
| `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
115 | from json: JSON,
116 | completionHandler: @escaping (JSON, Result<T, any Swift.Error>) -> Void
/host/spi-builder-workspace/Sources/Athena/Decoder.swift:120:32: warning: capture of 'type' with non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
118 | DispatchQueue.global().async {
119 | let result = Result {
120 | try decode(type, from: json)
| `- warning: capture of 'type' with non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
121 | }
122 | completionHandler(json, result)
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
[25/29] Compiling Athena Deserializer.swift
/host/spi-builder-workspace/Sources/Athena/Decoder.swift:82:34: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
80 | from json: JSON
81 | ) async throws -> T where T: JSONDecodable {
82 | try await Task { try decode(type, from: json) }.value
| `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
83 | }
84 |
/host/spi-builder-workspace/Sources/Athena/Decoder.swift:79:15: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
77 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
78 | public static func decode<T>(
79 | _ type: T.Type = T.self,
| `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
80 | from json: JSON
81 | ) async throws -> T where T: JSONDecodable {
/host/spi-builder-workspace/Sources/Athena/Decoder.swift:120:32: warning: capture of 'type' with non-sendable type 'T.Type' in a '@Sendable' closure; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
118 | DispatchQueue.global().async {
119 | let result = Result {
120 | try decode(type, from: json)
| `- warning: capture of 'type' with non-sendable type 'T.Type' in a '@Sendable' closure; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
121 | }
122 | completionHandler(json, result)
/host/spi-builder-workspace/Sources/Athena/Decoder.swift:119:30: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
117 | ) where T: JSONDecodable {
118 | DispatchQueue.global().async {
119 | let result = Result {
| `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
120 | try decode(type, from: json)
121 | }
/host/spi-builder-workspace/Sources/Athena/Decoder.swift:114:15: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
112 | @available(tvOS, deprecated: 15.0, message: "Use the Swift Concurrency based APIs instead.")
113 | public static func decode<T>(
114 | _ type: T.Type = T.self,
| `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
115 | from json: JSON,
116 | completionHandler: @escaping (JSON, Result<T, any Swift.Error>) -> Void
/host/spi-builder-workspace/Sources/Athena/Decoder.swift:120:32: warning: capture of 'type' with non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
118 | DispatchQueue.global().async {
119 | let result = Result {
120 | try decode(type, from: json)
| `- warning: capture of 'type' with non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
121 | }
122 | completionHandler(json, result)
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
[26/29] Compiling Athena DeserializerOptions.swift
/host/spi-builder-workspace/Sources/Athena/Decoder.swift:82:34: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
80 | from json: JSON
81 | ) async throws -> T where T: JSONDecodable {
82 | try await Task { try decode(type, from: json) }.value
| `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
83 | }
84 |
/host/spi-builder-workspace/Sources/Athena/Decoder.swift:79:15: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
77 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
78 | public static func decode<T>(
79 | _ type: T.Type = T.self,
| `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
80 | from json: JSON
81 | ) async throws -> T where T: JSONDecodable {
/host/spi-builder-workspace/Sources/Athena/Decoder.swift:120:32: warning: capture of 'type' with non-sendable type 'T.Type' in a '@Sendable' closure; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
118 | DispatchQueue.global().async {
119 | let result = Result {
120 | try decode(type, from: json)
| `- warning: capture of 'type' with non-sendable type 'T.Type' in a '@Sendable' closure; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
121 | }
122 | completionHandler(json, result)
/host/spi-builder-workspace/Sources/Athena/Decoder.swift:119:30: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
117 | ) where T: JSONDecodable {
118 | DispatchQueue.global().async {
119 | let result = Result {
| `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
120 | try decode(type, from: json)
121 | }
/host/spi-builder-workspace/Sources/Athena/Decoder.swift:114:15: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
112 | @available(tvOS, deprecated: 15.0, message: "Use the Swift Concurrency based APIs instead.")
113 | public static func decode<T>(
114 | _ type: T.Type = T.self,
| `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
115 | from json: JSON,
116 | completionHandler: @escaping (JSON, Result<T, any Swift.Error>) -> Void
/host/spi-builder-workspace/Sources/Athena/Decoder.swift:120:32: warning: capture of 'type' with non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
118 | DispatchQueue.global().async {
119 | let result = Result {
120 | try decode(type, from: json)
| `- warning: capture of 'type' with non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
121 | }
122 | completionHandler(json, result)
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
[27/29] Compiling Athena Encoder.swift
/host/spi-builder-workspace/Sources/Athena/Encoder.swift:69:26: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
67 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
68 | public static func encode<T>(_ value: T) async -> JSON where T: JSONEncodable {
69 | await Task { encode(value) }.value
| `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
70 | }
71 |
/host/spi-builder-workspace/Sources/Athena/Encoder.swift:68:40: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
66 | /// - Returns: The ``JSON`` representing the provided value
67 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
68 | public static func encode<T>(_ value: T) async -> JSON where T: JSONEncodable {
| `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
69 | await Task { encode(value) }.value
70 | }
/host/spi-builder-workspace/Sources/Athena/Encoder.swift:99:28: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
97 | ) where T: JSONEncodable {
98 | DispatchQueue.global().async {
99 | let json = encode(value)
| `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
100 | completionHandler(value, json)
101 | }
/host/spi-builder-workspace/Sources/Athena/Encoder.swift:95:15: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
93 | @available(tvOS, deprecated: 15.0, message: "Use the Swift Concurrency based APIs instead.")
94 | public static func encode<T>(
95 | _ value: T,
| `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
96 | completionHandler: @escaping (T, JSON) -> Void
97 | ) where T: JSONEncodable {
[28/29] Compiling Athena EncodingDetector.swift
/host/spi-builder-workspace/Sources/Athena/Encoder.swift:69:26: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
67 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
68 | public static func encode<T>(_ value: T) async -> JSON where T: JSONEncodable {
69 | await Task { encode(value) }.value
| `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
70 | }
71 |
/host/spi-builder-workspace/Sources/Athena/Encoder.swift:68:40: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
66 | /// - Returns: The ``JSON`` representing the provided value
67 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
68 | public static func encode<T>(_ value: T) async -> JSON where T: JSONEncodable {
| `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
69 | await Task { encode(value) }.value
70 | }
/host/spi-builder-workspace/Sources/Athena/Encoder.swift:99:28: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
97 | ) where T: JSONEncodable {
98 | DispatchQueue.global().async {
99 | let json = encode(value)
| `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
100 | completionHandler(value, json)
101 | }
/host/spi-builder-workspace/Sources/Athena/Encoder.swift:95:15: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
93 | @available(tvOS, deprecated: 15.0, message: "Use the Swift Concurrency based APIs instead.")
94 | public static func encode<T>(
95 | _ value: T,
| `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
96 | completionHandler: @escaping (T, JSON) -> Void
97 | ) where T: JSONEncodable {
[29/29] Compiling Athena Error.swift
/host/spi-builder-workspace/Sources/Athena/Encoder.swift:69:26: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
67 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
68 | public static func encode<T>(_ value: T) async -> JSON where T: JSONEncodable {
69 | await Task { encode(value) }.value
| `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
70 | }
71 |
/host/spi-builder-workspace/Sources/Athena/Encoder.swift:68:40: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
66 | /// - Returns: The ``JSON`` representing the provided value
67 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
68 | public static func encode<T>(_ value: T) async -> JSON where T: JSONEncodable {
| `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
69 | await Task { encode(value) }.value
70 | }
/host/spi-builder-workspace/Sources/Athena/Encoder.swift:99:28: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
97 | ) where T: JSONEncodable {
98 | DispatchQueue.global().async {
99 | let json = encode(value)
| `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
100 | completionHandler(value, json)
101 | }
/host/spi-builder-workspace/Sources/Athena/Encoder.swift:95:15: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
93 | @available(tvOS, deprecated: 15.0, message: "Use the Swift Concurrency based APIs instead.")
94 | public static func encode<T>(
95 | _ value: T,
| `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
96 | completionHandler: @escaping (T, JSON) -> Void
97 | ) where T: JSONEncodable {
Build complete! (94.23s)
Build complete.
{
"dependencies" : [
{
"identity" : "swift-docc-plugin",
"requirement" : {
"range" : [
{
"lower_bound" : "1.0.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-docc-plugin"
},
{
"identity" : "swiftformat",
"requirement" : {
"exact" : [
"0.51.7"
]
},
"type" : "sourceControl",
"url" : "https://github.com/nicklockwood/SwiftFormat"
}
],
"manifest_display_name" : "Athena",
"name" : "Athena",
"path" : "/host/spi-builder-workspace",
"platforms" : [
{
"name" : "ios",
"version" : "12.0"
},
{
"name" : "macos",
"version" : "10.14"
},
{
"name" : "tvos",
"version" : "12.0"
},
{
"name" : "watchos",
"version" : "5.0"
}
],
"products" : [
{
"name" : "Athena",
"targets" : [
"Athena"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "AthenaTests",
"module_type" : "SwiftTarget",
"name" : "AthenaTests",
"path" : "Tests/AthenaTests",
"sources" : [
"DeserializerTests.swift",
"EncodeDecodeTests.swift",
"JSONEncodingUTFTestFixtures.swift",
"JSONTests.swift"
],
"target_dependencies" : [
"Athena"
],
"type" : "test"
},
{
"c99name" : "Athena",
"module_type" : "SwiftTarget",
"name" : "Athena",
"path" : "Sources/Athena",
"product_memberships" : [
"Athena"
],
"sources" : [
"Decoder.swift",
"Deserializer.swift",
"DeserializerOptions.swift",
"Encoder.swift",
"EncodingDetector.swift",
"Error.swift",
"Internal/IntExtensions.swift",
"Internal/NumberParser.swift",
"Internal/SerializationOptionsExtensions.swift",
"Internal/StringExtensions.swift",
"Internal/UInt8Extensions.swift",
"Internal/UnicodeEscapeParser.swift",
"JSON.swift",
"JSONCodable.swift",
"JSONSubscriptRepresentable.swift",
"Literal.swift",
"LiteralDecodable.swift",
"Number.swift",
"NumberDecodable.swift",
"Serializer.swift",
"SerializerOptions.swift",
"StringInterpolationExtensions.swift",
"Subscript.swift"
],
"type" : "library"
}
],
"tools_version" : "5.8"
}
android-6.2-latest: Pulling from finestructure/spi-images
Digest: sha256:b7c4a6b4153ff40ef9277e2157e708f835b8eb011095d53bd8db4594eb2b7798
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:android-6.2-latest
Done.