Build Information
Successful build of CodableExtensions, reference master (4bd3dc), with Swift 6.2 for macOS (SPM) on 19 Jun 2025 19:33:33 UTC.
Swift 6 data race errors: 0
Build Command
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64Build Log
========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/Appsaurus/CodableExtensions.git
Reference: master
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/Appsaurus/CodableExtensions
* branch master -> FETCH_HEAD
* [new branch] master -> origin/master
HEAD is now at 4bd3dc5 Swift 5.5 support.
Cloned https://github.com/Appsaurus/CodableExtensions.git
Revision (git rev-parse @):
4bd3dc586fd4f90a9c4f07eced3a94874d9d849e
SUCCESS checkout https://github.com/Appsaurus/CodableExtensions.git at master
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.2
Building package at path: $PWD
https://github.com/Appsaurus/CodableExtensions.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
Building for debugging...
[0/6] Write sources
[4/6] Compiling CRuntime dummy.c
[5/6] Write swift-version-1EA4D86E10B52AF.txt
[7/55] Emitting module Runtime
[8/59] Compiling Runtime RelativePointer.swift
[9/59] Compiling Runtime RelativeVectorPointer.swift
[10/59] Compiling Runtime Union.swift
[11/59] Compiling Runtime Vector.swift
[12/59] Compiling Runtime GettersSetters.swift
[13/59] Compiling Runtime Pointer+Extensions.swift
[14/59] Compiling Runtime RetainCounts.swift
[15/59] Compiling Runtime String+Extensions.swift
[16/59] Compiling Runtime PropertyInfo.swift
[17/59] Compiling Runtime TypeInfo.swift
[18/59] Compiling Runtime TypeInfoConvertible.swift
[19/59] Compiling Runtime Pointers.swift
[20/59] Compiling Runtime NominalMetadataType.swift
[21/59] Compiling Runtime ProtocolMetadata.swift
[22/59] Compiling Runtime StructMetadata.swift
[23/59] Compiling Runtime TupleMetadata.swift
[24/59] Compiling Runtime ClassMetadata.swift
[25/59] Compiling Runtime EnumMetadata.swift
[26/59] Compiling Runtime FuntionMetadata.swift
[27/59] Compiling Runtime Metadata.swift
[28/59] Compiling Runtime MetadataType.swift
[29/59] Compiling Runtime Case.swift
[30/59] Compiling Runtime Errors.swift
[31/59] Compiling Runtime FunctionInfo.swift
[32/59] Compiling Runtime Kind.swift
[33/59] Compiling Runtime MetadataLayoutType.swift
[34/59] Compiling Runtime ProtocolDescriptor.swift
[35/59] Compiling Runtime ProtocolMetadataLayout.swift
[36/59] Compiling Runtime ProtocolTypeContainer.swift
[37/59] Compiling Runtime StructMetadataLayout.swift
[38/59] Compiling Runtime EnumMetadataLayout.swift
[39/59] Compiling Runtime EnumTypeDescriptor.swift
[40/59] Compiling Runtime ExistentialContainter.swift
[41/59] Compiling Runtime FieldDescriptor.swift
[42/59] Compiling Runtime FunctionMetadataLayout.swift
[43/59] Compiling Runtime StructTypeDescriptor.swift
[44/59] Compiling Runtime TargetTypeGenericContextDescriptorHeader.swift
[45/59] Compiling Runtime TupleMetadataLayout.swift
[46/59] Compiling Runtime TypeDescriptor.swift
[47/59] Compiling Runtime ValueWitnessTable.swift
[48/59] Compiling Runtime DefaultValue.swift
[49/59] Compiling Runtime Factory.swift
[50/59] Compiling Runtime ClassHeader.swift
[51/59] Compiling Runtime ClassMetadataLayout.swift
[52/59] Compiling Runtime ClassTypeDescriptor.swift
[53/59] Compiling Codability KeyedDecodingContainer+Any.swift
[54/59] Compiling Codability GenericDecodingContainer.swift
[55/59] Compiling Codability KeyedEncodingContainer+Any.swift
[56/59] Compiling Codability RawCodingKey.swift
[57/59] Compiling Codability AnyCodable.swift
[58/59] Emitting module Codability
[59/59] Compiling Codability InvalidElementStrategy.swift
[60/69] Compiling RuntimeExtensions OptionalProtocol.swift
[61/69] Compiling RuntimeExtensions TypeInfo++.swift
[62/69] Compiling RuntimeExtensions ProxyWrapper.swift
[63/69] Compiling RuntimeExtensions PropertyInfo++.swift
[64/69] Compiling RuntimeExtensions KVC.swift
[65/69] Compiling RuntimeExtensions EnumUtils.swift
[66/69] Compiling RuntimeExtensions EmptyInitializable.swift
[67/69] Emitting module RuntimeExtensions
[68/69] Compiling RuntimeExtensions Exports.swift
[69/69] Compiling RuntimeExtensions GlobalRuntimeFunctions.swift
[70/80] Compiling CodableExtensions DecoderUpdatable.swift
/Users/admin/builder/spi-builder-workspace/Sources/Shared/DecoderUpdatable.swift:142:24: warning: generic parameter 'Key' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
124 |
125 |
126 | public class NestedDecoder<Key: CodingKey>: Decoder {
| `- note: 'Key' previously declared here
127 | public let container: KeyedDecodingContainer<Key>
128 | public let key: Key
:
140 | }
141 |
142 | public func container<Key>(keyedBy type: Key.Type) throws -> KeyedDecodingContainer<Key> where Key : CodingKey {
| `- warning: generic parameter 'Key' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
143 | return try container.nestedContainer(keyedBy: type, forKey: key)
144 | }
[71/80] Compiling CodableExtensions KeyedContainer.swift
[72/80] Compiling CodableExtensions CodableTransformer.swift
[73/81] Compiling CodableExtensions ReflectionCodable.swift
[74/81] Compiling CodableExtensions CodableExtensions.swift
[75/81] Compiling CodableExtensions AnyCodableExtensions.swift
[76/81] Compiling CodableExtensions Decodable+URLQueryItems.swift
[77/81] Emitting module CodableExtensions
/Users/admin/builder/spi-builder-workspace/Sources/Shared/DecoderUpdatable.swift:142:24: warning: generic parameter 'Key' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
124 |
125 |
126 | public class NestedDecoder<Key: CodingKey>: Decoder {
| `- note: 'Key' previously declared here
127 | public let container: KeyedDecodingContainer<Key>
128 | public let key: Key
:
140 | }
141 |
142 | public func container<Key>(keyedBy type: Key.Type) throws -> KeyedDecodingContainer<Key> where Key : CodingKey {
| `- warning: generic parameter 'Key' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
143 | return try container.nestedContainer(keyedBy: type, forKey: key)
144 | }
[78/81] Compiling CodableExtensions URLQueryItemEncoder.swift
[79/81] Compiling CodableExtensions CodableDefaults.swift
[80/81] Compiling CodableExtensions URL+QueryItemsDecoding.swift
[81/81] Compiling CodableExtensions Encodable+URLQueryItems.swift
Build complete! (13.48s)
Fetching https://github.com/yonaskolb/Codability.git
Fetching https://github.com/Appsaurus/RuntimeExtensions
Fetching https://github.com/Appsaurus/SwiftTestUtils
[1/150] Fetching swifttestutils
[76/276] Fetching swifttestutils, codability
Fetched https://github.com/yonaskolb/Codability.git from cache (0.70s)
[1/297] Fetching runtimeextensions
Fetched https://github.com/Appsaurus/SwiftTestUtils from cache (0.81s)
Fetched https://github.com/Appsaurus/RuntimeExtensions from cache (0.81s)
Computing version for https://github.com/Appsaurus/SwiftTestUtils
Computed https://github.com/Appsaurus/SwiftTestUtils at 1.0.1 (2.68s)
Computing version for https://github.com/yonaskolb/Codability.git
Computed https://github.com/yonaskolb/Codability.git at 0.2.1 (0.51s)
Computing version for https://github.com/Appsaurus/RuntimeExtensions
Computed https://github.com/Appsaurus/RuntimeExtensions at 1.1.0 (0.51s)
Fetching https://github.com/wickwirew/Runtime
[1/1966] Fetching runtime
Fetched https://github.com/wickwirew/Runtime from cache (0.94s)
Computing version for https://github.com/wickwirew/Runtime
Computed https://github.com/wickwirew/Runtime at 2.2.7 (1.47s)
Creating working copy for https://github.com/Appsaurus/RuntimeExtensions
Working copy of https://github.com/Appsaurus/RuntimeExtensions resolved at 1.1.0
Creating working copy for https://github.com/Appsaurus/SwiftTestUtils
Working copy of https://github.com/Appsaurus/SwiftTestUtils resolved at 1.0.1
Creating working copy for https://github.com/yonaskolb/Codability.git
Working copy of https://github.com/yonaskolb/Codability.git resolved at 0.2.1
Creating working copy for https://github.com/wickwirew/Runtime
Working copy of https://github.com/wickwirew/Runtime resolved at 2.2.7
Build complete.
{
"dependencies" : [
{
"identity" : "codability",
"requirement" : {
"range" : [
{
"lower_bound" : "0.2.0",
"upper_bound" : "1.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/yonaskolb/Codability.git"
},
{
"identity" : "runtimeextensions",
"requirement" : {
"range" : [
{
"lower_bound" : "1.0.1",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/Appsaurus/RuntimeExtensions"
},
{
"identity" : "swifttestutils",
"requirement" : {
"range" : [
{
"lower_bound" : "1.0.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/Appsaurus/SwiftTestUtils"
}
],
"manifest_display_name" : "CodableExtensions",
"name" : "CodableExtensions",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "10.12"
},
{
"name" : "ios",
"version" : "10.0"
},
{
"name" : "tvos",
"version" : "9.2"
},
{
"name" : "watchos",
"version" : "3.0"
}
],
"products" : [
{
"name" : "CodableExtensions",
"targets" : [
"CodableExtensions"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "CodableExtensionsTests",
"module_type" : "SwiftTarget",
"name" : "CodableExtensionsTests",
"path" : "CodableExtensionsTests/Shared",
"product_dependencies" : [
"SwiftTestUtils"
],
"sources" : [
"CodableExtensionsTests.swift",
"TestModels/CodableTestModels.swift"
],
"target_dependencies" : [
"CodableExtensions"
],
"type" : "test"
},
{
"c99name" : "CodableExtensions",
"module_type" : "SwiftTarget",
"name" : "CodableExtensions",
"path" : "Sources/Shared",
"product_dependencies" : [
"RuntimeExtensions",
"Codability"
],
"product_memberships" : [
"CodableExtensions"
],
"sources" : [
"AnyCodableExtensions.swift",
"Codable+URLQueryItems/Decodable+URLQueryItems.swift",
"Codable+URLQueryItems/Encodable+URLQueryItems.swift",
"Codable+URLQueryItems/URL+QueryItemsDecoding.swift",
"Codable+URLQueryItems/URLQueryItemEncoder.swift",
"CodableDefaults.swift",
"CodableExtensions.swift",
"CodableTransformer.swift",
"DecoderUpdatable.swift",
"KeyedContainer.swift",
"ReflectionCodable.swift"
],
"type" : "library"
}
],
"tools_version" : "5.5"
}
Done.