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 main (a764c5), with Swift 6.1 for Wasm on 11 Sep 2025 00:59:29 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:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi -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: main
Initialized empty Git repository in /host/spi-builder-workspace/.git/
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: 	git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: 	git branch -m <name>
From https://github.com/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
========================================
Build
========================================
Selected platform:         wasm
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:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats 2>&1
wasm-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:eb0758f51dbd6991fb9e51dedbfbcbec142ffc0d3b9b8ad91fa19d35e5136f0a
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:wasm-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 (3.06s)
Computing version for https://github.com/apple/swift-collections.git
Computed https://github.com/apple/swift-collections.git at 1.2.1 (6.12s)
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] Compiling InternalCollectionsUtilities UnsafeBufferPointer+Extras.swift
[13/38] Compiling InternalCollectionsUtilities _UnsafeBitSet.swift
[14/38] Compiling InternalCollectionsUtilities _SortedCollection.swift
[15/38] Compiling InternalCollectionsUtilities _UniqueCollection.swift
[16/38] Compiling InternalCollectionsUtilities Debugging.swift
[17/38] Compiling InternalCollectionsUtilities Descriptions.swift
[18/38] Compiling InternalCollectionsUtilities RandomAccessCollection+Offsets.swift
[19/38] Compiling InternalCollectionsUtilities _UnsafeBitSet+Index.swift
[20/38] Compiling InternalCollectionsUtilities _UnsafeBitSet+_Word.swift
[21/38] Compiling InternalCollectionsUtilities FixedWidthInteger+roundUpToPowerOfTwo.swift
[22/38] Compiling InternalCollectionsUtilities Integer rank.swift
[23/38] Emitting module InternalCollectionsUtilities
[24/38] Compiling InternalCollectionsUtilities UInt+first and last set bit.swift
[25/38] Compiling InternalCollectionsUtilities UInt+reversed.swift
[26/38] Compiling InternalCollectionsUtilities UnsafeMutableBufferPointer+Extras.swift
[27/39] Wrapping AST for InternalCollectionsUtilities for debugging
[29/258] Compiling HeapModule Heap+ExpressibleByArrayLiteral.swift
[30/313] Compiling OrderedCollections _HashTable+Constants.swift
[31/313] Compiling OrderedCollections _HashTable+CustomStringConvertible.swift
[32/315] Compiling HeapModule Heap+Descriptions.swift
[33/315] Compiling OrderedCollections OrderedDictionary+Deprecations.swift
[34/315] Compiling OrderedCollections OrderedDictionary+Descriptions.swift
[35/315] Compiling HeapModule _HeapNode.swift
[36/315] Compiling HeapModule Heap.swift
[37/315] Compiling OrderedCollections _HashTable+Testing.swift
[38/315] Compiling OrderedCollections _HashTable+UnsafeHandle.swift
[39/315] Compiling HeapModule Heap+Invariants.swift
[40/315] Compiling HeapModule Heap+UnsafeHandle.swift
[41/315] Compiling OrderedCollections _HashTable.swift
[42/315] Compiling OrderedCollections _Hashtable+Header.swift
[43/315] Compiling _RopeModule Rope+ForEachWhile.swift
[44/315] Compiling _RopeModule Rope+Insert.swift
[45/315] Compiling HashTreeCollections TreeSet+Sequence.swift
[46/315] Compiling HashTreeCollections TreeSet+SetAlgebra Initializers.swift
[47/315] Compiling HashTreeCollections TreeSet+SetAlgebra basics.swift
[48/315] Compiling HashTreeCollections TreeSet+SetAlgebra formIntersection.swift
[49/315] Compiling HashTreeCollections TreeSet+SetAlgebra formSymmetricDifference.swift
[50/315] Compiling HashTreeCollections TreeSet+SetAlgebra formUnion.swift
[51/315] Compiling HashTreeCollections TreeSet+SetAlgebra intersection.swift
[52/315] Compiling HashTreeCollections TreeSet+SetAlgebra isDisjoint.swift
[53/325] Emitting module HeapModule
[54/326] Compiling DequeModule _DequeSlot.swift
[55/326] Compiling DequeModule _UnsafeWrappedBuffer.swift
[57/326] Compiling OrderedCollections OrderedSet+Partial SetAlgebra intersection.swift
[58/326] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isDisjoint.swift
[59/326] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isEqualSet.swift
[60/326] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isStrictSubset.swift
[61/326] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isStrictSuperset.swift
[62/326] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isSubset.swift
[63/326] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isSuperset.swift
[64/326] Compiling OrderedCollections OrderedSet+Partial SetAlgebra subtract.swift
[65/326] Compiling OrderedCollections OrderedSet+Partial SetAlgebra subtracting.swift
[66/326] Compiling OrderedCollections OrderedSet+Partial SetAlgebra symmetricDifference.swift
[67/326] Compiling OrderedCollections OrderedSet+Partial SetAlgebra union.swift
[68/326] Compiling OrderedCollections OrderedSet+Partial SetAlgebra+Basics.swift
[69/326] Compiling OrderedCollections OrderedSet+RandomAccessCollection.swift
[70/326] Compiling OrderedCollections OrderedSet+ReserveCapacity.swift
[71/333] Compiling OrderedCollections OrderedDictionary+Codable.swift
[72/333] Compiling OrderedCollections OrderedDictionary+CustomReflectable.swift
[75/333] Compiling OrderedCollections OrderedDictionary+Elements.SubSequence.swift
[76/333] Compiling OrderedCollections OrderedDictionary+Elements.swift
[83/340] Compiling OrderedCollections OrderedDictionary.swift
[84/340] Compiling OrderedCollections OrderedSet+Codable.swift
[85/340] Compiling OrderedCollections OrderedSet+CustomReflectable.swift
[86/340] Compiling OrderedCollections OrderedSet+Descriptions.swift
[87/340] Compiling OrderedCollections OrderedSet+Diffing.swift
[88/340] Compiling OrderedCollections OrderedSet+Equatable.swift
[89/340] Compiling OrderedCollections OrderedSet+ExpressibleByArrayLiteral.swift
[90/340] Compiling OrderedCollections OrderedSet+Hashable.swift
[91/340] Compiling OrderedCollections OrderedSet+Initializers.swift
[92/340] Compiling OrderedCollections OrderedSet+Insertions.swift
[93/340] Compiling OrderedCollections OrderedSet+Invariants.swift
[94/340] Compiling OrderedCollections OrderedSet+Partial MutableCollection.swift
[95/340] Compiling OrderedCollections OrderedSet+Partial RangeReplaceableCollection.swift
[96/340] Compiling OrderedCollections OrderedSet+Partial SetAlgebra formIntersection.swift
[96/340] Wrapping AST for HeapModule for debugging
[103/340] Compiling OrderedCollections OrderedSet+Partial SetAlgebra formSymmetricDifference.swift
[104/340] Compiling OrderedCollections OrderedSet+Partial SetAlgebra formUnion.swift
[109/340] Emitting module BitCollections
[110/340] Compiling BitCollections Range+Utilities.swift
[111/340] Compiling BitCollections Slice+Utilities.swift
[112/340] Compiling BitCollections UInt+Tricks.swift
[113/340] Compiling BitCollections _Word.swift
[114/340] Compiling OrderedCollections OrderedSet.swift
[115/340] Compiling OrderedCollections _UnsafeBitset.swift
[116/340] Compiling _RopeModule Rope+Sequence.swift
[117/340] Compiling _RopeModule Rope+Append.swift
[118/340] Compiling _RopeModule Rope+Extract.swift
[119/340] Compiling _RopeModule Rope+Find.swift
[150/340] Compiling OrderedCollections _HashTable+Bucket.swift
[151/340] Compiling OrderedCollections _HashTable+BucketIterator.swift
[152/340] Emitting module DequeModule
[154/341] Compiling OrderedCollections OrderedDictionary+Hashable.swift
[155/341] Compiling OrderedCollections OrderedDictionary+Initializers.swift
[156/341] Compiling OrderedCollections OrderedDictionary+Invariants.swift
[157/341] Compiling OrderedCollections OrderedDictionary+Partial MutableCollection.swift
[158/341] Compiling OrderedCollections OrderedDictionary+Partial RangeReplaceableCollection.swift
[159/341] Compiling OrderedCollections OrderedDictionary+Sendable.swift
[160/341] Compiling OrderedCollections OrderedDictionary+Sequence.swift
[161/341] Compiling OrderedCollections OrderedDictionary+Values.swift
[170/341] Compiling HashTreeCollections TreeSet+SetAlgebra isEqualSet.swift
[171/341] Compiling HashTreeCollections TreeSet+SetAlgebra isStrictSubset.swift
[172/341] Compiling HashTreeCollections TreeSet+SetAlgebra isStrictSuperset.swift
[173/341] Compiling HashTreeCollections TreeSet+SetAlgebra isSubset.swift
[174/341] Compiling HashTreeCollections TreeSet+SetAlgebra isSuperset.swift
[175/341] Compiling HashTreeCollections TreeSet+SetAlgebra subtract.swift
[176/341] Compiling HashTreeCollections TreeSet+SetAlgebra subtracting.swift
[177/341] Compiling HashTreeCollections TreeSet+SetAlgebra symmetricDifference.swift
[178/341] Compiling HashTreeCollections TreeSet+SetAlgebra union.swift
[179/341] Compiling HashTreeCollections TreeSet.swift
[197/350] Wrapping AST for DequeModule for debugging
[207/350] Compiling BitCollections BitSet.Index.swift
[208/350] Compiling BitCollections BitSet._UnsafeHandle.swift
[209/350] Compiling BitCollections BitSet.swift
[289/351] Emitting module OrderedCollections
[289/351] Wrapping AST for BitCollections for debugging
[292/352] Emitting module _RopeModule
[325/352] Wrapping AST for OrderedCollections for debugging
[327/352] Compiling _RopeModule Rope+Join.swift
[328/352] Compiling _RopeModule Rope+MutatingForEach.swift
[329/352] Compiling _RopeModule Rope+Remove.swift
[330/352] Compiling _RopeModule Rope+RemoveSubrange.swift
[331/352] Compiling _RopeModule Rope+Split.swift
[332/352] Compiling _RopeModule Optional Utilities.swift
[333/352] Compiling _RopeModule String Utilities.swift
[334/352] Compiling _RopeModule String.Index+ABI.swift
[335/352] Compiling _RopeModule _CharacterRecognizer.swift
[336/352] Emitting module HashTreeCollections
[337/353] Wrapping AST for HashTreeCollections for debugging
[348/354] Wrapping AST for _RopeModule for debugging
[350/356] Compiling Collections Collections.swift
[351/356] Emitting module Collections
[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 StringOptimizer.swift
[361/400] Compiling CBOR UUIDOptimizer.swift
[362/400] Compiling CBOR UnkeyedOptimizer.swift
[363/400] Compiling CBOR TemporaryEncodingStorage.swift
[364/400] Compiling CBOR FixedWidthIndeger+write.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 EncodingOptions.swift
[371/400] Compiling CBOR BoolOptimizer.swift
[372/400] Compiling CBOR ByteStringOptimizer.swift
[373/400] Compiling CBOR DateOptimizer.swift
[374/400] Compiling CBOR DoubleOptimizer.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 CodingPath.swift
[382/400] Compiling CBOR UnkeyedCodingKey.swift
[383/400] Compiling CBOR CommonTags.swift
[384/400] Compiling CBOR Constants.swift
[385/400] Compiling CBOR CBORDecoder.swift
[386/400] Compiling CBOR DataRegion.swift
[387/400] Compiling CBOR CBORScanner+DebugDescription.swift
[388/400] Compiling CBOR CBORScanner+Results.swift
[389/400] Compiling CBOR CBORScanner.swift
[390/400] Compiling CBOR DataReader.swift
[391/400] Compiling CBOR CBOREncoder.swift
[392/400] Compiling CBOR KeyedCBOREncodingContainer.swift
[393/400] Compiling CBOR SingleValueCBOREncodingContainer.swift
[394/400] Compiling CBOR UnkeyedCBOREncodingContainer.swift
[395/400] Compiling CBOR EncodingContext.swift
[396/400] Compiling CBOR EncodingOptimizer.swift
[397/401] Wrapping AST for CBOR for debugging
[399/404] Compiling Fuzzing main.swift
[400/404] Emitting module Fuzzing
[401/404] Compiling Fuzzing AnyDecodable.swift
[402/405] Wrapping AST for Fuzzing for debugging
[403/405] Write Objects.LinkFileList
wasm-ld: warning: /root/.swiftpm/swift-sdks/swift-wasm-6.1-RELEASE-wasm32-unknown-wasi.artifactbundle/6.1-RELEASE-wasm32-unknown-wasi/wasm32-unknown-wasi/swift.xctoolchain/usr/lib/swift_static/wasi/lib_FoundationCollections.a: archive member '_FoundationCollections.autolink' is neither Wasm object file nor LLVM bitcode
wasm-ld: warning: /root/.swiftpm/swift-sdks/swift-wasm-6.1-RELEASE-wasm32-unknown-wasi.artifactbundle/6.1-RELEASE-wasm32-unknown-wasi/wasm32-unknown-wasi/swift.xctoolchain/usr/lib/swift_static/wasi/lib_FoundationCollections.a: archive member '_FoundationCollections.autolink' is neither Wasm object file nor LLVM bitcode
wasm-ld: warning: /root/.swiftpm/swift-sdks/swift-wasm-6.1-RELEASE-wasm32-unknown-wasi.artifactbundle/6.1-RELEASE-wasm32-unknown-wasi/wasm32-unknown-wasi/swift.xctoolchain/usr/lib/swift_static/wasi/lib_FoundationCollections.a: archive member '_FoundationCollections.autolink' is neither Wasm object file nor LLVM bitcode
wasm-ld: warning: /root/.swiftpm/swift-sdks/swift-wasm-6.1-RELEASE-wasm32-unknown-wasi.artifactbundle/6.1-RELEASE-wasm32-unknown-wasi/wasm32-unknown-wasi/swift.xctoolchain/usr/lib/swift_static/wasi/lib_FoundationCollections.a: archive member '_FoundationCollections.autolink' is neither Wasm object file nor LLVM bitcode
wasm-ld: warning: /root/.swiftpm/swift-sdks/swift-wasm-6.1-RELEASE-wasm32-unknown-wasi.artifactbundle/6.1-RELEASE-wasm32-unknown-wasi/wasm32-unknown-wasi/swift.xctoolchain/usr/lib/swift_static/wasi/lib_FoundationCollections.a: archive member '_FoundationCollections.autolink' is neither Wasm object file nor LLVM bitcode
wasm-ld: warning: /root/.swiftpm/swift-sdks/swift-wasm-6.1-RELEASE-wasm32-unknown-wasi.artifactbundle/6.1-RELEASE-wasm32-unknown-wasi/wasm32-unknown-wasi/swift.xctoolchain/usr/lib/swift_static/wasi/lib_FoundationCollections.a: archive member '_FoundationCollections.autolink' is neither Wasm object file nor LLVM bitcode
wasm-ld: warning: /root/.swiftpm/swift-sdks/swift-wasm-6.1-RELEASE-wasm32-unknown-wasi.artifactbundle/6.1-RELEASE-wasm32-unknown-wasi/wasm32-unknown-wasi/swift.xctoolchain/usr/lib/swift_static/wasi/lib_FoundationCollections.a: archive member '_FoundationCollections.autolink' is neither Wasm object file nor LLVM bitcode
wasm-ld: warning: /root/.swiftpm/swift-sdks/swift-wasm-6.1-RELEASE-wasm32-unknown-wasi.artifactbundle/6.1-RELEASE-wasm32-unknown-wasi/wasm32-unknown-wasi/swift.xctoolchain/usr/lib/swift_static/wasi/lib_FoundationCollections.a: archive member '_FoundationCollections.autolink' is neither Wasm object file nor LLVM bitcode
wasm-ld: warning: /root/.swiftpm/swift-sdks/swift-wasm-6.1-RELEASE-wasm32-unknown-wasi.artifactbundle/6.1-RELEASE-wasm32-unknown-wasi/wasm32-unknown-wasi/swift.xctoolchain/usr/lib/swift_static/wasi/lib_FoundationCollections.a: archive member '_FoundationCollections.autolink' is neither Wasm object file nor LLVM bitcode
wasm-ld: warning: /root/.swiftpm/swift-sdks/swift-wasm-6.1-RELEASE-wasm32-unknown-wasi.artifactbundle/6.1-RELEASE-wasm32-unknown-wasi/wasm32-unknown-wasi/swift.xctoolchain/usr/lib/swift_static/wasi/lib_FoundationCollections.a: archive member '_FoundationCollections.autolink' is neither Wasm object file nor LLVM bitcode
wasm-ld: warning: /root/.swiftpm/swift-sdks/swift-wasm-6.1-RELEASE-wasm32-unknown-wasi.artifactbundle/6.1-RELEASE-wasm32-unknown-wasi/wasm32-unknown-wasi/swift.xctoolchain/usr/lib/swift_static/wasi/lib_FoundationCollections.a: archive member '_FoundationCollections.autolink' is neither Wasm object file nor LLVM bitcode
wasm-ld: warning: /root/.swiftpm/swift-sdks/swift-wasm-6.1-RELEASE-wasm32-unknown-wasi.artifactbundle/6.1-RELEASE-wasm32-unknown-wasi/wasm32-unknown-wasi/swift.xctoolchain/usr/lib/swift_static/wasi/lib_FoundationCollections.a: archive member '_FoundationCollections.autolink' is neither Wasm object file nor LLVM bitcode
wasm-ld: warning: /root/.swiftpm/swift-sdks/swift-wasm-6.1-RELEASE-wasm32-unknown-wasi.artifactbundle/6.1-RELEASE-wasm32-unknown-wasi/wasm32-unknown-wasi/swift.xctoolchain/usr/lib/swift_static/wasi/lib_FoundationCollections.a: archive member '_FoundationCollections.autolink' is neither Wasm object file nor LLVM bitcode
wasm-ld: warning: /root/.swiftpm/swift-sdks/swift-wasm-6.1-RELEASE-wasm32-unknown-wasi.artifactbundle/6.1-RELEASE-wasm32-unknown-wasi/wasm32-unknown-wasi/swift.xctoolchain/usr/lib/swift_static/wasi/lib_FoundationCollections.a: archive member '_FoundationCollections.autolink' is neither Wasm object file nor LLVM bitcode
wasm-ld: warning: /root/.swiftpm/swift-sdks/swift-wasm-6.1-RELEASE-wasm32-unknown-wasi.artifactbundle/6.1-RELEASE-wasm32-unknown-wasi/wasm32-unknown-wasi/swift.xctoolchain/usr/lib/swift_static/wasi/lib_FoundationCollections.a: archive member '_FoundationCollections.autolink' is neither Wasm object file nor LLVM bitcode
wasm-ld: warning: /root/.swiftpm/swift-sdks/swift-wasm-6.1-RELEASE-wasm32-unknown-wasi.artifactbundle/6.1-RELEASE-wasm32-unknown-wasi/wasm32-unknown-wasi/swift.xctoolchain/usr/lib/swift_static/wasi/lib_FoundationCollections.a: archive member '_FoundationCollections.autolink' is neither Wasm object file nor LLVM bitcode
wasm-ld: warning: /root/.swiftpm/swift-sdks/swift-wasm-6.1-RELEASE-wasm32-unknown-wasi.artifactbundle/6.1-RELEASE-wasm32-unknown-wasi/wasm32-unknown-wasi/swift.xctoolchain/usr/lib/swift_static/wasi/lib_FoundationCollections.a: archive member '_FoundationCollections.autolink' is neither Wasm object file nor LLVM bitcode
wasm-ld: warning: /root/.swiftpm/swift-sdks/swift-wasm-6.1-RELEASE-wasm32-unknown-wasi.artifactbundle/6.1-RELEASE-wasm32-unknown-wasi/wasm32-unknown-wasi/swift.xctoolchain/usr/lib/swift_static/wasi/lib_FoundationCollections.a: archive member '_FoundationCollections.autolink' is neither Wasm object file nor LLVM bitcode
wasm-ld: warning: /root/.swiftpm/swift-sdks/swift-wasm-6.1-RELEASE-wasm32-unknown-wasi.artifactbundle/6.1-RELEASE-wasm32-unknown-wasi/wasm32-unknown-wasi/swift.xctoolchain/usr/lib/swift_static/wasi/lib_FoundationCollections.a: archive member '_FoundationCollections.autolink' is neither Wasm object file nor LLVM bitcode
wasm-ld: warning: /root/.swiftpm/swift-sdks/swift-wasm-6.1-RELEASE-wasm32-unknown-wasi.artifactbundle/6.1-RELEASE-wasm32-unknown-wasi/wasm32-unknown-wasi/swift.xctoolchain/usr/lib/swift_static/wasi/lib_FoundationCollections.a: archive member '_FoundationCollections.autolink' is neither Wasm object file nor LLVM bitcode
wasm-ld: warning: /root/.swiftpm/swift-sdks/swift-wasm-6.1-RELEASE-wasm32-unknown-wasi.artifactbundle/6.1-RELEASE-wasm32-unknown-wasi/wasm32-unknown-wasi/swift.xctoolchain/usr/lib/swift_static/wasi/lib_FoundationCollections.a: archive member '_FoundationCollections.autolink' is neither Wasm object file nor LLVM bitcode
wasm-ld: warning: /root/.swiftpm/swift-sdks/swift-wasm-6.1-RELEASE-wasm32-unknown-wasi.artifactbundle/6.1-RELEASE-wasm32-unknown-wasi/wasm32-unknown-wasi/swift.xctoolchain/usr/lib/swift_static/wasi/lib_FoundationCollections.a: archive member '_FoundationCollections.autolink' is neither Wasm object file nor LLVM bitcode
wasm-ld: warning: /root/.swiftpm/swift-sdks/swift-wasm-6.1-RELEASE-wasm32-unknown-wasi.artifactbundle/6.1-RELEASE-wasm32-unknown-wasi/wasm32-unknown-wasi/swift.xctoolchain/usr/lib/swift_static/wasi/lib_FoundationCollections.a: archive member '_FoundationCollections.autolink' is neither Wasm object file nor LLVM bitcode
wasm-ld: warning: /root/.swiftpm/swift-sdks/swift-wasm-6.1-RELEASE-wasm32-unknown-wasi.artifactbundle/6.1-RELEASE-wasm32-unknown-wasi/wasm32-unknown-wasi/swift.xctoolchain/usr/lib/swift_static/wasi/lib_FoundationCollections.a: archive member '_FoundationCollections.autolink' is neither Wasm object file nor LLVM bitcode
wasm-ld: warning: /root/.swiftpm/swift-sdks/swift-wasm-6.1-RELEASE-wasm32-unknown-wasi.artifactbundle/6.1-RELEASE-wasm32-unknown-wasi/wasm32-unknown-wasi/swift.xctoolchain/usr/lib/swift_static/wasi/lib_FoundationCollections.a: archive member '_FoundationCollections.autolink' is neither Wasm object file nor LLVM bitcode
wasm-ld: warning: /root/.swiftpm/swift-sdks/swift-wasm-6.1-RELEASE-wasm32-unknown-wasi.artifactbundle/6.1-RELEASE-wasm32-unknown-wasi/wasm32-unknown-wasi/swift.xctoolchain/usr/lib/swift_static/wasi/lib_FoundationCollections.a: archive member '_FoundationCollections.autolink' is neither Wasm object file nor LLVM bitcode
wasm-ld: warning: /root/.swiftpm/swift-sdks/swift-wasm-6.1-RELEASE-wasm32-unknown-wasi.artifactbundle/6.1-RELEASE-wasm32-unknown-wasi/wasm32-unknown-wasi/swift.xctoolchain/usr/lib/swift_static/wasi/lib_FoundationCollections.a: archive member '_FoundationCollections.autolink' is neither Wasm object file nor LLVM bitcode
wasm-ld: warning: /root/.swiftpm/swift-sdks/swift-wasm-6.1-RELEASE-wasm32-unknown-wasi.artifactbundle/6.1-RELEASE-wasm32-unknown-wasi/wasm32-unknown-wasi/swift.xctoolchain/usr/lib/swift_static/wasi/lib_FoundationCollections.a: archive member '_FoundationCollections.autolink' is neither Wasm object file nor LLVM bitcode
wasm-ld: warning: /root/.swiftpm/swift-sdks/swift-wasm-6.1-RELEASE-wasm32-unknown-wasi.artifactbundle/6.1-RELEASE-wasm32-unknown-wasi/wasm32-unknown-wasi/swift.xctoolchain/usr/lib/swift_static/wasi/lib_FoundationCollections.a: archive member '_FoundationCollections.autolink' is neither Wasm object file nor LLVM bitcode
wasm-ld: warning: /root/.swiftpm/swift-sdks/swift-wasm-6.1-RELEASE-wasm32-unknown-wasi.artifactbundle/6.1-RELEASE-wasm32-unknown-wasi/wasm32-unknown-wasi/swift.xctoolchain/usr/lib/swift_static/wasi/lib_FoundationCollections.a: archive member '_FoundationCollections.autolink' is neither Wasm object file nor LLVM bitcode
wasm-ld: warning: /root/.swiftpm/swift-sdks/swift-wasm-6.1-RELEASE-wasm32-unknown-wasi.artifactbundle/6.1-RELEASE-wasm32-unknown-wasi/wasm32-unknown-wasi/swift.xctoolchain/usr/lib/swift_static/wasi/lib_FoundationCollections.a: archive member '_FoundationCollections.autolink' is neither Wasm object file nor LLVM bitcode
wasm-ld: warning: /root/.swiftpm/swift-sdks/swift-wasm-6.1-RELEASE-wasm32-unknown-wasi.artifactbundle/6.1-RELEASE-wasm32-unknown-wasi/wasm32-unknown-wasi/swift.xctoolchain/usr/lib/swift_static/wasi/lib_FoundationCollections.a: archive member '_FoundationCollections.autolink' is neither Wasm object file nor LLVM bitcode
wasm-ld: warning: /root/.swiftpm/swift-sdks/swift-wasm-6.1-RELEASE-wasm32-unknown-wasi.artifactbundle/6.1-RELEASE-wasm32-unknown-wasi/wasm32-unknown-wasi/swift.xctoolchain/usr/lib/swift_static/wasi/lib_FoundationCollections.a: archive member '_FoundationCollections.autolink' is neither Wasm object file nor LLVM bitcode
wasm-ld: warning: /root/.swiftpm/swift-sdks/swift-wasm-6.1-RELEASE-wasm32-unknown-wasi.artifactbundle/6.1-RELEASE-wasm32-unknown-wasi/wasm32-unknown-wasi/swift.xctoolchain/usr/lib/swift_static/wasi/lib_FoundationCollections.a: archive member '_FoundationCollections.autolink' is neither Wasm object file nor LLVM bitcode
wasm-ld: warning: /root/.swiftpm/swift-sdks/swift-wasm-6.1-RELEASE-wasm32-unknown-wasi.artifactbundle/6.1-RELEASE-wasm32-unknown-wasi/wasm32-unknown-wasi/swift.xctoolchain/usr/lib/swift_static/wasi/lib_FoundationCollections.a: archive member '_FoundationCollections.autolink' is neither Wasm object file nor LLVM bitcode
wasm-ld: warning: /root/.swiftpm/swift-sdks/swift-wasm-6.1-RELEASE-wasm32-unknown-wasi.artifactbundle/6.1-RELEASE-wasm32-unknown-wasi/wasm32-unknown-wasi/swift.xctoolchain/usr/lib/swift_static/wasi/lib_FoundationCollections.a: archive member '_FoundationCollections.autolink' is neither Wasm object file nor LLVM bitcode
wasm-ld: warning: /root/.swiftpm/swift-sdks/swift-wasm-6.1-RELEASE-wasm32-unknown-wasi.artifactbundle/6.1-RELEASE-wasm32-unknown-wasi/wasm32-unknown-wasi/swift.xctoolchain/usr/lib/swift_static/wasi/lib_FoundationCollections.a: archive member '_FoundationCollections.autolink' is neither Wasm object file nor LLVM bitcode
wasm-ld: warning: /root/.swiftpm/swift-sdks/swift-wasm-6.1-RELEASE-wasm32-unknown-wasi.artifactbundle/6.1-RELEASE-wasm32-unknown-wasi/wasm32-unknown-wasi/swift.xctoolchain/usr/lib/swift_static/wasi/lib_FoundationCollections.a: archive member '_FoundationCollections.autolink' is neither Wasm object file nor LLVM bitcode
wasm-ld: warning: /root/.swiftpm/swift-sdks/swift-wasm-6.1-RELEASE-wasm32-unknown-wasi.artifactbundle/6.1-RELEASE-wasm32-unknown-wasi/wasm32-unknown-wasi/swift.xctoolchain/usr/lib/swift_static/wasi/lib_FoundationCollections.a: archive member '_FoundationCollections.autolink' is neither Wasm object file nor LLVM bitcode
wasm-ld: warning: /root/.swiftpm/swift-sdks/swift-wasm-6.1-RELEASE-wasm32-unknown-wasi.artifactbundle/6.1-RELEASE-wasm32-unknown-wasi/wasm32-unknown-wasi/swift.xctoolchain/usr/lib/swift_static/wasi/lib_FoundationCollections.a: archive member '_FoundationCollections.autolink' is neither Wasm object file nor LLVM bitcode
wasm-ld: warning: /root/.swiftpm/swift-sdks/swift-wasm-6.1-RELEASE-wasm32-unknown-wasi.artifactbundle/6.1-RELEASE-wasm32-unknown-wasi/wasm32-unknown-wasi/swift.xctoolchain/usr/lib/swift_static/wasi/lib_FoundationCollections.a: archive member '_FoundationCollections.autolink' is neither Wasm object file nor LLVM bitcode
wasm-ld: warning: /root/.swiftpm/swift-sdks/swift-wasm-6.1-RELEASE-wasm32-unknown-wasi.artifactbundle/6.1-RELEASE-wasm32-unknown-wasi/wasm32-unknown-wasi/swift.xctoolchain/usr/lib/swift_static/wasi/lib_FoundationCollections.a: archive member '_FoundationCollections.autolink' is neither Wasm object file nor LLVM bitcode
wasm-ld: warning: /root/.swiftpm/swift-sdks/swift-wasm-6.1-RELEASE-wasm32-unknown-wasi.artifactbundle/6.1-RELEASE-wasm32-unknown-wasi/wasm32-unknown-wasi/swift.xctoolchain/usr/lib/swift_static/wasi/lib_FoundationCollections.a: archive member '_FoundationCollections.autolink' is neither Wasm object file nor LLVM bitcode
wasm-ld: warning: /root/.swiftpm/swift-sdks/swift-wasm-6.1-RELEASE-wasm32-unknown-wasi.artifactbundle/6.1-RELEASE-wasm32-unknown-wasi/wasm32-unknown-wasi/swift.xctoolchain/usr/lib/swift_static/wasi/lib_FoundationCollections.a: archive member '_FoundationCollections.autolink' is neither Wasm object file nor LLVM bitcode
wasm-ld: warning: /root/.swiftpm/swift-sdks/swift-wasm-6.1-RELEASE-wasm32-unknown-wasi.artifactbundle/6.1-RELEASE-wasm32-unknown-wasi/wasm32-unknown-wasi/swift.xctoolchain/usr/lib/swift_static/wasi/libFoundationEssentials.a: archive member 'FoundationEssentials.autolink' is neither Wasm object file nor LLVM bitcode
[404/405] Linking Fuzzing.wasm
Build complete! (67.34s)
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"
}
wasm-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:eb0758f51dbd6991fb9e51dedbfbcbec142ffc0d3b9b8ad91fa19d35e5136f0a
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest
Done.