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 CoreXLSX, reference 0.14.2 (1391f3), with Swift 6.2 (beta) for macOS (SPM) on 20 Jun 2025 00:46:30 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/CoreOffice/CoreXLSX.git
Reference: 0.14.2
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/CoreOffice/CoreXLSX
 * tag               0.14.2     -> FETCH_HEAD
HEAD is now at 1391f38 Update README.md (#170)
Cloned https://github.com/CoreOffice/CoreXLSX.git
Revision (git rev-parse @):
1391f3832ea2eeee5186ea8abb81ea49ed0609cc
SUCCESS checkout https://github.com/CoreOffice/CoreXLSX.git at 0.14.2
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.2
Building package at path:  $PWD
https://github.com/CoreOffice/CoreXLSX.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
Building for debugging...
[0/5] Write sources
[1/5] Copying PrivacyInfo.xcprivacy
[1/5] Write sources
[4/5] Write swift-version-1EA4D86E10B52AF.txt
[6/72] Emitting module ZIPFoundation
[7/74] Compiling XMLCoder Box.swift
[8/74] Compiling XMLCoder ChoiceBox.swift
[9/74] Compiling XMLCoder DataBox.swift
[10/74] Compiling XMLCoder Attribute.swift
[11/74] Compiling XMLCoder BoolBox.swift
[12/74] Compiling XMLCoder SharedBox.swift
[13/74] Compiling XMLCoder SingleKeyedBox.swift
[14/74] Compiling XMLCoder EncodingErrorExtension.swift
[15/74] Compiling XMLCoder SingleValueEncodingContainer.swift
[16/74] Compiling XMLCoder XMLChoiceEncodingContainer.swift
[17/74] Compiling XMLCoder XMLEncoder.swift
[18/74] Compiling XMLCoder XMLEncoderImplementation.swift
[19/74] Compiling XMLCoder XMLDecoderImplementation.swift
[20/74] Compiling XMLCoder XMLDecodingStorage.swift
[21/74] Compiling XMLCoder XMLKeyedDecodingContainer.swift
[22/74] Compiling XMLCoder XMLUnkeyedDecodingContainer.swift
[23/74] Compiling XMLCoder DynamicNodeEncoding.swift
[24/78] Compiling XMLCoder KeyedBox.swift
[25/78] Compiling XMLCoder NullBox.swift
[28/78] Compiling XMLCoder StringBox.swift
[29/78] Compiling XMLCoder FloatBox.swift
[30/78] Compiling XMLCoder IntBox.swift
[32/78] Compiling XMLCoder UIntBox.swift
[33/78] Compiling XMLCoder URLBox.swift
[34/78] Compiling XMLCoder UnkeyedBox.swift
[37/78] Compiling XMLCoder ValueBox.swift
[38/78] Compiling XMLCoder Element.swift
[39/78] Compiling XMLCoder DateBox.swift
[40/78] Compiling XMLCoder DecimalBox.swift
[41/78] Compiling XMLCoder DoubleBox.swift
[42/78] Compiling XMLCoder DecodingErrorExtension.swift
[43/78] Compiling XMLCoder DynamicNodeDecoding.swift
[44/78] Compiling XMLCoder SingleValueDecodingContainer.swift
[45/78] Compiling XMLCoder XMLChoiceDecodingContainer.swift
[46/78] Compiling XMLCoder XMLDecoder.swift
[52/78] Emitting module XMLCoder
[58/78] Compiling XMLCoder XMLChoiceCodingKey.swift
[59/78] Compiling XMLCoder XMLCoderElement.swift
[60/78] Compiling XMLCoder XMLHeader.swift
[61/78] Compiling XMLCoder XMLKey.swift
[62/78] Compiling XMLCoder XMLStackParser.swift
[68/78] Compiling ZIPFoundation URL+ZIP.swift
[69/78] Compiling ZIPFoundation resource_bundle_accessor.swift
[70/78] Compiling XMLCoder KeyedStorage.swift
[71/78] Compiling XMLCoder Metatypes.swift
[72/78] Compiling XMLCoder String+Extensions.swift
[75/78] Compiling XMLCoder XMLEncodingStorage.swift
[76/78] Compiling XMLCoder XMLKeyedEncodingContainer.swift
[77/78] Compiling XMLCoder XMLReferencingEncoder.swift
[78/78] Compiling XMLCoder XMLUnkeyedEncodingContainer.swift
[79/90] Compiling CoreXLSX Cell.swift
[80/91] Compiling CoreXLSX Workbook.swift
[81/91] Compiling CoreXLSX ColumnReference.swift
[82/91] Compiling CoreXLSX CellQueries.swift
[83/91] Compiling CoreXLSX Worksheet.swift
[84/91] Compiling CoreXLSX XLSXFile.swift
/Users/admin/builder/spi-builder-workspace/Sources/CoreXLSX/XLSXFile.swift:67:25: warning: 'init(url:accessMode:preferredEncoding:)' is deprecated: Please use the throwing initializer. [#DeprecatedDeclaration]
 65 |     let archiveURL = URL(fileURLWithPath: filepath)
 66 |
 67 |     guard let archive = Archive(url: archiveURL, accessMode: .read) else {
    |                         `- warning: 'init(url:accessMode:preferredEncoding:)' is deprecated: Please use the throwing initializer. [#DeprecatedDeclaration]
 68 |       return nil
 69 |     }
/Users/admin/builder/spi-builder-workspace/Sources/CoreXLSX/XLSXFile.swift:90:25: warning: 'init(data:accessMode:preferredEncoding:)' is deprecated: Please use the throwing initializer. [#DeprecatedDeclaration]
 88 |     errorContextLength: UInt = 0
 89 |   ) throws {
 90 |     guard let archive = Archive(data: data, accessMode: .read)
    |                         `- warning: 'init(data:accessMode:preferredEncoding:)' is deprecated: Please use the throwing initializer. [#DeprecatedDeclaration]
 91 |     else { throw CoreXLSXError.dataIsNotAnArchive }
 92 |
/Users/admin/builder/spi-builder-workspace/Sources/CoreXLSX/XLSXFile.swift:115:21: warning: 'extract(_:bufferSize:skipCRC32:progress:consumer:)' is deprecated: Please use `Int` for `bufferSize`. [#DeprecatedDeclaration]
113 |
114 |     var data = Data()
115 |     _ = try archive.extract(entry, bufferSize: bufferSize) {
    |                     `- warning: 'extract(_:bufferSize:skipCRC32:progress:consumer:)' is deprecated: Please use `Int` for `bufferSize`. [#DeprecatedDeclaration]
116 |       data += $0
117 |     }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[85/91] Compiling CoreXLSX Relationships.swift
[86/91] Compiling CoreXLSX SharedStrings.swift
[87/91] Emitting module CoreXLSX
[88/91] Compiling CoreXLSX CellReference.swift
[89/91] Compiling CoreXLSX Comments.swift
[90/91] Compiling CoreXLSX Path.swift
[91/91] Compiling CoreXLSX Styles.swift
Build complete! (11.09s)
Fetching https://github.com/maxdesiatov/XMLCoder.git
Fetching https://github.com/weichsel/ZIPFoundation.git
[1/5576] Fetching zipfoundation
[113/15636] Fetching zipfoundation, xmlcoder
Fetched https://github.com/maxdesiatov/XMLCoder.git from cache (1.22s)
Fetched https://github.com/weichsel/ZIPFoundation.git from cache (1.22s)
Computing version for https://github.com/maxdesiatov/XMLCoder.git
Computed https://github.com/maxdesiatov/XMLCoder.git at 0.14.0 (1.73s)
Computing version for https://github.com/weichsel/ZIPFoundation.git
Computed https://github.com/weichsel/ZIPFoundation.git at 0.9.19 (0.42s)
Creating working copy for https://github.com/maxdesiatov/XMLCoder.git
Working copy of https://github.com/maxdesiatov/XMLCoder.git resolved at 0.14.0
Creating working copy for https://github.com/weichsel/ZIPFoundation.git
Working copy of https://github.com/weichsel/ZIPFoundation.git resolved at 0.9.19
Build complete.
{
  "dependencies" : [
    {
      "identity" : "xmlcoder",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.14.0",
            "upper_bound" : "0.15.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/maxdesiatov/XMLCoder.git"
    },
    {
      "identity" : "zipfoundation",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.9.11",
            "upper_bound" : "0.10.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/weichsel/ZIPFoundation.git"
    }
  ],
  "manifest_display_name" : "CoreXLSX",
  "name" : "CoreXLSX",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.11"
    },
    {
      "name" : "ios",
      "version" : "9.0"
    },
    {
      "name" : "tvos",
      "version" : "9.0"
    },
    {
      "name" : "watchos",
      "version" : "2.0"
    }
  ],
  "products" : [
    {
      "name" : "CoreXLSX",
      "targets" : [
        "CoreXLSX"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "CoreXLSXTests",
      "module_type" : "SwiftTarget",
      "name" : "CoreXLSXTests",
      "path" : "Tests/CoreXLSXTests",
      "sources" : [
        "Border.swift",
        "CellQueries.swift",
        "CellReference.swift",
        "Comments.swift",
        "Formula.swift",
        "Namespaces.swift",
        "Relationships.swift",
        "SharedStrings.swift",
        "Styles.swift",
        "Workbook.swift",
        "Worksheet.swift",
        "XCTestManifests.swift",
        "XLSXFile.swift"
      ],
      "target_dependencies" : [
        "CoreXLSX"
      ],
      "type" : "test"
    },
    {
      "c99name" : "CoreXLSX",
      "module_type" : "SwiftTarget",
      "name" : "CoreXLSX",
      "path" : "Sources/CoreXLSX",
      "product_dependencies" : [
        "XMLCoder",
        "ZIPFoundation"
      ],
      "product_memberships" : [
        "CoreXLSX"
      ],
      "sources" : [
        "Comments.swift",
        "Path.swift",
        "Relationships.swift",
        "SharedStrings.swift",
        "Styles.swift",
        "Workbook.swift",
        "Worksheet/Cell.swift",
        "Worksheet/CellQueries.swift",
        "Worksheet/CellReference.swift",
        "Worksheet/ColumnReference.swift",
        "Worksheet/Worksheet.swift",
        "XLSXFile.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.1"
}
Done.