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 main (1391f3), with Swift 6.2 (beta) for macOS (SPM) on 20 Jun 2025 00:46:16 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: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/CoreOffice/CoreXLSX
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
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 main
========================================
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
[2/5] Copying PrivacyInfo.xcprivacy
[2/5] Write sources
[4/5] Write swift-version-1EA4D86E10B52AF.txt
[6/72] Emitting module ZIPFoundation
[7/74] Compiling XMLCoder KeyedBox.swift
[8/74] Compiling XMLCoder NullBox.swift
[9/74] Compiling XMLCoder SharedBox.swift
[10/74] Compiling XMLCoder SingleKeyedBox.swift
[11/74] Compiling XMLCoder StringBox.swift
[12/78] Compiling XMLCoder XMLEncodingStorage.swift
[13/78] Compiling XMLCoder XMLKeyedEncodingContainer.swift
[14/78] Compiling XMLCoder XMLReferencingEncoder.swift
[15/78] Compiling XMLCoder XMLUnkeyedEncodingContainer.swift
[16/78] Compiling XMLCoder EncodingErrorExtension.swift
[17/78] Compiling XMLCoder SingleValueEncodingContainer.swift
[18/78] Compiling XMLCoder XMLChoiceEncodingContainer.swift
[19/78] Compiling XMLCoder XMLEncoder.swift
[20/78] Compiling XMLCoder XMLEncoderImplementation.swift
[21/78] Compiling XMLCoder XMLDecoderImplementation.swift
[22/78] Compiling XMLCoder XMLDecodingStorage.swift
[23/78] Compiling XMLCoder XMLKeyedDecodingContainer.swift
[24/78] Compiling XMLCoder XMLUnkeyedDecodingContainer.swift
[25/78] Compiling XMLCoder DynamicNodeEncoding.swift
[26/78] Compiling XMLCoder UIntBox.swift
[27/78] Compiling XMLCoder URLBox.swift
[28/78] Compiling XMLCoder UnkeyedBox.swift
[29/78] Compiling ZIPFoundation URL+ZIP.swift
[30/78] Compiling ZIPFoundation resource_bundle_accessor.swift
[31/78] Compiling XMLCoder XMLChoiceCodingKey.swift
[32/78] Compiling XMLCoder XMLCoderElement.swift
[33/78] Compiling XMLCoder XMLHeader.swift
[34/78] Compiling XMLCoder XMLKey.swift
[35/78] Compiling XMLCoder XMLStackParser.swift
[36/78] Compiling XMLCoder DecodingErrorExtension.swift
[37/78] Compiling XMLCoder DynamicNodeDecoding.swift
[38/78] Compiling XMLCoder SingleValueDecodingContainer.swift
[39/78] Compiling XMLCoder XMLChoiceDecodingContainer.swift
[40/78] Compiling XMLCoder XMLDecoder.swift
[44/78] Compiling XMLCoder ValueBox.swift
[45/78] Compiling XMLCoder Element.swift
[48/78] Compiling XMLCoder KeyedStorage.swift
[49/78] Compiling XMLCoder Metatypes.swift
[50/78] Compiling XMLCoder String+Extensions.swift
[51/78] Emitting module XMLCoder
[52/78] Compiling XMLCoder Attribute.swift
[53/78] Compiling XMLCoder BoolBox.swift
[54/78] Compiling XMLCoder Box.swift
[55/78] Compiling XMLCoder ChoiceBox.swift
[56/78] Compiling XMLCoder DataBox.swift
[57/78] Compiling XMLCoder DateBox.swift
[58/78] Compiling XMLCoder DecimalBox.swift
[59/78] Compiling XMLCoder DoubleBox.swift
[60/78] Compiling XMLCoder FloatBox.swift
[61/78] Compiling XMLCoder IntBox.swift
[79/90] Compiling CoreXLSX CellReference.swift
[80/91] Compiling CoreXLSX Cell.swift
[81/91] Compiling CoreXLSX CellQueries.swift
[82/91] Compiling CoreXLSX Workbook.swift
[83/91] Compiling CoreXLSX ColumnReference.swift
[84/91] Compiling CoreXLSX Worksheet.swift
[85/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>
[86/91] Compiling CoreXLSX Comments.swift
[87/91] Compiling CoreXLSX Path.swift
[88/91] Compiling CoreXLSX Styles.swift
[89/91] Compiling CoreXLSX Relationships.swift
[90/91] Compiling CoreXLSX SharedStrings.swift
[91/91] Emitting module CoreXLSX
Build complete! (11.05s)
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/weichsel/ZIPFoundation.git from cache (1.14s)
Fetched https://github.com/maxdesiatov/XMLCoder.git from cache (1.14s)
Computing version for https://github.com/maxdesiatov/XMLCoder.git
Computed https://github.com/maxdesiatov/XMLCoder.git at 0.14.0 (1.69s)
Computing version for https://github.com/weichsel/ZIPFoundation.git
Computed https://github.com/weichsel/ZIPFoundation.git at 0.9.19 (0.41s)
Creating working copy for https://github.com/weichsel/ZIPFoundation.git
Working copy of https://github.com/weichsel/ZIPFoundation.git resolved at 0.9.19
Creating working copy for https://github.com/maxdesiatov/XMLCoder.git
Working copy of https://github.com/maxdesiatov/XMLCoder.git resolved at 0.14.0
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.