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 XMLParsing, reference master (4bdaa5), with Swift 6.2 (beta) for macOS (SPM) on 18 Jun 2025 08:16:54 UTC.

Swift 6 data race errors: 0

Build Command

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

Build Log

========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/dingwilson/XMLParsing.git
Reference: master
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/dingwilson/XMLParsing
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
HEAD is now at 4bdaa51 Updated podspec to 0.0.2
Cloned https://github.com/dingwilson/XMLParsing.git
Revision (git rev-parse @):
4bdaa51c4871654f8cae31f6683e3eaa635b36df
SUCCESS checkout https://github.com/dingwilson/XMLParsing.git at master
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.2
Building package at path:  $PWD
https://github.com/dingwilson/XMLParsing.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-1EA4D86E10B52AF.txt
[3/14] Compiling XMLParsing XMLKey.swift
[4/15] Compiling XMLParsing XMLReferencingEncoder.swift
[5/15] Emitting module XMLParsing
/Users/admin/builder/spi-builder-workspace/Sources/XMLParsing/Decoder/DecodingErrorExtension.swift:22:5: warning: 'internal' modifier is redundant for static method declared in an internal extension
20 |     /// - parameter reality: The value that was encountered instead of the expected type.
21 |     /// - returns: A `DecodingError` with the appropriate path and debug description.
22 |     internal static func _typeMismatch(at path: [CodingKey], expectation: Any.Type, reality: Any) -> DecodingError {
   |     `- warning: 'internal' modifier is redundant for static method declared in an internal extension
23 |         let description = "Expected to decode \(expectation) but found \(_typeDescription(of: reality)) instead."
24 |         return .typeMismatch(expectation, Context(codingPath: path, debugDescription: description))
/Users/admin/builder/spi-builder-workspace/Sources/XMLParsing/Decoder/DecodingErrorExtension.swift:32:5: warning: 'internal' modifier is redundant for static method declared in an internal extension
30 |     /// - returns: A string describing `value`.
31 |     /// - precondition: `value` is one of the types below.
32 |     internal static func _typeDescription(of value: Any) -> String {
   |     `- warning: 'internal' modifier is redundant for static method declared in an internal extension
33 |         if value is NSNull {
34 |             return "a null value"
/Users/admin/builder/spi-builder-workspace/Sources/XMLParsing/Encoder/EncodingErrorExtension.swift:21:5: warning: 'internal' modifier is redundant for static method declared in an internal extension
19 |     /// - parameter path: The path of `CodingKey`s taken to encode this value.
20 |     /// - returns: An `EncodingError` with the appropriate path and debug description.
21 |     internal static func _invalidFloatingPointValue<T : FloatingPoint>(_ value: T, at codingPath: [CodingKey]) -> EncodingError {
   |     `- warning: 'internal' modifier is redundant for static method declared in an internal extension
22 |         let valueDescription: String
23 |         if value == T.infinity {
[6/15] Compiling XMLParsing ISO8601DateFormatter.swift
[7/15] Compiling XMLParsing EncodingErrorExtension.swift
/Users/admin/builder/spi-builder-workspace/Sources/XMLParsing/Encoder/EncodingErrorExtension.swift:21:5: warning: 'internal' modifier is redundant for static method declared in an internal extension
19 |     /// - parameter path: The path of `CodingKey`s taken to encode this value.
20 |     /// - returns: An `EncodingError` with the appropriate path and debug description.
21 |     internal static func _invalidFloatingPointValue<T : FloatingPoint>(_ value: T, at codingPath: [CodingKey]) -> EncodingError {
   |     `- warning: 'internal' modifier is redundant for static method declared in an internal extension
22 |         let valueDescription: String
23 |         if value == T.infinity {
[8/15] Compiling XMLParsing XMLUnkeyedDecodingContainer.swift
[9/15] Compiling XMLParsing DecodingErrorExtension.swift
/Users/admin/builder/spi-builder-workspace/Sources/XMLParsing/Decoder/DecodingErrorExtension.swift:22:5: warning: 'internal' modifier is redundant for static method declared in an internal extension
20 |     /// - parameter reality: The value that was encountered instead of the expected type.
21 |     /// - returns: A `DecodingError` with the appropriate path and debug description.
22 |     internal static func _typeMismatch(at path: [CodingKey], expectation: Any.Type, reality: Any) -> DecodingError {
   |     `- warning: 'internal' modifier is redundant for static method declared in an internal extension
23 |         let description = "Expected to decode \(expectation) but found \(_typeDescription(of: reality)) instead."
24 |         return .typeMismatch(expectation, Context(codingPath: path, debugDescription: description))
/Users/admin/builder/spi-builder-workspace/Sources/XMLParsing/Decoder/DecodingErrorExtension.swift:32:5: warning: 'internal' modifier is redundant for static method declared in an internal extension
30 |     /// - returns: A string describing `value`.
31 |     /// - precondition: `value` is one of the types below.
32 |     internal static func _typeDescription(of value: Any) -> String {
   |     `- warning: 'internal' modifier is redundant for static method declared in an internal extension
33 |         if value is NSNull {
34 |             return "a null value"
[10/15] Compiling XMLParsing XMLDecoder.swift
/Users/admin/builder/spi-builder-workspace/Sources/XMLParsing/Decoder/DecodingErrorExtension.swift:22:5: warning: 'internal' modifier is redundant for static method declared in an internal extension
20 |     /// - parameter reality: The value that was encountered instead of the expected type.
21 |     /// - returns: A `DecodingError` with the appropriate path and debug description.
22 |     internal static func _typeMismatch(at path: [CodingKey], expectation: Any.Type, reality: Any) -> DecodingError {
   |     `- warning: 'internal' modifier is redundant for static method declared in an internal extension
23 |         let description = "Expected to decode \(expectation) but found \(_typeDescription(of: reality)) instead."
24 |         return .typeMismatch(expectation, Context(codingPath: path, debugDescription: description))
/Users/admin/builder/spi-builder-workspace/Sources/XMLParsing/Decoder/DecodingErrorExtension.swift:32:5: warning: 'internal' modifier is redundant for static method declared in an internal extension
30 |     /// - returns: A string describing `value`.
31 |     /// - precondition: `value` is one of the types below.
32 |     internal static func _typeDescription(of value: Any) -> String {
   |     `- warning: 'internal' modifier is redundant for static method declared in an internal extension
33 |         if value is NSNull {
34 |             return "a null value"
[11/15] Compiling XMLParsing XMLDecodingStorage.swift
[12/15] Compiling XMLParsing XMLKeyedDecodingContainer.swift
[13/15] Compiling XMLParsing XMLEncodingStorage.swift
[14/15] Compiling XMLParsing XMLEncoder.swift
[15/15] Compiling XMLParsing XMLStackParser.swift
Build complete! (5.07s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "XMLParsing",
  "name" : "XMLParsing",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "XMLParsing",
      "targets" : [
        "XMLParsing"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "XMLParsingTests",
      "module_type" : "SwiftTarget",
      "name" : "XMLParsingTests",
      "path" : "Tests/XMLParsingTests",
      "sources" : [
        "XMLParsingTests.swift"
      ],
      "target_dependencies" : [
        "XMLParsing"
      ],
      "type" : "test"
    },
    {
      "c99name" : "XMLParsing",
      "module_type" : "SwiftTarget",
      "name" : "XMLParsing",
      "path" : "Sources/XMLParsing",
      "product_memberships" : [
        "XMLParsing"
      ],
      "sources" : [
        "Decoder/DecodingErrorExtension.swift",
        "Decoder/XMLDecoder.swift",
        "Decoder/XMLDecodingStorage.swift",
        "Decoder/XMLKeyedDecodingContainer.swift",
        "Decoder/XMLUnkeyedDecodingContainer.swift",
        "Encoder/EncodingErrorExtension.swift",
        "Encoder/XMLEncoder.swift",
        "Encoder/XMLEncodingStorage.swift",
        "Encoder/XMLReferencingEncoder.swift",
        "ISO8601DateFormatter.swift",
        "XMLKey.swift",
        "XMLStackParser.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "4.0"
}
Done.