The Swift Package Index logo.Swift Package Index

Build Information

Successful build of AMF, reference 0.0.1 (a8221b), with Swift 6.3 for macOS (SPM) on 10 Apr 2026 12:39:10 UTC.

Swift 6 data race errors: 0

Build Command

env DEVELOPER_DIR=/Applications/Xcode-26.4.0.app xcrun swift build --arch arm64

Build Log

========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/mavisbroadcast/amf.git
Reference: 0.0.1
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/mavisbroadcast/amf
 * tag               0.0.1      -> FETCH_HEAD
HEAD is now at a8221b2 Generate LinuxMain
Cloned https://github.com/mavisbroadcast/amf.git
Revision (git rev-parse @):
a8221b27ce14b3220ad513197b93ea03bda111ba
SUCCESS checkout https://github.com/mavisbroadcast/amf.git at 0.0.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",
  "traits": [
    "default"
  ],
  "dependencies": [
    {
      "identity": "amf",
      "name": "AMF",
      "url": "https://github.com/mavisbroadcast/amf.git",
      "version": "unspecified",
      "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/amf",
      "traits": [
        "default"
      ],
      "dependencies": [
      ]
    }
  ]
}
Fetching https://github.com/mavisbroadcast/amf.git
[1/588] Fetching amf
Fetched https://github.com/mavisbroadcast/amf.git from cache (0.76s)
Creating working copy for https://github.com/mavisbroadcast/amf.git
Working copy of https://github.com/mavisbroadcast/amf.git resolved at 0.0.1 (a8221b2)
warning: '.resolve-product-dependencies': dependency 'amf' is not used by any target
Found 0 product dependencies
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.3
Building package at path:  $PWD
https://github.com/mavisbroadcast/amf.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.4.0.app xcrun swift build --arch arm64
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version--6988338F2F200930.txt
[3/27] Emitting module AMF
/Users/admin/builder/spi-builder-workspace/Sources/AMF0/Encoder/AMF0SingleValueEncodingContainer.swift:120:10: warning: instance method 'encode' nearly matches defaulted requirement 'encode' of protocol 'SingleValueEncodingContainer'
118 |     }
119 |
120 |     func encode(_ value: Date) throws {
    |          |- warning: instance method 'encode' nearly matches defaulted requirement 'encode' of protocol 'SingleValueEncodingContainer'
    |          |- note: candidate has non-matching type '(Date) throws -> ()'
    |          |- note: move 'encode' to another extension to silence this warning
    |          `- note: make 'encode' private to silence this warning
121 |         try checkCanEncode(value: value)
122 |         defer { self.canEncodeNewValue = false }
Swift.SingleValueEncodingContainer.encode:3:17: note: requirement 'encode' declared here
1 | protocol SingleValueEncodingContainer {
2 | @available(macOS 15.0, iOS 18.0, watchOS 11.0, tvOS 18.0, visionOS 2.0, *)
3 |   mutating func encode(_ value: Int128) throws}
  |                 `- note: requirement 'encode' declared here
4 |
/Users/admin/builder/spi-builder-workspace/Sources/AMF3/Encoder/AMF3SingleValueEncodingContainer.swift:123:10: warning: instance method 'encode' nearly matches defaulted requirement 'encode' of protocol 'SingleValueEncodingContainer'
121 |     }
122 |
123 |     func encode(_ value: Data) throws {
    |          |- warning: instance method 'encode' nearly matches defaulted requirement 'encode' of protocol 'SingleValueEncodingContainer'
    |          |- note: candidate has non-matching type '(Data) throws -> ()'
    |          |- note: move 'encode' to another extension to silence this warning
    |          `- note: make 'encode' private to silence this warning
124 |         data.append(contentsOf: value)
125 |     }
Swift.SingleValueEncodingContainer.encode:3:17: note: requirement 'encode' declared here
1 | protocol SingleValueEncodingContainer {
2 | @available(macOS 15.0, iOS 18.0, watchOS 11.0, tvOS 18.0, visionOS 2.0, *)
3 |   mutating func encode(_ value: Int128) throws}
  |                 `- note: requirement 'encode' declared here
4 |
/Users/admin/builder/spi-builder-workspace/Sources/AMF3/Encoder/AMF3SingleValueEncodingContainer.swift:127:10: warning: instance method 'encode' nearly matches defaulted requirement 'encode' of protocol 'SingleValueEncodingContainer'
125 |     }
126 |
127 |     func encode(_ value: Date) throws {
    |          |- warning: instance method 'encode' nearly matches defaulted requirement 'encode' of protocol 'SingleValueEncodingContainer'
    |          |- note: candidate has non-matching type '(Date) throws -> ()'
    |          |- note: move 'encode' to another extension to silence this warning
    |          `- note: make 'encode' private to silence this warning
128 |         try checkCanEncode(value: value)
129 |         defer { self.canEncodeNewValue = false }
Swift.SingleValueEncodingContainer.encode:3:17: note: requirement 'encode' declared here
1 | protocol SingleValueEncodingContainer {
2 | @available(macOS 15.0, iOS 18.0, watchOS 11.0, tvOS 18.0, visionOS 2.0, *)
3 |   mutating func encode(_ value: UInt128) throws}
  |                 `- note: requirement 'encode' declared here
4 |
/Users/admin/builder/spi-builder-workspace/Sources/AnyCodingKey.swift:25:9: warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'AnyCodingKey' to 'Hashable' by implementing 'hash(into:)' instead [#DeprecatedDeclaration]
23 |
24 | extension AnyCodingKey: Hashable {
25 |     var hashValue: Int {
   |         `- warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'AnyCodingKey' to 'Hashable' by implementing 'hash(into:)' instead [#DeprecatedDeclaration]
26 |         return intValue?.hashValue ?? stringValue.hashValue
27 |     }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[4/29] Compiling AMF Endianess.swift
[5/29] Compiling AMF FixedWidthInteger+Bytes.swift
[6/29] Compiling AMF AnyCodingKey.swift
/Users/admin/builder/spi-builder-workspace/Sources/AnyCodingKey.swift:25:9: warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'AnyCodingKey' to 'Hashable' by implementing 'hash(into:)' instead [#DeprecatedDeclaration]
23 |
24 | extension AnyCodingKey: Hashable {
25 |     var hashValue: Int {
   |         `- warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'AnyCodingKey' to 'Hashable' by implementing 'hash(into:)' instead [#DeprecatedDeclaration]
26 |         return intValue?.hashValue ?? stringValue.hashValue
27 |     }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[7/29] Compiling AMF Box.swift
/Users/admin/builder/spi-builder-workspace/Sources/AnyCodingKey.swift:25:9: warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'AnyCodingKey' to 'Hashable' by implementing 'hash(into:)' instead [#DeprecatedDeclaration]
23 |
24 | extension AnyCodingKey: Hashable {
25 |     var hashValue: Int {
   |         `- warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'AnyCodingKey' to 'Hashable' by implementing 'hash(into:)' instead [#DeprecatedDeclaration]
26 |         return intValue?.hashValue ?? stringValue.hashValue
27 |     }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[8/29] Compiling AMF AMF3KeyedEncodingContainer.swift
/Users/admin/builder/spi-builder-workspace/Sources/AMF3/Encoder/AMF3KeyedEncodingContainer.swift:22:20: warning: value 'index' was defined but never used; consider replacing with boolean test [#no-usage]
 20 |
 21 |         func dataFromTraits(_ traits: AMF3TraitsInfo) throws -> Data {
 22 |             if let index = referenceTable.encodingObjectTraitsTable.firstIndex(of: traits) {
    |                    `- warning: value 'index' was defined but never used; consider replacing with boolean test [#no-usage]
 23 |                 // TODO: encode traits index
 24 |                 fatalError("Not implemented")
/Users/admin/builder/spi-builder-workspace/Sources/AMF3/Encoder/AMF3SingleValueEncodingContainer.swift:123:10: warning: instance method 'encode' nearly matches defaulted requirement 'encode' of protocol 'SingleValueEncodingContainer'
121 |     }
122 |
123 |     func encode(_ value: Data) throws {
    |          |- warning: instance method 'encode' nearly matches defaulted requirement 'encode' of protocol 'SingleValueEncodingContainer'
    |          |- note: candidate has non-matching type '(Data) throws -> ()'
    |          |- note: move 'encode' to another extension to silence this warning
    |          `- note: make 'encode' private to silence this warning
124 |         data.append(contentsOf: value)
125 |     }
Swift.SingleValueEncodingContainer.encode:3:17: note: requirement 'encode' declared here
1 | protocol SingleValueEncodingContainer {
2 | @available(macOS 15.0, iOS 18.0, watchOS 11.0, tvOS 18.0, visionOS 2.0, *)
3 |   mutating func encode(_ value: Int128) throws}
  |                 `- note: requirement 'encode' declared here
4 |
/Users/admin/builder/spi-builder-workspace/Sources/AMF3/Encoder/AMF3SingleValueEncodingContainer.swift:127:10: warning: instance method 'encode' nearly matches defaulted requirement 'encode' of protocol 'SingleValueEncodingContainer'
125 |     }
126 |
127 |     func encode(_ value: Date) throws {
    |          |- warning: instance method 'encode' nearly matches defaulted requirement 'encode' of protocol 'SingleValueEncodingContainer'
    |          |- note: candidate has non-matching type '(Date) throws -> ()'
    |          |- note: move 'encode' to another extension to silence this warning
    |          `- note: make 'encode' private to silence this warning
128 |         try checkCanEncode(value: value)
129 |         defer { self.canEncodeNewValue = false }
Swift.SingleValueEncodingContainer.encode:3:17: note: requirement 'encode' declared here
1 | protocol SingleValueEncodingContainer {
2 | @available(macOS 15.0, iOS 18.0, watchOS 11.0, tvOS 18.0, visionOS 2.0, *)
3 |   mutating func encode(_ value: UInt128) throws}
  |                 `- note: requirement 'encode' declared here
4 |
[9/29] Compiling AMF AMF3SingleValueEncodingContainer.swift
/Users/admin/builder/spi-builder-workspace/Sources/AMF3/Encoder/AMF3KeyedEncodingContainer.swift:22:20: warning: value 'index' was defined but never used; consider replacing with boolean test [#no-usage]
 20 |
 21 |         func dataFromTraits(_ traits: AMF3TraitsInfo) throws -> Data {
 22 |             if let index = referenceTable.encodingObjectTraitsTable.firstIndex(of: traits) {
    |                    `- warning: value 'index' was defined but never used; consider replacing with boolean test [#no-usage]
 23 |                 // TODO: encode traits index
 24 |                 fatalError("Not implemented")
/Users/admin/builder/spi-builder-workspace/Sources/AMF3/Encoder/AMF3SingleValueEncodingContainer.swift:123:10: warning: instance method 'encode' nearly matches defaulted requirement 'encode' of protocol 'SingleValueEncodingContainer'
121 |     }
122 |
123 |     func encode(_ value: Data) throws {
    |          |- warning: instance method 'encode' nearly matches defaulted requirement 'encode' of protocol 'SingleValueEncodingContainer'
    |          |- note: candidate has non-matching type '(Data) throws -> ()'
    |          |- note: move 'encode' to another extension to silence this warning
    |          `- note: make 'encode' private to silence this warning
124 |         data.append(contentsOf: value)
125 |     }
Swift.SingleValueEncodingContainer.encode:3:17: note: requirement 'encode' declared here
1 | protocol SingleValueEncodingContainer {
2 | @available(macOS 15.0, iOS 18.0, watchOS 11.0, tvOS 18.0, visionOS 2.0, *)
3 |   mutating func encode(_ value: Int128) throws}
  |                 `- note: requirement 'encode' declared here
4 |
/Users/admin/builder/spi-builder-workspace/Sources/AMF3/Encoder/AMF3SingleValueEncodingContainer.swift:127:10: warning: instance method 'encode' nearly matches defaulted requirement 'encode' of protocol 'SingleValueEncodingContainer'
125 |     }
126 |
127 |     func encode(_ value: Date) throws {
    |          |- warning: instance method 'encode' nearly matches defaulted requirement 'encode' of protocol 'SingleValueEncodingContainer'
    |          |- note: candidate has non-matching type '(Date) throws -> ()'
    |          |- note: move 'encode' to another extension to silence this warning
    |          `- note: make 'encode' private to silence this warning
128 |         try checkCanEncode(value: value)
129 |         defer { self.canEncodeNewValue = false }
Swift.SingleValueEncodingContainer.encode:3:17: note: requirement 'encode' declared here
1 | protocol SingleValueEncodingContainer {
2 | @available(macOS 15.0, iOS 18.0, watchOS 11.0, tvOS 18.0, visionOS 2.0, *)
3 |   mutating func encode(_ value: UInt128) throws}
  |                 `- note: requirement 'encode' declared here
4 |
[10/29] Compiling AMF AMF0Encoder.swift
/Users/admin/builder/spi-builder-workspace/Sources/AMF0/Encoder/AMF0SingleValueEncodingContainer.swift:120:10: warning: instance method 'encode' nearly matches defaulted requirement 'encode' of protocol 'SingleValueEncodingContainer'
118 |     }
119 |
120 |     func encode(_ value: Date) throws {
    |          |- warning: instance method 'encode' nearly matches defaulted requirement 'encode' of protocol 'SingleValueEncodingContainer'
    |          |- note: candidate has non-matching type '(Date) throws -> ()'
    |          |- note: move 'encode' to another extension to silence this warning
    |          `- note: make 'encode' private to silence this warning
121 |         try checkCanEncode(value: value)
122 |         defer { self.canEncodeNewValue = false }
Swift.SingleValueEncodingContainer.encode:3:17: note: requirement 'encode' declared here
1 | protocol SingleValueEncodingContainer {
2 | @available(macOS 15.0, iOS 18.0, watchOS 11.0, tvOS 18.0, visionOS 2.0, *)
3 |   mutating func encode(_ value: Int128) throws}
  |                 `- note: requirement 'encode' declared here
4 |
[11/29] Compiling AMF AMF0KeyedEncodingContainer.swift
/Users/admin/builder/spi-builder-workspace/Sources/AMF0/Encoder/AMF0SingleValueEncodingContainer.swift:120:10: warning: instance method 'encode' nearly matches defaulted requirement 'encode' of protocol 'SingleValueEncodingContainer'
118 |     }
119 |
120 |     func encode(_ value: Date) throws {
    |          |- warning: instance method 'encode' nearly matches defaulted requirement 'encode' of protocol 'SingleValueEncodingContainer'
    |          |- note: candidate has non-matching type '(Date) throws -> ()'
    |          |- note: move 'encode' to another extension to silence this warning
    |          `- note: make 'encode' private to silence this warning
121 |         try checkCanEncode(value: value)
122 |         defer { self.canEncodeNewValue = false }
Swift.SingleValueEncodingContainer.encode:3:17: note: requirement 'encode' declared here
1 | protocol SingleValueEncodingContainer {
2 | @available(macOS 15.0, iOS 18.0, watchOS 11.0, tvOS 18.0, visionOS 2.0, *)
3 |   mutating func encode(_ value: Int128) throws}
  |                 `- note: requirement 'encode' declared here
4 |
[12/29] Compiling AMF AMF0SingleValueEncodingContainer.swift
/Users/admin/builder/spi-builder-workspace/Sources/AMF0/Encoder/AMF0SingleValueEncodingContainer.swift:120:10: warning: instance method 'encode' nearly matches defaulted requirement 'encode' of protocol 'SingleValueEncodingContainer'
118 |     }
119 |
120 |     func encode(_ value: Date) throws {
    |          |- warning: instance method 'encode' nearly matches defaulted requirement 'encode' of protocol 'SingleValueEncodingContainer'
    |          |- note: candidate has non-matching type '(Date) throws -> ()'
    |          |- note: move 'encode' to another extension to silence this warning
    |          `- note: make 'encode' private to silence this warning
121 |         try checkCanEncode(value: value)
122 |         defer { self.canEncodeNewValue = false }
Swift.SingleValueEncodingContainer.encode:3:17: note: requirement 'encode' declared here
1 | protocol SingleValueEncodingContainer {
2 | @available(macOS 15.0, iOS 18.0, watchOS 11.0, tvOS 18.0, visionOS 2.0, *)
3 |   mutating func encode(_ value: Int128) throws}
  |                 `- note: requirement 'encode' declared here
4 |
[13/29] Compiling AMF AMF3SingleValueDecodingContainer.swift
[14/29] Compiling AMF AMF3UnkeyedDecodingContainer.swift
[15/29] Compiling AMF AMF3Encoder.swift
[16/29] Compiling AMF AMF0KeyedDecodingContainer.swift
[17/29] Compiling AMF AMF0SingleValueDecodingContainer.swift
[18/29] Compiling AMF AMF0UnkeyedDecodingContainer.swift
[19/29] Compiling AMF AMF3TraitsInfo.swift
[20/29] Compiling AMF AMF3Decoder.swift
[21/29] Compiling AMF AMF3KeyedDecodingContainer.swift
[22/29] Compiling AMF AMF3UnkeyedEncodingContainer.swift
[23/29] Compiling AMF UInt32+UInt29.swift
[24/29] Compiling AMF AMF0Markers.swift
[25/29] Compiling AMF AMF0ReferenceTable.swift
[26/29] Compiling AMF AMF0Decoder.swift
[27/29] Compiling AMF AMF0UnkeyedEncodingContainer.swift
[28/29] Compiling AMF AMF3Markers.swift
[29/29] Compiling AMF AMF3ReferenceTable.swift
Build complete! (5.13s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "AMF",
  "name" : "AMF",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "AMF",
      "targets" : [
        "AMF"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "AMFTests",
      "module_type" : "SwiftTarget",
      "name" : "AMFTests",
      "path" : "Tests",
      "sources" : [
        "AMF0Tests/AMF0DecodingTests.swift",
        "AMF0Tests/AMF0EncodingTests.swift",
        "AMF0Tests/AMF0PerformanceTests.swift",
        "AMF0Tests/AMF0RoundTripTests.swift",
        "AMF0Tests/AMFCommand.swift",
        "AMF3Tests/AMF3DecodingTests.swift",
        "AMF3Tests/AMF3EncodingTests.swift",
        "AMF3Tests/AMF3PerformanceTests.swift",
        "AMF3Tests/AMF3RoundTripTests.swift",
        "AMF3Tests/UInt32+UInt29Tests.swift",
        "Shared Sources/Airport.swift",
        "XCTestManifests.swift"
      ],
      "target_dependencies" : [
        "AMF"
      ],
      "type" : "test"
    },
    {
      "c99name" : "AMF",
      "module_type" : "SwiftTarget",
      "name" : "AMF",
      "path" : "Sources",
      "product_memberships" : [
        "AMF"
      ],
      "sources" : [
        "AMF0/AMF0Markers.swift",
        "AMF0/AMF0ReferenceTable.swift",
        "AMF0/Decoder/AMF0Decoder.swift",
        "AMF0/Decoder/AMF0KeyedDecodingContainer.swift",
        "AMF0/Decoder/AMF0SingleValueDecodingContainer.swift",
        "AMF0/Decoder/AMF0UnkeyedDecodingContainer.swift",
        "AMF0/Encoder/AMF0Encoder.swift",
        "AMF0/Encoder/AMF0KeyedEncodingContainer.swift",
        "AMF0/Encoder/AMF0SingleValueEncodingContainer.swift",
        "AMF0/Encoder/AMF0UnkeyedEncodingContainer.swift",
        "AMF3/AMF3Markers.swift",
        "AMF3/AMF3ReferenceTable.swift",
        "AMF3/AMF3TraitsInfo.swift",
        "AMF3/Decoder/AMF3Decoder.swift",
        "AMF3/Decoder/AMF3KeyedDecodingContainer.swift",
        "AMF3/Decoder/AMF3SingleValueDecodingContainer.swift",
        "AMF3/Decoder/AMF3UnkeyedDecodingContainer.swift",
        "AMF3/Encoder/AMF3Encoder.swift",
        "AMF3/Encoder/AMF3KeyedEncodingContainer.swift",
        "AMF3/Encoder/AMF3SingleValueEncodingContainer.swift",
        "AMF3/Encoder/AMF3UnkeyedEncodingContainer.swift",
        "AMF3/UInt32+UInt29.swift",
        "AnyCodingKey.swift",
        "Box.swift",
        "Endianess.swift",
        "FixedWidthInteger+Bytes.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "4.2"
}
Done.