The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Successful build of CBOR, reference 1.0.1 (4734d1), with Swift 6.1 for Android on 11 Sep 2025 00:56:53 UTC.

Swift 6 data race errors: 0

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4606859-2":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/finestructure/spi-images:android-6.1-latest swift build --swift-sdk aarch64-unknown-linux-android24 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.67.1
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/thecoolwinter/CBOR.git
Reference: 1.0.1
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/thecoolwinter/CBOR
 * tag               1.0.1      -> FETCH_HEAD
HEAD is now at 4734d11 Merge branch 'main' of https://github.com/thecoolwinter/CBOR
Cloned https://github.com/thecoolwinter/CBOR.git
Revision (git rev-parse @):
4734d11d20232bd3e756654a0c7c473831c96e3d
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/thecoolwinter/CBOR.git at 1.0.1
========================================
Build
========================================
Selected platform:         android
Swift version:             6.1
Building package at path:  $PWD
https://github.com/thecoolwinter/CBOR.git
https://github.com/thecoolwinter/CBOR.git
WARNING: environment variable SUPPRESS_SWIFT_6_FLAGS is not set
{
  "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" : "/host/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 ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-2":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/finestructure/spi-images:android-6.1-latest swift build --swift-sdk aarch64-unknown-linux-android24 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats 2>&1
android-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:8106a39f56f5bb7aad9f0d9a94f1e5362f9a40b692f7bc17efe17b7b91dc65fc
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:android-6.1-latest
Fetching https://github.com/apple/swift-collections.git
[1/17453] Fetching swift-collections
Fetched https://github.com/apple/swift-collections.git from cache (1.72s)
Computing version for https://github.com/apple/swift-collections.git
Computed https://github.com/apple/swift-collections.git at 1.2.1 (2.47s)
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
Building for debugging...
[0/23] Write sources
[10/23] Write swift-version-24593BA9C3E375BF.txt
[12/37] Emitting module InternalCollectionsUtilities
[13/38] Compiling InternalCollectionsUtilities UInt+first and last set bit.swift
[14/38] Compiling InternalCollectionsUtilities UInt+reversed.swift
[15/38] Compiling InternalCollectionsUtilities FixedWidthInteger+roundUpToPowerOfTwo.swift
[16/38] Compiling InternalCollectionsUtilities Integer rank.swift
[17/38] Compiling InternalCollectionsUtilities UnsafeBufferPointer+Extras.swift
[18/38] Compiling InternalCollectionsUtilities _UnsafeBitSet+Index.swift
[19/38] Compiling InternalCollectionsUtilities _UnsafeBitSet+_Word.swift
[20/38] Compiling InternalCollectionsUtilities _UnsafeBitSet.swift
[21/38] Compiling InternalCollectionsUtilities _SortedCollection.swift
[22/38] Compiling InternalCollectionsUtilities Descriptions.swift
[23/38] Compiling InternalCollectionsUtilities RandomAccessCollection+Offsets.swift
[24/38] Compiling InternalCollectionsUtilities _UniqueCollection.swift
[25/38] Compiling InternalCollectionsUtilities Debugging.swift
[26/38] Compiling InternalCollectionsUtilities UnsafeMutableBufferPointer+Extras.swift
[27/39] Wrapping AST for InternalCollectionsUtilities for debugging
[29/312] Compiling HeapModule Heap+Invariants.swift
[30/313] Compiling HeapModule Heap+ExpressibleByArrayLiteral.swift
[31/313] Compiling HeapModule Heap+Descriptions.swift
[32/313] Compiling _RopeModule BigString+Managing Breaks.swift
[33/313] Compiling _RopeModule BigString+RemoveSubrange.swift
[34/315] Compiling HeapModule _HeapNode.swift
[35/315] Compiling HeapModule Heap.swift
[36/315] Compiling HeapModule Heap+UnsafeHandle.swift
[37/315] Compiling _RopeModule Rope+Debugging.swift
[38/315] Compiling _RopeModule Rope+Invariants.swift
[39/315] Compiling _RopeModule BigSubstring.swift
[40/315] Compiling _RopeModule Rope+Builder.swift
[41/315] Compiling _RopeModule BigSubstring+UTF8View.swift
[42/315] Compiling _RopeModule BigSubstring+UnicodeScalarView.swift
[43/315] Emitting module HeapModule
[44/316] Compiling _RopeModule BigString+Chunk+Indexing by UTF16.swift
[45/316] Compiling _RopeModule BigString+Chunk+RopeElement.swift
[46/316] Compiling _RopeModule BigString+Chunk+Splitting.swift
[47/316] Compiling _RopeModule BigString+Chunk.swift
[48/316] Compiling _RopeModule BigString+BidirectionalCollection.swift
[49/316] Compiling _RopeModule BigString+Builder.swift
[50/316] Compiling _RopeModule BigString+Contents.swift
[52/323] Compiling _RopeModule Rope+ForEachWhile.swift
[53/323] Compiling _RopeModule Rope+Insert.swift
[54/323] Compiling HashTreeCollections TreeSet+Sequence.swift
[55/323] Compiling HashTreeCollections TreeSet+SetAlgebra Initializers.swift
[56/323] Compiling HashTreeCollections TreeSet+SetAlgebra basics.swift
[57/323] Compiling HashTreeCollections TreeSet+SetAlgebra formIntersection.swift
[58/323] Compiling HashTreeCollections TreeSet+SetAlgebra formSymmetricDifference.swift
[59/323] Compiling HashTreeCollections TreeSet+SetAlgebra formUnion.swift
[60/323] Compiling HashTreeCollections TreeSet+SetAlgebra intersection.swift
[61/323] Compiling HashTreeCollections TreeSet+SetAlgebra isDisjoint.swift
[62/333] Compiling _RopeModule BigString+Sequence.swift
[63/333] Compiling _RopeModule BigString+TextOutputStream.swift
[64/333] Compiling _RopeModule Rope+_Storage.swift
[65/333] Compiling _RopeModule Rope+_UnmanagedLeaf.swift
[66/333] Compiling _RopeModule Rope+_UnsafeHandle.swift
[67/333] Compiling BitCollections BitSet.Index.swift
[68/333] Compiling BitCollections BitSet._UnsafeHandle.swift
[69/340] Compiling _RopeModule BigString+Index.swift
[70/340] Compiling _RopeModule BigString+Ingester.swift
[71/340] Compiling _RopeModule BigString+Invariants.swift
[72/340] Compiling _RopeModule BigString+Iterators.swift
[73/340] Compiling _RopeModule BigString+Metrics.swift
[74/340] Compiling _RopeModule BigString+Summary.swift
[75/340] Compiling _RopeModule BigString.swift
[75/340] Wrapping AST for HeapModule for debugging
[77/340] Compiling DequeModule _DequeSlot.swift
[78/340] Compiling DequeModule _UnsafeWrappedBuffer.swift
[86/340] Compiling _RopeModule BigString+Debugging.swift
[87/340] Compiling _RopeModule Rope+_Node.swift
[88/340] Compiling _RopeModule BigString+Append.swift
[89/340] Compiling _RopeModule BigString+Initializers.swift
[90/340] Compiling _RopeModule BigString+Insert.swift
[98/340] Compiling OrderedCollections OrderedSet+SubSequence.swift
[99/340] Compiling OrderedCollections OrderedSet+Testing.swift
[100/340] Compiling OrderedCollections OrderedSet+UnorderedView.swift
[101/340] Compiling OrderedCollections OrderedSet+UnstableInternals.swift
[102/340] Compiling OrderedCollections OrderedSet.swift
[103/340] Compiling OrderedCollections _UnsafeBitset.swift
[104/340] Compiling _RopeModule Rope+Sequence.swift
[105/340] Compiling _RopeModule Rope+Append.swift
[106/340] Compiling _RopeModule Rope+Extract.swift
[107/340] Compiling _RopeModule Rope+Find.swift
[108/340] Compiling _RopeModule BigString+UnicodeScalarView.swift
[109/340] Compiling _RopeModule BigSubstring+UTF16View.swift
[116/340] Compiling _RopeModule BigString+Comparable.swift
[117/340] Compiling _RopeModule BigString+CustomDebugStringConvertible.swift
[118/340] Compiling _RopeModule BigString+CustomStringConvertible.swift
[119/340] Compiling _RopeModule BigString+Equatable.swift
[120/340] Compiling _RopeModule BigString+ExpressibleByStringLiteral.swift
[121/340] Compiling _RopeModule BigString+Hashing.swift
[122/340] Compiling _RopeModule BigString+LosslessStringConvertible.swift
[123/340] Compiling _RopeModule BigString+RangeReplaceableCollection.swift
[134/340] Compiling OrderedCollections OrderedSet+Sendable.swift
[135/340] Compiling _RopeModule Range+BigString.swift
[136/340] Compiling _RopeModule BigString+UTF16View.swift
[137/340] Compiling _RopeModule BigString+UTF8View.swift
[138/340] Compiling _RopeModule BigString+Chunk+Append and Insert.swift
[139/340] Compiling _RopeModule BigString+Chunk+Breaks.swift
[140/340] Compiling _RopeModule BigString+Chunk+Counts.swift
[141/340] Compiling _RopeModule BigString+Chunk+Description.swift
[142/340] Compiling _RopeModule BigString+Chunk+Indexing by Characters.swift
[159/340] Emitting module DequeModule
[160/341] Emitting module BitCollections
[161/341] Compiling HashTreeCollections TreeSet+SetAlgebra isEqualSet.swift
[162/341] Compiling HashTreeCollections TreeSet+SetAlgebra isStrictSubset.swift
[163/341] Compiling HashTreeCollections TreeSet+SetAlgebra isStrictSuperset.swift
[164/341] Compiling HashTreeCollections TreeSet+SetAlgebra isSubset.swift
[165/341] Compiling HashTreeCollections TreeSet+SetAlgebra isSuperset.swift
[166/341] Compiling HashTreeCollections TreeSet+SetAlgebra subtract.swift
[167/341] Compiling HashTreeCollections TreeSet+SetAlgebra subtracting.swift
[168/341] Compiling HashTreeCollections TreeSet+SetAlgebra symmetricDifference.swift
[169/341] Compiling HashTreeCollections TreeSet+SetAlgebra union.swift
[170/341] Compiling HashTreeCollections TreeSet.swift
[180/350] Wrapping AST for DequeModule for debugging
[241/351] Wrapping AST for BitCollections for debugging
[250/351] Emitting module OrderedCollections
[261/352] Wrapping AST for OrderedCollections for debugging
[296/352] Emitting module _RopeModule
[297/352] Compiling _RopeModule Rope+Join.swift
[298/352] Compiling _RopeModule Rope+MutatingForEach.swift
[299/352] Compiling _RopeModule Rope+Remove.swift
[300/352] Compiling _RopeModule Rope+RemoveSubrange.swift
[301/352] Compiling _RopeModule Rope+Split.swift
[302/352] Compiling _RopeModule Optional Utilities.swift
[303/352] Compiling _RopeModule String Utilities.swift
[304/352] Compiling _RopeModule String.Index+ABI.swift
[305/352] Compiling _RopeModule _CharacterRecognizer.swift
[306/352] Emitting module HashTreeCollections
[307/353] Wrapping AST for HashTreeCollections for debugging
[348/354] Wrapping AST for _RopeModule for debugging
[350/356] Emitting module Collections
[351/356] Compiling Collections Collections.swift
[352/357] Wrapping AST for Collections for debugging
[354/395] Emitting module CBOR
[355/400] Compiling CBOR Float+Float16.swift
[356/400] Compiling CBOR UInt8+byteCount.swift
[357/400] Compiling CBOR UInt8+simpleLength.swift
[358/400] Compiling CBOR countTo+.swift
[359/400] Compiling CBOR MajorType.swift
[360/400] Compiling CBOR EncodingOptions.swift
[361/400] Compiling CBOR BoolOptimizer.swift
[362/400] Compiling CBOR ByteStringOptimizer.swift
[363/400] Compiling CBOR DateOptimizer.swift
[364/400] Compiling CBOR DoubleOptimizer.swift
[365/400] Compiling CBOR Float16Optimizer.swift
[366/400] Compiling CBOR FloatOptimizer.swift
[367/400] Compiling CBOR IntOptimizer.swift
[368/400] Compiling CBOR KeyedOptimizer.swift
[369/400] Compiling CBOR NilOptimizer.swift
[370/400] Compiling CBOR StringOptimizer.swift
[371/400] Compiling CBOR UUIDOptimizer.swift
[372/400] Compiling CBOR UnkeyedOptimizer.swift
[373/400] Compiling CBOR TemporaryEncodingStorage.swift
[374/400] Compiling CBOR FixedWidthIndeger+write.swift
[375/400] Compiling CBOR DecodingContextContainer.swift
[376/400] Compiling CBOR KeyedCBORDecodingContainer.swift
[377/400] Compiling CBOR SingleValueCBORDecodingContainer.swift
[378/400] Compiling CBOR UnkeyedCBORDecodingContainer.swift
[379/400] Compiling CBOR DecodingContext.swift
[380/400] Compiling CBOR DecodingOptions.swift
[381/400] Compiling CBOR KeyedCBOREncodingContainer.swift
[382/400] Compiling CBOR SingleValueCBOREncodingContainer.swift
[383/400] Compiling CBOR UnkeyedCBOREncodingContainer.swift
[384/400] Compiling CBOR EncodingContext.swift
[385/400] Compiling CBOR EncodingOptimizer.swift
[386/400] Compiling CBOR CodingPath.swift
[387/400] Compiling CBOR UnkeyedCodingKey.swift
[388/400] Compiling CBOR CommonTags.swift
[389/400] Compiling CBOR Constants.swift
[390/400] Compiling CBOR CBORDecoder.swift
[391/400] Compiling CBOR DataRegion.swift
[392/400] Compiling CBOR CBORScanner+DebugDescription.swift
[393/400] Compiling CBOR CBORScanner+Results.swift
[394/400] Compiling CBOR CBORScanner.swift
[395/400] Compiling CBOR DataReader.swift
[396/400] Compiling CBOR CBOREncoder.swift
[397/401] Wrapping AST for CBOR for debugging
[399/404] Compiling Fuzzing main.swift
[400/404] Compiling Fuzzing AnyDecodable.swift
[401/404] Emitting module Fuzzing
[402/405] Wrapping AST for Fuzzing for debugging
[403/405] Write Objects.LinkFileList
[404/405] Linking Fuzzing
Build complete! (74.09s)
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" : "/host/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"
}
android-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:8106a39f56f5bb7aad9f0d9a94f1e5362f9a40b692f7bc17efe17b7b91dc65fc
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:android-6.1-latest
Done.