Build Information
Successful build of CBOR, reference main (a764c5
), with Swift 6.1 for macOS (SPM) on 11 Sep 2025 00:58:38 UTC.
Swift 6 data race errors: 0
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats
Build Log
========================================
RunAll
========================================
Builder version: 4.67.1
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/thecoolwinter/CBOR.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/thecoolwinter/CBOR
* branch main -> FETCH_HEAD
* [new branch] main -> origin/main
HEAD is now at a764c52 Update README to include `decodeMultiple(_:from:)`
Cloned https://github.com/thecoolwinter/CBOR.git
Revision (git rev-parse @):
a764c52b6f66be95697979d8a0724b7fa6ac0159
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/thecoolwinter/CBOR.git at main
Fetching https://github.com/apple/swift-collections.git from cache
Fetched https://github.com/apple/swift-collections.git from cache (1.14s)
Computing version for https://github.com/apple/swift-collections.git
Computed https://github.com/apple/swift-collections.git at 1.2.1 (1.75s)
Creating working copy for https://github.com/apple/swift-collections.git
Working copy of https://github.com/apple/swift-collections.git resolved at 1.2.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",
"dependencies": [
{
"identity": "cbor",
"name": "CBOR",
"url": "https://github.com/thecoolwinter/CBOR.git",
"version": "unspecified",
"path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/CBOR",
"dependencies": [
{
"identity": "swift-collections",
"name": "swift-collections",
"url": "https://github.com/apple/swift-collections.git",
"version": "1.2.1",
"path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/swift-collections",
"dependencies": [
]
}
]
}
]
}
Fetching https://github.com/thecoolwinter/CBOR.git
[1/8281] Fetching cbor
Fetched https://github.com/thecoolwinter/CBOR.git from cache (0.94s)
Fetching https://github.com/apple/swift-collections.git from cache
Fetched https://github.com/apple/swift-collections.git from cache (0.52s)
Computing version for https://github.com/apple/swift-collections.git
Computed https://github.com/apple/swift-collections.git at 1.2.1 (0.58s)
Creating working copy for https://github.com/apple/swift-collections.git
Working copy of https://github.com/apple/swift-collections.git resolved at 1.2.1
Creating working copy for https://github.com/thecoolwinter/CBOR.git
Working copy of https://github.com/thecoolwinter/CBOR.git resolved at main (a764c52)
warning: '.resolve-product-dependencies': dependency 'cbor' is not used by any target
Found 1 product dependencies
- swift-collections
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.1
Building package at path: $PWD
https://github.com/thecoolwinter/CBOR.git
https://github.com/thecoolwinter/CBOR.git
{
"dependencies" : [
{
"identity" : "swift-collections",
"requirement" : {
"range" : [
{
"lower_bound" : "1.2.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-collections.git"
}
],
"manifest_display_name" : "CBOR",
"name" : "CBOR",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
],
"products" : [
{
"name" : "CBOR",
"targets" : [
"CBOR"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "Fuzzing",
"targets" : [
"Fuzzing"
],
"type" : {
"executable" : null
}
}
],
"targets" : [
{
"c99name" : "Fuzzing",
"module_type" : "SwiftTarget",
"name" : "Fuzzing",
"path" : "Sources/Fuzzing",
"product_memberships" : [
"Fuzzing"
],
"sources" : [
"AnyDecodable.swift",
"main.swift"
],
"target_dependencies" : [
"CBOR"
],
"type" : "executable"
},
{
"c99name" : "CBORTests",
"module_type" : "SwiftTarget",
"name" : "CBORTests",
"path" : "Tests/CBORTests",
"sources" : [
"DecodableTests.swift",
"DecodeMultipleTests.swift",
"EncodableTests.swift",
"Extensions/Array+chunked.swift",
"Extensions/Data+ExpressibleByArrayLiteral.swift",
"Extensions/Data+hexString.swift",
"Extensions/String+asHexData.swift",
"Mock.swift",
"RoundTripTests.swift",
"ScannerTests.swift"
],
"target_dependencies" : [
"CBOR"
],
"type" : "test"
},
{
"c99name" : "CBOR",
"module_type" : "SwiftTarget",
"name" : "CBOR",
"path" : "Sources/CBOR",
"product_dependencies" : [
"Collections"
],
"product_memberships" : [
"CBOR",
"Fuzzing"
],
"sources" : [
"Coding/CodingPath.swift",
"Coding/UnkeyedCodingKey.swift",
"CommonTags.swift",
"Constants.swift",
"Decoder/CBORDecoder.swift",
"Decoder/Containers/DataRegion.swift",
"Decoder/Containers/DecodingContextContainer.swift",
"Decoder/Containers/KeyedCBORDecodingContainer.swift",
"Decoder/Containers/SingleValueCBORDecodingContainer.swift",
"Decoder/Containers/UnkeyedCBORDecodingContainer.swift",
"Decoder/DecodingContext.swift",
"Decoder/DecodingOptions.swift",
"Decoder/Scanner/CBORScanner+DebugDescription.swift",
"Decoder/Scanner/CBORScanner+Results.swift",
"Decoder/Scanner/CBORScanner.swift",
"Decoder/Scanner/DataReader.swift",
"Encoder/CBOREncoder.swift",
"Encoder/Containers/KeyedCBOREncodingContainer.swift",
"Encoder/Containers/SingleValueCBOREncodingContainer.swift",
"Encoder/Containers/UnkeyedCBOREncodingContainer.swift",
"Encoder/EncodingContext.swift",
"Encoder/EncodingOptimizer.swift",
"Encoder/EncodingOptions.swift",
"Encoder/Optimizers/BoolOptimizer.swift",
"Encoder/Optimizers/ByteStringOptimizer.swift",
"Encoder/Optimizers/DateOptimizer.swift",
"Encoder/Optimizers/DoubleOptimizer.swift",
"Encoder/Optimizers/Float16Optimizer.swift",
"Encoder/Optimizers/FloatOptimizer.swift",
"Encoder/Optimizers/IntOptimizer.swift",
"Encoder/Optimizers/KeyedOptimizer.swift",
"Encoder/Optimizers/NilOptimizer.swift",
"Encoder/Optimizers/StringOptimizer.swift",
"Encoder/Optimizers/UUIDOptimizer.swift",
"Encoder/Optimizers/UnkeyedOptimizer.swift",
"Encoder/TemporaryEncodingStorage.swift",
"Extensions/FixedWidthIndeger/FixedWidthIndeger+write.swift",
"Extensions/Float/Float+Float16.swift",
"Extensions/UInt8/UInt8+byteCount.swift",
"Extensions/UInt8/UInt8+simpleLength.swift",
"Extensions/countTo+.swift",
"MajorType.swift"
],
"type" : "library"
}
],
"tools_version" : "6.0"
}
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats
Building for debugging...
[0/15] Write sources
[4/15] Write Fuzzing-entitlement.plist
[4/15] Write sources
[11/15] Write swift-version-2F0A5646E1D333AE.txt
[13/29] Compiling InternalCollectionsUtilities UnsafeBufferPointer+Extras.swift
[14/29] Compiling InternalCollectionsUtilities Descriptions.swift
[15/29] Compiling InternalCollectionsUtilities RandomAccessCollection+Offsets.swift
[16/30] Compiling InternalCollectionsUtilities Debugging.swift
[17/30] Compiling InternalCollectionsUtilities _UnsafeBitSet.swift
[18/30] Compiling InternalCollectionsUtilities _SortedCollection.swift
[19/30] Compiling InternalCollectionsUtilities _UniqueCollection.swift
[20/30] Emitting module InternalCollectionsUtilities
[21/30] Compiling InternalCollectionsUtilities UInt+first and last set bit.swift
[22/30] Compiling InternalCollectionsUtilities UInt+reversed.swift
[23/30] Compiling InternalCollectionsUtilities FixedWidthInteger+roundUpToPowerOfTwo.swift
[24/30] Compiling InternalCollectionsUtilities Integer rank.swift
[25/30] Compiling InternalCollectionsUtilities _UnsafeBitSet+Index.swift
[26/30] Compiling InternalCollectionsUtilities _UnsafeBitSet+_Word.swift
[27/30] Compiling InternalCollectionsUtilities UnsafeMutableBufferPointer+Extras.swift
[28/312] Compiling HashTreeCollections _Bucket.swift
[29/312] Compiling HashTreeCollections _Hash.swift
[30/313] Compiling DequeModule _DequeBufferHeader.swift
[31/313] Compiling DequeModule _DequeSlot.swift
[32/313] Compiling DequeModule _DequeBuffer.swift
[33/313] Compiling HashTreeCollections _HashLevel.swift
[34/313] Compiling HashTreeCollections _HashNode+Builder.swift
[35/313] Compiling HeapModule Heap.swift
[36/313] Compiling HeapModule _HeapNode.swift
[37/313] Compiling HeapModule Heap+Descriptions.swift
[38/313] Compiling HeapModule Heap+Invariants.swift
[39/313] Compiling HeapModule Heap+ExpressibleByArrayLiteral.swift
[40/313] Compiling HeapModule Heap+UnsafeHandle.swift
[41/313] Emitting module HeapModule
[42/313] Compiling HashTreeCollections _HashNode+Debugging.swift
[43/313] Compiling HashTreeCollections _HashNode+Initializers.swift
[44/313] Compiling HashTreeCollections _HashNode+Primitive Insertions.swift
[45/313] Compiling HashTreeCollections _HashNode+Primitive Removals.swift
[46/313] Compiling HashTreeCollections _HashNode+Primitive Replacement.swift
[47/313] Compiling HashTreeCollections _HashNode+Storage.swift
[48/313] Compiling HashTreeCollections _HashNode+Structural compactMapValues.swift
[49/313] Compiling HashTreeCollections _HashNode+Structural filter.swift
[50/318] Compiling DequeModule _UnsafeWrappedBuffer.swift
[51/318] Compiling HashTreeCollections TreeSet+SetAlgebra intersection.swift
[52/318] Compiling HashTreeCollections TreeSet+SetAlgebra isDisjoint.swift
[53/318] Compiling HashTreeCollections TreeSet+SetAlgebra isEqualSet.swift
[54/318] Compiling HashTreeCollections TreeSet+SetAlgebra isStrictSubset.swift
[55/318] Compiling HashTreeCollections TreeDictionary+Sequence.swift
[56/318] Compiling HashTreeCollections TreeDictionary+Values.swift
[57/318] Compiling HashTreeCollections TreeSet+Codable.swift
[58/318] Compiling HashTreeCollections TreeSet+Collection.swift
[59/318] Compiling HashTreeCollections TreeSet+CustomReflectable.swift
[60/318] Compiling HashTreeCollections TreeSet+Debugging.swift
[61/318] Compiling HashTreeCollections TreeSet+Descriptions.swift
[62/318] Compiling HashTreeCollections _HashNode+Structural isEqualSet.swift
[63/318] Compiling HashTreeCollections _HashNode+Subtree Insertions.swift
[64/318] Compiling HashTreeCollections _HashNode+Subtree Modify.swift
[65/318] Compiling HashTreeCollections TreeSet+Equatable.swift
[66/318] Compiling HashTreeCollections TreeSet+ExpressibleByArrayLiteral.swift
[67/318] Compiling HashTreeCollections TreeSet+Extras.swift
[68/318] Compiling BitCollections BitSet.swift
[69/318] Compiling HashTreeCollections _HashNode+Structural isSubset.swift
[70/318] Compiling HashTreeCollections _HashNode+Structural mapValues.swift
[71/318] Compiling HashTreeCollections _HashNode+Structural merge.swift
[72/318] Compiling HashTreeCollections _HashNode+Structural subtracting.swift
[73/318] Compiling HashTreeCollections _HashNode+Structural symmetricDifference.swift
[74/318] Compiling HashTreeCollections _HashNode+Structural union.swift
[75/324] Compiling HashTreeCollections TreeDictionary.swift
[81/324] Compiling HashTreeCollections _HashNode+Invariants.swift
[82/324] Compiling HashTreeCollections TreeDictionary+ExpressibleByDictionaryLiteral.swift
[83/324] Compiling HashTreeCollections TreeDictionary+Filter.swift
[84/324] Compiling HashTreeCollections TreeDictionary+Hashable.swift
[85/324] Emitting module BitCollections
[91/324] Compiling HashTreeCollections TreeDictionary+Initializers.swift
[92/324] Compiling HashTreeCollections _AncestorHashSlots.swift
[93/324] Compiling HashTreeCollections _Bitmap.swift
[94/324] Compiling HashTreeCollections _HashNode+Structural isDisjoint.swift
[95/324] Compiling HashTreeCollections TreeSet+SetAlgebra basics.swift
[96/324] Compiling HashTreeCollections TreeSet+SetAlgebra formIntersection.swift
[97/324] Compiling HashTreeCollections TreeSet+SetAlgebra formSymmetricDifference.swift
[98/324] Compiling HashTreeCollections TreeSet+SetAlgebra formUnion.swift
[113/324] Compiling HashTreeCollections TreeDictionary+Keys.swift
[114/324] Compiling HashTreeCollections TreeDictionary+MapValues.swift
[115/324] Compiling HashTreeCollections TreeDictionary+Merge.swift
[116/324] Compiling HashTreeCollections TreeDictionary+Sendable.swift
[117/324] Compiling HashTreeCollections _HashNode+Lookups.swift
[118/324] Compiling HashTreeCollections _HashNode+Structural intersection.swift
[125/324] Compiling OrderedCollections OrderedSet+SubSequence.swift
[126/324] Compiling OrderedCollections OrderedSet+Testing.swift
[127/324] Compiling OrderedCollections OrderedSet+UnorderedView.swift
[128/324] Compiling OrderedCollections OrderedSet+UnstableInternals.swift
[147/324] Emitting module DequeModule
[205/331] Compiling OrderedCollections OrderedSet.swift
[206/331] Compiling OrderedCollections _UnsafeBitset.swift
[207/331] Compiling HashTreeCollections _UnsafePath.swift
[208/331] Compiling HashTreeCollections TreeDictionary+Codable.swift
[209/331] Compiling HashTreeCollections TreeDictionary+Collection.swift
[210/331] Compiling HashTreeCollections TreeDictionary+CustomReflectable.swift
[211/331] Compiling HashTreeCollections TreeDictionary+Debugging.swift
[212/331] Compiling HashTreeCollections TreeDictionary+Descriptions.swift
[213/331] Compiling HashTreeCollections TreeDictionary+Equatable.swift
[214/339] Compiling HashTreeCollections _HashNode+Subtree Removals.swift
[215/339] Compiling _RopeModule Rope+Remove.swift
[216/339] Compiling _RopeModule Rope+RemoveSubrange.swift
[217/339] Compiling _RopeModule Rope+Split.swift
[218/339] Compiling _RopeModule Optional Utilities.swift
[219/339] Compiling _RopeModule String Utilities.swift
[220/339] Compiling _RopeModule String.Index+ABI.swift
[221/339] Compiling _RopeModule _CharacterRecognizer.swift
[222/339] Compiling HashTreeCollections _RawHashNode+UnsafeHandle.swift
[270/339] Emitting module OrderedCollections
[271/339] Compiling HashTreeCollections TreeSet+SetAlgebra isStrictSuperset.swift
[272/339] Compiling HashTreeCollections TreeSet+SetAlgebra isSubset.swift
[273/339] Compiling HashTreeCollections TreeSet+SetAlgebra isSuperset.swift
[274/339] Compiling HashTreeCollections TreeSet+SetAlgebra subtract.swift
[275/339] Compiling HashTreeCollections TreeSet+SetAlgebra subtracting.swift
[276/339] Compiling HashTreeCollections TreeSet+SetAlgebra symmetricDifference.swift
[277/339] Compiling HashTreeCollections TreeSet+SetAlgebra union.swift
[278/339] Compiling HashTreeCollections TreeSet.swift
[312/339] Emitting module _RopeModule
[336/339] Emitting module HashTreeCollections
[337/341] Emitting module Collections
[338/341] Compiling Collections Collections.swift
[339/380] Compiling CBOR UnkeyedOptimizer.swift
[340/380] Compiling CBOR TemporaryEncodingStorage.swift
[341/380] Compiling CBOR FixedWidthIndeger+write.swift
[342/380] Compiling CBOR Float+Float16.swift
[343/384] Compiling CBOR UInt8+byteCount.swift
[344/384] Compiling CBOR UInt8+simpleLength.swift
[345/384] Compiling CBOR countTo+.swift
[346/384] Compiling CBOR MajorType.swift
[347/384] Emitting module CBOR
[348/384] Compiling CBOR EncodingOptions.swift
[349/384] Compiling CBOR BoolOptimizer.swift
[350/384] Compiling CBOR ByteStringOptimizer.swift
[351/384] Compiling CBOR DateOptimizer.swift
[352/384] Compiling CBOR CodingPath.swift
[353/384] Compiling CBOR UnkeyedCodingKey.swift
[354/384] Compiling CBOR CommonTags.swift
[355/384] Compiling CBOR Constants.swift
[356/384] Compiling CBOR CBORDecoder.swift
[357/384] Compiling CBOR CBORScanner.swift
[358/384] Compiling CBOR DataReader.swift
[359/384] Compiling CBOR CBOREncoder.swift
[360/384] Compiling CBOR KeyedCBOREncodingContainer.swift
[361/384] Compiling CBOR DecodingContext.swift
[362/384] Compiling CBOR DecodingOptions.swift
[363/384] Compiling CBOR CBORScanner+DebugDescription.swift
[364/384] Compiling CBOR CBORScanner+Results.swift
[365/384] Compiling CBOR KeyedOptimizer.swift
[366/384] Compiling CBOR NilOptimizer.swift
[367/384] Compiling CBOR StringOptimizer.swift
[368/384] Compiling CBOR UUIDOptimizer.swift
[369/384] Compiling CBOR DoubleOptimizer.swift
[370/384] Compiling CBOR Float16Optimizer.swift
[371/384] Compiling CBOR FloatOptimizer.swift
[372/384] Compiling CBOR IntOptimizer.swift
[373/384] Compiling CBOR SingleValueCBOREncodingContainer.swift
[374/384] Compiling CBOR UnkeyedCBOREncodingContainer.swift
[375/384] Compiling CBOR EncodingContext.swift
[376/384] Compiling CBOR EncodingOptimizer.swift
[377/384] Compiling CBOR DataRegion.swift
[378/384] Compiling CBOR DecodingContextContainer.swift
[379/384] Compiling CBOR KeyedCBORDecodingContainer.swift
[380/384] Compiling CBOR SingleValueCBORDecodingContainer.swift
[381/384] Compiling CBOR UnkeyedCBORDecodingContainer.swift
[382/387] Compiling Fuzzing main.swift
[383/387] Emitting module Fuzzing
[384/387] Compiling Fuzzing AnyDecodable.swift
[384/387] Write Objects.LinkFileList
[385/387] Linking Fuzzing
[386/387] Applying Fuzzing
Build complete! (10.65s)
Build complete.
{
"dependencies" : [
{
"identity" : "swift-collections",
"requirement" : {
"range" : [
{
"lower_bound" : "1.2.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-collections.git"
}
],
"manifest_display_name" : "CBOR",
"name" : "CBOR",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
],
"products" : [
{
"name" : "CBOR",
"targets" : [
"CBOR"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "Fuzzing",
"targets" : [
"Fuzzing"
],
"type" : {
"executable" : null
}
}
],
"targets" : [
{
"c99name" : "Fuzzing",
"module_type" : "SwiftTarget",
"name" : "Fuzzing",
"path" : "Sources/Fuzzing",
"product_memberships" : [
"Fuzzing"
],
"sources" : [
"AnyDecodable.swift",
"main.swift"
],
"target_dependencies" : [
"CBOR"
],
"type" : "executable"
},
{
"c99name" : "CBORTests",
"module_type" : "SwiftTarget",
"name" : "CBORTests",
"path" : "Tests/CBORTests",
"sources" : [
"DecodableTests.swift",
"DecodeMultipleTests.swift",
"EncodableTests.swift",
"Extensions/Array+chunked.swift",
"Extensions/Data+ExpressibleByArrayLiteral.swift",
"Extensions/Data+hexString.swift",
"Extensions/String+asHexData.swift",
"Mock.swift",
"RoundTripTests.swift",
"ScannerTests.swift"
],
"target_dependencies" : [
"CBOR"
],
"type" : "test"
},
{
"c99name" : "CBOR",
"module_type" : "SwiftTarget",
"name" : "CBOR",
"path" : "Sources/CBOR",
"product_dependencies" : [
"Collections"
],
"product_memberships" : [
"CBOR",
"Fuzzing"
],
"sources" : [
"Coding/CodingPath.swift",
"Coding/UnkeyedCodingKey.swift",
"CommonTags.swift",
"Constants.swift",
"Decoder/CBORDecoder.swift",
"Decoder/Containers/DataRegion.swift",
"Decoder/Containers/DecodingContextContainer.swift",
"Decoder/Containers/KeyedCBORDecodingContainer.swift",
"Decoder/Containers/SingleValueCBORDecodingContainer.swift",
"Decoder/Containers/UnkeyedCBORDecodingContainer.swift",
"Decoder/DecodingContext.swift",
"Decoder/DecodingOptions.swift",
"Decoder/Scanner/CBORScanner+DebugDescription.swift",
"Decoder/Scanner/CBORScanner+Results.swift",
"Decoder/Scanner/CBORScanner.swift",
"Decoder/Scanner/DataReader.swift",
"Encoder/CBOREncoder.swift",
"Encoder/Containers/KeyedCBOREncodingContainer.swift",
"Encoder/Containers/SingleValueCBOREncodingContainer.swift",
"Encoder/Containers/UnkeyedCBOREncodingContainer.swift",
"Encoder/EncodingContext.swift",
"Encoder/EncodingOptimizer.swift",
"Encoder/EncodingOptions.swift",
"Encoder/Optimizers/BoolOptimizer.swift",
"Encoder/Optimizers/ByteStringOptimizer.swift",
"Encoder/Optimizers/DateOptimizer.swift",
"Encoder/Optimizers/DoubleOptimizer.swift",
"Encoder/Optimizers/Float16Optimizer.swift",
"Encoder/Optimizers/FloatOptimizer.swift",
"Encoder/Optimizers/IntOptimizer.swift",
"Encoder/Optimizers/KeyedOptimizer.swift",
"Encoder/Optimizers/NilOptimizer.swift",
"Encoder/Optimizers/StringOptimizer.swift",
"Encoder/Optimizers/UUIDOptimizer.swift",
"Encoder/Optimizers/UnkeyedOptimizer.swift",
"Encoder/TemporaryEncodingStorage.swift",
"Extensions/FixedWidthIndeger/FixedWidthIndeger+write.swift",
"Extensions/Float/Float+Float16.swift",
"Extensions/UInt8/UInt8+byteCount.swift",
"Extensions/UInt8/UInt8+simpleLength.swift",
"Extensions/countTo+.swift",
"MajorType.swift"
],
"type" : "library"
}
],
"tools_version" : "6.0"
}
✅ Doc result (pending) reported
========================================
GenerateDocs
========================================
Generating docs at path: $PWD/.docs/thecoolwinter/cbor/main
Repository: thecoolwinter/CBOR
Swift version used: 6.1
Target: CBOR
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/swift-docc-render-artifact/.git/
From https://github.com/swiftlang/swift-docc-render-artifact
* branch 4633b45fc732d8c55568be09dd852f9dc1582c25 -> FETCH_HEAD
HEAD is now at 4633b45 Update the artifact
Cloned https://github.com/swiftlang/swift-docc-render-artifact
Extracting symbol information for 'CBOR'...
Finished extracting symbol information for 'CBOR'. (5.91s)
Building documentation for 'CBOR'...
warning: 'Decodable' doesn't exist at '/CBOR/CBORDecoder'
--> Sources/CBOR/Decoder/CBORDecoder.swift:14:15-14:24
12 | #endif
13 |
14 + /// Decodes ``Decodable`` objects from CBOR data.
15 | ///
16 | /// This type can be reused efficiently for multiple deserialization operations. Use the ``decode(_:from:)`` method
warning: 'DecodingError' doesn't exist at '/CBOR/CBORDecoder/decode(_:from:)'
--> Sources/CBOR/Decoder/CBORDecoder.swift:44:23-44:36
42 | /// - data: The CBOR data to decode from.
43 | /// - Returns: An instance of the decoded type.
44 + /// - Throws: A ``DecodingError`` with context and a debug description for a failed deserialization operation.
45 | public func decode<T: Decodable>(_ type: T.Type, from data: Data) throws -> T {
46 | do {
warning: 'DecodingError' doesn't exist at '/CBOR/CBORDecoder/decodeMultiple(_:from:)'
--> Sources/CBOR/Decoder/CBORDecoder.swift:81:23-81:36
79 | /// - data: The CBOR data to decode from.
80 | /// - Returns: An instance of the decoded type.
81 + /// - Throws: A ``DecodingError`` with context and a debug description for a failed deserialization operation.
82 | public func decodeMultiple<T: Decodable>(_ type: T.Type, from data: Data) throws -> [T] {
83 | do {
warning: 'Encodable' doesn't exist at '/CBOR/CBOREncoder'
--> Sources/CBOR/Encoder/CBOREncoder.swift:14:18-14:27
12 | #endif
13 |
14 + /// Serializes ``Encodable`` objects using the CBOR serialization format.
15 | ///
16 | /// To perform serialization, use the ``encode(_:)-6zhmp`` method to convert a Codable object to ``Data``. To
warning: 'Data' doesn't exist at '/CBOR/CBOREncoder'
--> Sources/CBOR/Encoder/CBOREncoder.swift:16:100-16:104
14 | /// Serializes ``Encodable`` objects using the CBOR serialization format.
15 | ///
16 + /// To perform serialization, use the ``encode(_:)-6zhmp`` method to convert a Codable object to ``Data``. To
17 | /// configure encoding behavior, either pass customization options in with
18 | /// ``init(forceStringKeys:dateEncodingStrategy:)`` or modify ``options``.
warning: Parameter 'useStringDates' not found in initializer declaration
--> Sources/CBOR/Encoder/EncodingOptions.swift:31:13-31:27
29 | /// - Parameters:
30 | /// - forceStringKeys: Force encoded maps to use string keys even when integer keys are available.
31 + /// - useStringDates: See ``dateEncodingStrategy`` and ``DateStrategy``.
| ╰─suggestion: Replace 'useStringDates' with 'forceStringKeys'
32 | public init(forceStringKeys: Bool, dateEncodingStrategy: DateStrategy) {
33 | self.forceStringKeys = forceStringKeys
warning: Parameter 'dateEncodingStrategy' is missing documentation
--> Sources/CBOR/Encoder/EncodingOptions.swift:31:79-31:79
29 | /// - Parameters:
30 | /// - forceStringKeys: Force encoded maps to use string keys even when integer keys are available.
31 + /// - useStringDates: See ``dateEncodingStrategy`` and ``DateStrategy``.
| ╰─suggestion: Document 'dateEncodingStrategy' parameter
32 | public init(forceStringKeys: Bool, dateEncodingStrategy: DateStrategy) {
33 | self.forceStringKeys = forceStringKeys
Finished building documentation for 'CBOR' (0.11s)
Generated documentation archive at:
/Users/admin/builder/spi-builder-workspace/.docs/thecoolwinter/cbor/main
Fetching https://github.com/swiftlang/swift-docc-plugin from cache
Updating https://github.com/apple/swift-collections.git
Updated https://github.com/apple/swift-collections.git (0.58s)
Fetched https://github.com/swiftlang/swift-docc-plugin from cache (0.63s)
Computing version for https://github.com/apple/swift-collections.git
Computed https://github.com/apple/swift-collections.git at 1.2.1 (1.15s)
Computing version for https://github.com/swiftlang/swift-docc-plugin
Computed https://github.com/swiftlang/swift-docc-plugin at 1.4.5 (2.19s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit from cache
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (0.84s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (1.48s)
Creating working copy for https://github.com/swiftlang/swift-docc-plugin
Working copy of https://github.com/swiftlang/swift-docc-plugin resolved at 1.4.5
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
Building for debugging...
[0/7] Write snippet-extract-tool-entitlement.plist
[1/8] Write sources
[4/8] Write swift-version-2F0A5646E1D333AE.txt
[6/53] Emitting module SymbolKit
[7/57] Compiling Snippets SnippetParser.swift
[8/57] Compiling SymbolKit Mixin+Equals.swift
[9/57] Compiling SymbolKit Mixin+Hash.swift
[10/57] Compiling SymbolKit Mixin.swift
[11/57] Compiling SymbolKit LineList.swift
[12/57] Compiling SymbolKit Position.swift
[13/57] Compiling SymbolKit GenericConstraint.swift
[14/57] Compiling SymbolKit GenericParameter.swift
[15/57] Compiling SymbolKit Generics.swift
[16/57] Compiling SymbolKit Namespace.swift
[17/57] Compiling SymbolKit Symbol.swift
[18/57] Compiling SymbolKit SymbolKind.swift
[19/57] Compiling SymbolKit SymbolGraph.swift
[20/57] Compiling SymbolKit GraphCollector.swift
[21/57] Compiling SymbolKit Identifier.swift
[22/57] Compiling SymbolKit KindIdentifier.swift
[23/57] Compiling SymbolKit Location.swift
[24/57] Compiling SymbolKit Mutability.swift
[25/57] Compiling SymbolKit SourceRange.swift
[26/57] Compiling SymbolKit Metadata.swift
[27/57] Compiling SymbolKit Module.swift
[28/57] Compiling SymbolKit OperatingSystem.swift
[29/57] Compiling SymbolKit Platform.swift
[30/57] Compiling SymbolKit DeclarationFragments.swift
[31/57] Compiling SymbolKit Fragment.swift
[32/57] Compiling SymbolKit FragmentKind.swift
[33/57] Compiling SymbolKit FunctionParameter.swift
[34/57] Compiling SymbolKit FunctionSignature.swift
[35/57] Emitting module Snippets
[36/57] Compiling Snippets Snippet.swift
[37/57] Compiling SymbolKit SemanticVersion.swift
[38/57] Compiling SymbolKit AccessControl.swift
[39/57] Compiling SymbolKit Availability.swift
[40/57] Compiling SymbolKit AvailabilityItem.swift
[41/57] Compiling SymbolKit Domain.swift
[42/57] Compiling SymbolKit Relationship.swift
[43/57] Compiling SymbolKit RelationshipKind.swift
[44/57] Compiling SymbolKit SourceOrigin.swift
[45/57] Compiling SymbolKit GenericConstraints.swift
[46/57] Compiling SymbolKit Swift.swift
[47/57] Compiling SymbolKit Names.swift
[48/57] Compiling SymbolKit SPI.swift
[49/57] Compiling SymbolKit Snippet.swift
[50/57] Compiling SymbolKit Extension.swift
[51/57] Compiling SymbolKit UnifiedSymbol+Encodable.swift
[52/57] Compiling SymbolKit UnifiedSymbol.swift
[53/57] Compiling SymbolKit UnifiedSymbolGraph+Encodable.swift
[54/57] Compiling SymbolKit UnifiedSymbolGraph.swift
[55/61] Compiling snippet_extract URL+Status.swift
[56/61] Compiling snippet_extract SymbolGraph+Snippet.swift
[57/61] Emitting module snippet_extract
[58/61] Compiling snippet_extract SnippetBuildCommand.swift
[58/61] Write Objects.LinkFileList
[59/61] Linking snippet-extract-tool
[60/61] Applying snippet-extract-tool
Build of product 'snippet-extract' complete! (4.32s)
Building for debugging...
[0/1] Write swift-version-2F0A5646E1D333AE.txt
[2/15] Compiling InternalCollectionsUtilities RandomAccessCollection+Offsets.swift
[3/15] Compiling InternalCollectionsUtilities _UniqueCollection.swift
[4/16] Compiling InternalCollectionsUtilities UnsafeBufferPointer+Extras.swift
[5/16] Compiling InternalCollectionsUtilities Debugging.swift
[6/16] Compiling InternalCollectionsUtilities Descriptions.swift
[7/16] Compiling InternalCollectionsUtilities UnsafeMutableBufferPointer+Extras.swift
[8/16] Compiling InternalCollectionsUtilities _UnsafeBitSet.swift
[9/16] Compiling InternalCollectionsUtilities _SortedCollection.swift
[10/16] Compiling InternalCollectionsUtilities FixedWidthInteger+roundUpToPowerOfTwo.swift
[11/16] Compiling InternalCollectionsUtilities Integer rank.swift
[12/16] Compiling InternalCollectionsUtilities _UnsafeBitSet+Index.swift
[13/16] Compiling InternalCollectionsUtilities _UnsafeBitSet+_Word.swift
[14/16] Emitting module InternalCollectionsUtilities
[15/16] Compiling InternalCollectionsUtilities UInt+first and last set bit.swift
[16/16] Compiling InternalCollectionsUtilities UInt+reversed.swift
[17/298] Compiling DequeModule _DequeBuffer.swift
[18/299] Compiling DequeModule _DequeSlot.swift
[19/299] Compiling DequeModule _DequeBufferHeader.swift
[20/299] Compiling HeapModule _HeapNode.swift
[21/299] Compiling HeapModule Heap.swift
[22/299] Compiling _RopeModule BigString+Debugging.swift
[23/299] Compiling _RopeModule BigString+Index.swift
[24/299] Compiling HeapModule Heap+Invariants.swift
[25/299] Compiling HeapModule Heap+ExpressibleByArrayLiteral.swift
[26/299] Compiling HeapModule Heap+UnsafeHandle.swift
[27/299] Compiling _RopeModule BigString+Iterators.swift
[28/299] Compiling _RopeModule BigString+Metrics.swift
[29/299] Compiling _RopeModule BigString+Ingester.swift
[30/299] Compiling _RopeModule BigString+Invariants.swift
[31/299] Compiling HeapModule Heap+Descriptions.swift
[32/299] Emitting module HeapModule
[33/299] Compiling _RopeModule BigString+BidirectionalCollection.swift
[34/299] Compiling _RopeModule BigString+Comparable.swift
[35/299] Compiling _RopeModule BigString+CustomDebugStringConvertible.swift
[36/299] Compiling _RopeModule BigString+CustomStringConvertible.swift
[37/299] Compiling _RopeModule BigString+Equatable.swift
[38/299] Compiling _RopeModule BigString+UnicodeScalarView.swift
[39/305] Compiling DequeModule _UnsafeWrappedBuffer.swift
[40/305] Compiling HashTreeCollections TreeSet+SetAlgebra basics.swift
[41/305] Compiling HashTreeCollections TreeSet+SetAlgebra formIntersection.swift
[42/305] Compiling HashTreeCollections TreeSet+SetAlgebra formSymmetricDifference.swift
[43/305] Compiling HashTreeCollections TreeSet+SetAlgebra formUnion.swift
[44/305] Compiling HashTreeCollections TreeSet+SetAlgebra intersection.swift
[45/305] Compiling HashTreeCollections TreeSet+SetAlgebra isDisjoint.swift
[46/305] Compiling HashTreeCollections TreeSet+SetAlgebra isEqualSet.swift
[47/305] Compiling HashTreeCollections TreeSet+SetAlgebra isStrictSubset.swift
[48/313] Compiling _RopeModule BigString+Summary.swift
[49/313] Compiling _RopeModule BigString.swift
[50/313] Compiling _RopeModule BigString+Chunk+Append and Insert.swift
[51/313] Compiling _RopeModule BigString+Chunk+Breaks.swift
[52/313] Compiling _RopeModule BigString+Initializers.swift
[53/313] Compiling _RopeModule RopeSummary.swift
[54/313] Compiling _RopeModule _RopeItem.swift
[55/313] Compiling _RopeModule _RopePath.swift
[56/313] Compiling _RopeModule _RopeVersion.swift
[57/313] Compiling _RopeModule Rope+Collection.swift
[58/313] Compiling _RopeModule Rope+Insert.swift
[59/313] Compiling _RopeModule Rope+Join.swift
[60/313] Compiling _RopeModule Rope+MutatingForEach.swift
[61/313] Compiling _RopeModule BigString+Chunk+RopeElement.swift
[62/313] Compiling _RopeModule BigString+Chunk+Splitting.swift
[63/313] Compiling _RopeModule BigString+Chunk.swift
[64/313] Compiling _RopeModule Rope+Index.swift
[65/313] Compiling _RopeModule Rope+Sequence.swift
[66/313] Compiling _RopeModule Rope+Append.swift
[67/313] Compiling _RopeModule Rope+Extract.swift
[68/313] Compiling _RopeModule Rope+Find.swift
[69/313] Compiling _RopeModule Rope+ForEachWhile.swift
[70/313] Emitting module BitCollections
[71/318] Compiling _RopeModule BigString+Builder.swift
[72/318] Compiling _RopeModule BigString+Contents.swift
[73/318] Compiling _RopeModule BigString+RemoveSubrange.swift
[74/318] Compiling _RopeModule BigString+ReplaceSubrange.swift
[75/318] Compiling _RopeModule BigString+Split.swift
[76/318] Compiling _RopeModule Range+BigString.swift
[77/318] Compiling _RopeModule BigString+UTF16View.swift
[78/318] Compiling _RopeModule BigString+UTF8View.swift
[79/318] Compiling _RopeModule BigString+ExpressibleByStringLiteral.swift
[80/318] Compiling _RopeModule BigString+Hashing.swift
[82/318] Compiling _RopeModule BigString+LosslessStringConvertible.swift
[83/318] Compiling _RopeModule BigString+RangeReplaceableCollection.swift
[84/318] Compiling _RopeModule BigString+Sequence.swift
[85/318] Compiling _RopeModule BigString+TextOutputStream.swift
[86/318] Compiling _RopeModule BigString+Append.swift
[87/318] Compiling _RopeModule BigString+Chunk+Description.swift
[88/318] Compiling _RopeModule BigString+Chunk+Indexing by Characters.swift
[89/318] Compiling _RopeModule BigString+Chunk+Indexing by UTF16.swift
[90/318] Compiling _RopeModule BigString+Insert.swift
[91/318] Compiling _RopeModule BigString+Managing Breaks.swift
[104/318] Compiling _RopeModule BigString+Chunk+Counts.swift
[147/318] Compiling HashTreeCollections TreeSet+SetAlgebra isStrictSuperset.swift
[148/318] Compiling HashTreeCollections TreeSet+SetAlgebra isSubset.swift
[149/318] Compiling HashTreeCollections TreeSet+SetAlgebra isSuperset.swift
[150/318] Compiling HashTreeCollections TreeSet+SetAlgebra subtract.swift
[151/318] Compiling HashTreeCollections TreeSet+SetAlgebra subtracting.swift
[152/318] Compiling HashTreeCollections TreeSet+SetAlgebra symmetricDifference.swift
[153/318] Compiling HashTreeCollections TreeSet+SetAlgebra union.swift
[154/318] Compiling HashTreeCollections TreeSet.swift
[167/318] Emitting module DequeModule
[184/320] Compiling BitCollections BitSet.swift
[185/320] Compiling BitCollections Range+Utilities.swift
[186/320] Compiling BitCollections Slice+Utilities.swift
[187/320] Compiling BitCollections UInt+Tricks.swift
[188/320] Compiling BitCollections _Word.swift
[189/325] Compiling _RopeModule Rope+_Node.swift
[190/325] Compiling _RopeModule Rope+_Storage.swift
[191/325] Compiling _RopeModule Rope+_UnmanagedLeaf.swift
[192/325] Compiling _RopeModule Rope+_UnsafeHandle.swift
[193/325] Compiling _RopeModule Rope.swift
[194/325] Compiling _RopeModule RopeElement.swift
[195/325] Compiling _RopeModule RopeMetric.swift
[236/325] Compiling OrderedCollections OrderedSet.swift
[245/325] Compiling OrderedCollections _UnsafeBitset.swift
[246/325] Compiling _RopeModule Rope+Invariants.swift
[285/325] Emitting module OrderedCollections
[309/325] Compiling _RopeModule Rope+Remove.swift
[310/325] Compiling _RopeModule Rope+RemoveSubrange.swift
[311/325] Compiling _RopeModule Rope+Split.swift
[312/325] Compiling _RopeModule Optional Utilities.swift
[313/325] Compiling _RopeModule String Utilities.swift
[314/325] Compiling _RopeModule String.Index+ABI.swift
[315/325] Compiling _RopeModule _CharacterRecognizer.swift
[324/325] Emitting module _RopeModule
[325/325] Emitting module HashTreeCollections
[326/327] Emitting module Collections
[327/327] Compiling Collections Collections.swift
[328/366] Compiling CBOR EncodingOptions.swift
[329/366] Compiling CBOR BoolOptimizer.swift
[330/366] Compiling CBOR ByteStringOptimizer.swift
[331/366] Compiling CBOR DateOptimizer.swift
[332/370] Compiling CBOR DecodingContext.swift
[333/370] Compiling CBOR DecodingOptions.swift
[334/370] Compiling CBOR CBORScanner+DebugDescription.swift
[335/370] Compiling CBOR CBORScanner+Results.swift
[336/370] Compiling CBOR DoubleOptimizer.swift
[337/370] Compiling CBOR Float16Optimizer.swift
[338/370] Compiling CBOR FloatOptimizer.swift
[339/370] Compiling CBOR IntOptimizer.swift
[340/370] Emitting module CBOR
[341/370] Compiling CBOR SingleValueCBOREncodingContainer.swift
[342/370] Compiling CBOR UnkeyedCBOREncodingContainer.swift
[343/370] Compiling CBOR EncodingContext.swift
[344/370] Compiling CBOR EncodingOptimizer.swift
[345/370] Compiling CBOR KeyedOptimizer.swift
[346/370] Compiling CBOR NilOptimizer.swift
[347/370] Compiling CBOR StringOptimizer.swift
[348/370] Compiling CBOR UUIDOptimizer.swift
[349/370] Compiling CBOR CBORScanner.swift
[350/370] Compiling CBOR DataReader.swift
[351/370] Compiling CBOR CBOREncoder.swift
[352/370] Compiling CBOR KeyedCBOREncodingContainer.swift
[353/370] Compiling CBOR CodingPath.swift
[354/370] Compiling CBOR UnkeyedCodingKey.swift
[355/370] Compiling CBOR CommonTags.swift
[356/370] Compiling CBOR Constants.swift
[357/370] Compiling CBOR CBORDecoder.swift
[358/370] Compiling CBOR UnkeyedOptimizer.swift
[359/370] Compiling CBOR TemporaryEncodingStorage.swift
[360/370] Compiling CBOR FixedWidthIndeger+write.swift
[361/370] Compiling CBOR Float+Float16.swift
[362/370] Compiling CBOR DataRegion.swift
[363/370] Compiling CBOR DecodingContextContainer.swift
[364/370] Compiling CBOR KeyedCBORDecodingContainer.swift
[365/370] Compiling CBOR SingleValueCBORDecodingContainer.swift
[366/370] Compiling CBOR UnkeyedCBORDecodingContainer.swift
[367/370] Compiling CBOR UInt8+byteCount.swift
[368/370] Compiling CBOR UInt8+simpleLength.swift
[369/370] Compiling CBOR countTo+.swift
[370/370] Compiling CBOR MajorType.swift
Build of target: 'CBOR' complete! (4.06s)
148
2 /Users/admin/builder/spi-builder-workspace/.docs/thecoolwinter/cbor/main
✅ Doc result (uploading) reported
========================================
SyncDocs
========================================
Doc archive source directory: $PWD/.docs/thecoolwinter/cbor/main
File count: 148
Doc size: 2.0MB
Preparing doc bundle ...
Uploading prod-thecoolwinter-cbor-main-c163ff63.zip to s3://spi-docs-inbox/prod-thecoolwinter-cbor-main-c163ff63.zip
Copying... [15%]
Copying... [31%]
Copying... [46%]
Copying... [62%]
Copying... [77%]
Copying... [93%]
Copying... [100%]
Done.