Build Information
Successful build of Argo, reference v5.0.0 (29a4db), with Swift 6.3 for Android on 12 Apr 2026 12:08:14 UTC.
Swift 6 data race errors: 0
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4609320-1":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:android-6.3-latest swift build --swift-sdk aarch64-unknown-linux-android28 2>&1Build Log
========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/thoughtbot/Argo.git
Reference: v5.0.0
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/thoughtbot/Argo
* tag v5.0.0 -> FETCH_HEAD
HEAD is now at 29a4db7 Bump version: v5.0
Cloned https://github.com/thoughtbot/Argo.git
Revision (git rev-parse @):
29a4db7c3e84c5709927dcf9b8f948282e9009ad
SUCCESS checkout https://github.com/thoughtbot/Argo.git at v5.0.0
========================================
Build
========================================
Selected platform: android
Swift version: 6.3
Building package at path: $PWD
https://github.com/thoughtbot/Argo.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-1":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:android-6.3-latest swift build --swift-sdk aarch64-unknown-linux-android28 2>&1
android-6.3-latest: Pulling from swiftpackageindex/spi-images
Digest: sha256:9008270ea37a55e78725e6225015adb5eff8582da520c5232bf0499f32c36dc4
Status: Image is up to date for registry.gitlab.com/swiftpackageindex/spi-images:android-6.3-latest
Fetching https://github.com/thoughtbot/Runes.git
[1/1249] Fetching runes
Fetched https://github.com/thoughtbot/Runes.git from cache (0.24s)
Computing version for https://github.com/thoughtbot/Runes.git
Computed https://github.com/thoughtbot/Runes.git at 5.1.0 (0.68s)
Creating working copy for https://github.com/thoughtbot/Runes.git
Working copy of https://github.com/thoughtbot/Runes.git resolved at 5.1.0
Building for debugging...
[0/3] Write sources
[2/3] Write swift-version--4F562202D5529B1.txt
[4/16] Compiling Runes Result+Monad.swift
[5/17] Compiling Runes Runes.swift
[6/17] Compiling Runes Optional+Functor.swift
[7/17] Compiling Runes Optional+Monad.swift
[8/17] Compiling Runes Array+Functor.swift
[9/17] Compiling Runes Array+Monad.swift
[10/17] Emitting module Runes
[11/17] Compiling Runes Array+Alternative.swift
[12/17] Compiling Runes Array+Applicative.swift
[13/17] Compiling Runes Optional+Alternative.swift
[14/17] Compiling Runes Optional+Applicative.swift
[15/17] Compiling Runes Result+Alternative.swift
[16/17] Compiling Runes Result+Applicative.swift
[17/17] Compiling Runes Result+Functor.swift
[19/36] Emitting module Argo
/host/spi-builder-workspace/Sources/Argo/Types/DecodeError.swift:28:14: warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'DecodeError' to 'Hashable' by implementing 'hash(into:)' instead [#DeprecatedDeclaration]
26 |
27 | extension DecodeError: Hashable {
28 | public var hashValue: Int {
| `- warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'DecodeError' to 'Hashable' by implementing 'hash(into:)' instead [#DeprecatedDeclaration]
29 | switch self {
30 | case let .typeMismatch(expected: expected, actual: actual):
/host/spi-builder-workspace/Sources/Argo/Types/Decoded/Decoded.swift:44:24: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
1 | /// The result of a failable decoding operation.
2 | public enum Decoded<T> {
| `- note: 'T' previously declared here
3 | case success(T)
4 | case failure(DecodeError)
:
42 | - returns: The `Decoded` type with any failure converted to `.success(.none)`
43 | */
44 | static func optional<T>(_ x: Decoded<T>) -> Decoded<T?> {
| `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
45 | return .success(x.value)
46 | }
/host/spi-builder-workspace/Sources/Argo/Types/Decoded/Decoded.swift:56:28: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
1 | /// The result of a failable decoding operation.
2 | public enum Decoded<T> {
| `- note: 'T' previously declared here
3 | case success(T)
4 | case failure(DecodeError)
:
54 | - returns: The provided `Optional` value transformed into a `Decoded` value
55 | */
56 | static func fromOptional<T>(_ x: T?) -> Decoded<T> {
| `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
57 | switch x {
58 | case let .some(value): return .success(value)
/host/spi-builder-workspace/Sources/Argo/Types/Decoded/Decoded.swift:74:28: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
1 | /// The result of a failable decoding operation.
2 | public enum Decoded<T> {
| `- note: 'T' previously declared here
3 | case success(T)
4 | case failure(DecodeError)
:
72 | from the provided `expected` and `actual` values
73 | */
74 | static func typeMismatch<T, U>(expected: String, actual: U) -> Decoded<T> {
| `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
75 | return .failure(.typeMismatch(expected: expected, actual: String(describing: actual)))
76 | }
/host/spi-builder-workspace/Sources/Argo/Types/Decoded/Decoded.swift:86:26: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
1 | /// The result of a failable decoding operation.
2 | public enum Decoded<T> {
| `- note: 'T' previously declared here
3 | case success(T)
4 | case failure(DecodeError)
:
84 | the provided `name` value
85 | */
86 | static func missingKey<T>(_ name: String) -> Decoded<T> {
| `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
87 | return .failure(.missingKey(name))
88 | }
/host/spi-builder-workspace/Sources/Argo/Types/Decoded/Decoded.swift:98:27: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
1 | /// The result of a failable decoding operation.
2 | public enum Decoded<T> {
| `- note: 'T' previously declared here
3 | case success(T)
4 | case failure(DecodeError)
:
96 | provided `message` value
97 | */
98 | static func customError<T>(_ message: String) -> Decoded<T> {
| `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
99 | return .failure(.custom(message))
100 | }
/host/spi-builder-workspace/Sources/Argo/Types/Decoded/Decoded.swift:110:30: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
1 | /// The result of a failable decoding operation.
2 | public enum Decoded<T> {
| `- note: 'T' previously declared here
3 | case success(T)
4 | case failure(DecodeError)
:
108 | provided `errors` value
109 | */
110 | static func multipleErrors<T>(errors: [DecodeError]) -> Decoded<T> {
| `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
111 | return .failure(.multiple(errors))
112 | }
/host/spi-builder-workspace/Sources/Argo/Types/JSON.swift:94:4: warning: unexpected version number for *
92 |
93 | extension JSON {
94 | @available(*, deprecated: 3.0, renamed: "init")
| `- warning: unexpected version number for *
95 | static func parse(_ json: Any) -> JSON {
96 | return JSON(json)
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[20/38] Compiling Argo catDecoded.swift
[21/38] Compiling Argo decode.swift
[22/38] Compiling Argo flatReduce.swift
[23/38] Compiling Argo sequence.swift
[24/38] Compiling Argo Argo.swift
[25/38] Compiling Argo DecodeOperators.swift
[26/38] Compiling Argo Functor.swift
[27/38] Compiling Argo Monad.swift
[28/38] Compiling Argo Decodable.swift
/host/spi-builder-workspace/Sources/Argo/Types/DecodeError.swift:28:14: warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'DecodeError' to 'Hashable' by implementing 'hash(into:)' instead [#DeprecatedDeclaration]
26 |
27 | extension DecodeError: Hashable {
28 | public var hashValue: Int {
| `- warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'DecodeError' to 'Hashable' by implementing 'hash(into:)' instead [#DeprecatedDeclaration]
29 | switch self {
30 | case let .typeMismatch(expected: expected, actual: actual):
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[29/38] Compiling Argo DecodeError.swift
/host/spi-builder-workspace/Sources/Argo/Types/DecodeError.swift:28:14: warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'DecodeError' to 'Hashable' by implementing 'hash(into:)' instead [#DeprecatedDeclaration]
26 |
27 | extension DecodeError: Hashable {
28 | public var hashValue: Int {
| `- warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'DecodeError' to 'Hashable' by implementing 'hash(into:)' instead [#DeprecatedDeclaration]
29 | switch self {
30 | case let .typeMismatch(expected: expected, actual: actual):
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[30/38] Compiling Argo Decoded.swift
/host/spi-builder-workspace/Sources/Argo/Types/Decoded/Decoded.swift:44:24: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
1 | /// The result of a failable decoding operation.
2 | public enum Decoded<T> {
| `- note: 'T' previously declared here
3 | case success(T)
4 | case failure(DecodeError)
:
42 | - returns: The `Decoded` type with any failure converted to `.success(.none)`
43 | */
44 | static func optional<T>(_ x: Decoded<T>) -> Decoded<T?> {
| `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
45 | return .success(x.value)
46 | }
/host/spi-builder-workspace/Sources/Argo/Types/Decoded/Decoded.swift:56:28: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
1 | /// The result of a failable decoding operation.
2 | public enum Decoded<T> {
| `- note: 'T' previously declared here
3 | case success(T)
4 | case failure(DecodeError)
:
54 | - returns: The provided `Optional` value transformed into a `Decoded` value
55 | */
56 | static func fromOptional<T>(_ x: T?) -> Decoded<T> {
| `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
57 | switch x {
58 | case let .some(value): return .success(value)
/host/spi-builder-workspace/Sources/Argo/Types/Decoded/Decoded.swift:74:28: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
1 | /// The result of a failable decoding operation.
2 | public enum Decoded<T> {
| `- note: 'T' previously declared here
3 | case success(T)
4 | case failure(DecodeError)
:
72 | from the provided `expected` and `actual` values
73 | */
74 | static func typeMismatch<T, U>(expected: String, actual: U) -> Decoded<T> {
| `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
75 | return .failure(.typeMismatch(expected: expected, actual: String(describing: actual)))
76 | }
/host/spi-builder-workspace/Sources/Argo/Types/Decoded/Decoded.swift:86:26: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
1 | /// The result of a failable decoding operation.
2 | public enum Decoded<T> {
| `- note: 'T' previously declared here
3 | case success(T)
4 | case failure(DecodeError)
:
84 | the provided `name` value
85 | */
86 | static func missingKey<T>(_ name: String) -> Decoded<T> {
| `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
87 | return .failure(.missingKey(name))
88 | }
/host/spi-builder-workspace/Sources/Argo/Types/Decoded/Decoded.swift:98:27: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
1 | /// The result of a failable decoding operation.
2 | public enum Decoded<T> {
| `- note: 'T' previously declared here
3 | case success(T)
4 | case failure(DecodeError)
:
96 | provided `message` value
97 | */
98 | static func customError<T>(_ message: String) -> Decoded<T> {
| `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
99 | return .failure(.custom(message))
100 | }
/host/spi-builder-workspace/Sources/Argo/Types/Decoded/Decoded.swift:110:30: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
1 | /// The result of a failable decoding operation.
2 | public enum Decoded<T> {
| `- note: 'T' previously declared here
3 | case success(T)
4 | case failure(DecodeError)
:
108 | provided `errors` value
109 | */
110 | static func multipleErrors<T>(errors: [DecodeError]) -> Decoded<T> {
| `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
111 | return .failure(.multiple(errors))
112 | }
[31/38] Compiling Argo FailureCoalescing.swift
/host/spi-builder-workspace/Sources/Argo/Types/Decoded/Decoded.swift:44:24: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
1 | /// The result of a failable decoding operation.
2 | public enum Decoded<T> {
| `- note: 'T' previously declared here
3 | case success(T)
4 | case failure(DecodeError)
:
42 | - returns: The `Decoded` type with any failure converted to `.success(.none)`
43 | */
44 | static func optional<T>(_ x: Decoded<T>) -> Decoded<T?> {
| `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
45 | return .success(x.value)
46 | }
/host/spi-builder-workspace/Sources/Argo/Types/Decoded/Decoded.swift:56:28: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
1 | /// The result of a failable decoding operation.
2 | public enum Decoded<T> {
| `- note: 'T' previously declared here
3 | case success(T)
4 | case failure(DecodeError)
:
54 | - returns: The provided `Optional` value transformed into a `Decoded` value
55 | */
56 | static func fromOptional<T>(_ x: T?) -> Decoded<T> {
| `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
57 | switch x {
58 | case let .some(value): return .success(value)
/host/spi-builder-workspace/Sources/Argo/Types/Decoded/Decoded.swift:74:28: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
1 | /// The result of a failable decoding operation.
2 | public enum Decoded<T> {
| `- note: 'T' previously declared here
3 | case success(T)
4 | case failure(DecodeError)
:
72 | from the provided `expected` and `actual` values
73 | */
74 | static func typeMismatch<T, U>(expected: String, actual: U) -> Decoded<T> {
| `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
75 | return .failure(.typeMismatch(expected: expected, actual: String(describing: actual)))
76 | }
/host/spi-builder-workspace/Sources/Argo/Types/Decoded/Decoded.swift:86:26: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
1 | /// The result of a failable decoding operation.
2 | public enum Decoded<T> {
| `- note: 'T' previously declared here
3 | case success(T)
4 | case failure(DecodeError)
:
84 | the provided `name` value
85 | */
86 | static func missingKey<T>(_ name: String) -> Decoded<T> {
| `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
87 | return .failure(.missingKey(name))
88 | }
/host/spi-builder-workspace/Sources/Argo/Types/Decoded/Decoded.swift:98:27: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
1 | /// The result of a failable decoding operation.
2 | public enum Decoded<T> {
| `- note: 'T' previously declared here
3 | case success(T)
4 | case failure(DecodeError)
:
96 | provided `message` value
97 | */
98 | static func customError<T>(_ message: String) -> Decoded<T> {
| `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
99 | return .failure(.custom(message))
100 | }
/host/spi-builder-workspace/Sources/Argo/Types/Decoded/Decoded.swift:110:30: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
1 | /// The result of a failable decoding operation.
2 | public enum Decoded<T> {
| `- note: 'T' previously declared here
3 | case success(T)
4 | case failure(DecodeError)
:
108 | provided `errors` value
109 | */
110 | static func multipleErrors<T>(errors: [DecodeError]) -> Decoded<T> {
| `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
111 | return .failure(.multiple(errors))
112 | }
[32/38] Compiling Argo JSON.swift
/host/spi-builder-workspace/Sources/Argo/Types/JSON.swift:94:4: warning: unexpected version number for *
92 |
93 | extension JSON {
94 | @available(*, deprecated: 3.0, renamed: "init")
| `- warning: unexpected version number for *
95 | static func parse(_ json: Any) -> JSON {
96 | return JSON(json)
[33/38] Compiling Argo StandardTypes.swift
/host/spi-builder-workspace/Sources/Argo/Types/JSON.swift:94:4: warning: unexpected version number for *
92 |
93 | extension JSON {
94 | @available(*, deprecated: 3.0, renamed: "init")
| `- warning: unexpected version number for *
95 | static func parse(_ json: Any) -> JSON {
96 | return JSON(json)
[34/38] Compiling Argo Dictionary.swift
[35/38] Compiling Argo NSNumber.swift
[36/38] Compiling Argo RawRepresentable.swift
[37/38] Compiling Argo Alternative.swift
[38/38] Compiling Argo Applicative.swift
Build complete! (15.73s)
Build complete.
{
"dependencies" : [
{
"identity" : "runes",
"requirement" : {
"range" : [
{
"lower_bound" : "5.0.0",
"upper_bound" : "6.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/thoughtbot/Runes.git"
}
],
"manifest_display_name" : "Argo",
"name" : "Argo",
"path" : "/host/spi-builder-workspace",
"platforms" : [
],
"products" : [
{
"name" : "Argo",
"targets" : [
"Argo"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "Argo",
"module_type" : "SwiftTarget",
"name" : "Argo",
"path" : "Sources",
"product_dependencies" : [
"Runes"
],
"product_memberships" : [
"Argo"
],
"sources" : [
"Argo/Extensions/Dictionary.swift",
"Argo/Extensions/NSNumber.swift",
"Argo/Extensions/RawRepresentable.swift",
"Argo/Functions/catDecoded.swift",
"Argo/Functions/decode.swift",
"Argo/Functions/flatReduce.swift",
"Argo/Functions/sequence.swift",
"Argo/Operators/Argo.swift",
"Argo/Operators/DecodeOperators.swift",
"Argo/Types/Decodable.swift",
"Argo/Types/DecodeError.swift",
"Argo/Types/Decoded/Alternative.swift",
"Argo/Types/Decoded/Applicative.swift",
"Argo/Types/Decoded/Decoded.swift",
"Argo/Types/Decoded/FailureCoalescing.swift",
"Argo/Types/Decoded/Functor.swift",
"Argo/Types/Decoded/Monad.swift",
"Argo/Types/JSON.swift",
"Argo/Types/StandardTypes.swift"
],
"type" : "library"
}
],
"tools_version" : "5.2"
}
android-6.3-latest: Pulling from swiftpackageindex/spi-images
Digest: sha256:9008270ea37a55e78725e6225015adb5eff8582da520c5232bf0499f32c36dc4
Status: Image is up to date for registry.gitlab.com/swiftpackageindex/spi-images:android-6.3-latest
Done.