The Swift Package Index logo.Swift Package Index

Build Information

Failed to build XMLTools, reference master (83b37c), with Swift 6.2 for Android on 17 Jun 2025 21:19:53 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:android-6.2-latest swift build --swift-sdk aarch64-unknown-linux-android28 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/spilikin/swiftxmltools.git
Reference: master
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/spilikin/swiftxmltools
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
HEAD is now at 83b37c3 made Infoset.init() public and removed EMPTY Singleton
Cloned https://github.com/spilikin/swiftxmltools.git
Revision (git rev-parse @):
83b37c331cc1212c805d25a24bb84da79dac5814
SUCCESS checkout https://github.com/spilikin/swiftxmltools.git at master
========================================
Build
========================================
Selected platform:         android
Swift version:             6.2
Building package at path:  $PWD
https://github.com/spilikin/swiftxmltools.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:android-6.2-latest swift build --swift-sdk aarch64-unknown-linux-android28 2>&1
android-6.2-latest: Pulling from finestructure/spi-images
Digest: sha256:b7c4a6b4153ff40ef9277e2157e708f835b8eb011095d53bd8db4594eb2b7798
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:android-6.2-latest
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-8C5A4AE7A8CE2BA.txt
[3/16] Compiling XMLTools Infoset+Number.swift
[4/16] Compiling XMLTools Infoset+Parent.swift
[5/17] Compiling XMLTools Infoset+QName.swift
[6/17] Compiling XMLTools Infoset+Text.swift
[7/17] Compiling XMLTools Infoset+Descendant.swift
[8/17] Compiling XMLTools Infoset+Manipulation.swift
error: emit-module command failed with exit code 1 (use -v to see invocation)
[9/17] Compiling XMLTools DOM+Traversal.swift
[10/17] Compiling XMLTools DOM.swift
[11/17] Compiling XMLTools Infoset+Attributes.swift
[12/17] Compiling XMLTools Infoset+Data.swift
[13/17] Emitting module XMLTools
/host/spi-builder-workspace/Sources/XMLTools/Parser.swift:60:41: error: cannot find type 'XMLParserDelegate' in scope
 58 | }
 59 |
 60 | private class ParserDelegate: NSObject, XMLParserDelegate {
    |                                         `- error: cannot find type 'XMLParserDelegate' in scope
 61 |     fileprivate var document: Document
 62 |     private var currentElement: Element?
/host/spi-builder-workspace/Sources/XMLTools/Parser.swift:75:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
 73 |     }
 74 |
 75 |     func parser(_ parser: XMLParser, didStartElement elementName: String, namespaceURI: String?, qualifiedName qName: String?, attributes attributeDict: [String: String] = [:]) {
    |                           `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
 76 |         if let parent = currentElement {
 77 |             currentElement = parent.appendElement(QName(elementName, uri: namespaceURI!))
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
  |                  `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/XMLTools/Parser.swift:114:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
112 |     }
113 |
114 |     func parser(_ parser: XMLParser, foundCharacters string: String) {
    |                           `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
115 |         if options.trimWhitespaces {
116 |             let trimmed = string.trimmingCharacters(in: CharacterSet.whitespacesAndNewlines)
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
  |                  `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/XMLTools/Parser.swift:125:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
123 |     }
124 |
125 |     func parser(_ parser: XMLParser, didEndElement elementName: String, namespaceURI: String?, qualifiedName qName: String?) {
    |                           `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
126 |         if let parent = currentElement?.parentNode as? Element {
127 |             currentElement = parent
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
  |                  `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/XMLTools/Parser.swift:136:41: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
134 |     }
135 |
136 |     func parserDidEndDocument(_ parser: XMLParser) {
    |                                         `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
137 |     }
138 |
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
  |                  `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/XMLTools/Parser.swift:139:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
137 |     }
138 |
139 |     func parser(_ parser: XMLParser, didStartMappingPrefix prefix: String, toURI namespaceURI: String) {
    |                           `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
140 |         if namespaceContext == nil {
141 |             // create empty namespace context
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
  |                  `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/XMLTools/Parser.swift:147:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
145 |     }
146 |
147 |     func parser(_ parser: XMLParser, parseErrorOccurred parseError: Error) {
    |                           `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
148 |         self.parseError = parseError
149 |         self.errorLineNumber = parser.lineNumber
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
  |                  `- note: 'XMLParser' has been explicitly marked unavailable here
[14/17] Compiling XMLTools Serializer.swift
[15/17] Compiling XMLTools Infoset.swift
/host/spi-builder-workspace/Sources/XMLTools/Parser.swift:60:41: error: cannot find type 'XMLParserDelegate' in scope
 58 | }
 59 |
 60 | private class ParserDelegate: NSObject, XMLParserDelegate {
    |                                         `- error: cannot find type 'XMLParserDelegate' in scope
 61 |     fileprivate var document: Document
 62 |     private var currentElement: Element?
/host/spi-builder-workspace/Sources/XMLTools/Parser.swift:75:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
 73 |     }
 74 |
 75 |     func parser(_ parser: XMLParser, didStartElement elementName: String, namespaceURI: String?, qualifiedName qName: String?, attributes attributeDict: [String: String] = [:]) {
    |                           `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
 76 |         if let parent = currentElement {
 77 |             currentElement = parent.appendElement(QName(elementName, uri: namespaceURI!))
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
  |                  `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/XMLTools/Parser.swift:114:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
112 |     }
113 |
114 |     func parser(_ parser: XMLParser, foundCharacters string: String) {
    |                           `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
115 |         if options.trimWhitespaces {
116 |             let trimmed = string.trimmingCharacters(in: CharacterSet.whitespacesAndNewlines)
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
  |                  `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/XMLTools/Parser.swift:125:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
123 |     }
124 |
125 |     func parser(_ parser: XMLParser, didEndElement elementName: String, namespaceURI: String?, qualifiedName qName: String?) {
    |                           `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
126 |         if let parent = currentElement?.parentNode as? Element {
127 |             currentElement = parent
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
  |                  `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/XMLTools/Parser.swift:136:41: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
134 |     }
135 |
136 |     func parserDidEndDocument(_ parser: XMLParser) {
    |                                         `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
137 |     }
138 |
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
  |                  `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/XMLTools/Parser.swift:139:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
137 |     }
138 |
139 |     func parser(_ parser: XMLParser, didStartMappingPrefix prefix: String, toURI namespaceURI: String) {
    |                           `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
140 |         if namespaceContext == nil {
141 |             // create empty namespace context
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
  |                  `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/XMLTools/Parser.swift:147:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
145 |     }
146 |
147 |     func parser(_ parser: XMLParser, parseErrorOccurred parseError: Error) {
    |                           `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
148 |         self.parseError = parseError
149 |         self.errorLineNumber = parser.lineNumber
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
  |                  `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/XMLTools/Parser.swift:25:22: error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
 23 |     public func parse(data: Data) throws -> Infoset {
 24 |         let delegate = ParserDelegate(options: options)
 25 |         let parser = XMLParser(data: data)
    |                      `- error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
 26 |         parser.shouldProcessNamespaces = true
 27 |         parser.shouldReportNamespacePrefixes = true
/host/spi-builder-workspace/Sources/XMLTools/Parser.swift:149:39: error: value of type 'XMLParser' (aka 'AnyObject') has no member 'lineNumber'
147 |     func parser(_ parser: XMLParser, parseErrorOccurred parseError: Error) {
148 |         self.parseError = parseError
149 |         self.errorLineNumber = parser.lineNumber
    |                                       `- error: value of type 'XMLParser' (aka 'AnyObject') has no member 'lineNumber'
150 |         self.errorColumnNumber = parser.columnNumber
151 |     }
/host/spi-builder-workspace/Sources/XMLTools/Parser.swift:150:41: error: value of type 'XMLParser' (aka 'AnyObject') has no member 'columnNumber'
148 |         self.parseError = parseError
149 |         self.errorLineNumber = parser.lineNumber
150 |         self.errorColumnNumber = parser.columnNumber
    |                                         `- error: value of type 'XMLParser' (aka 'AnyObject') has no member 'columnNumber'
151 |     }
152 | }
[16/17] Compiling XMLTools Parser.swift
/host/spi-builder-workspace/Sources/XMLTools/Parser.swift:60:41: error: cannot find type 'XMLParserDelegate' in scope
 58 | }
 59 |
 60 | private class ParserDelegate: NSObject, XMLParserDelegate {
    |                                         `- error: cannot find type 'XMLParserDelegate' in scope
 61 |     fileprivate var document: Document
 62 |     private var currentElement: Element?
/host/spi-builder-workspace/Sources/XMLTools/Parser.swift:75:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
 73 |     }
 74 |
 75 |     func parser(_ parser: XMLParser, didStartElement elementName: String, namespaceURI: String?, qualifiedName qName: String?, attributes attributeDict: [String: String] = [:]) {
    |                           `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
 76 |         if let parent = currentElement {
 77 |             currentElement = parent.appendElement(QName(elementName, uri: namespaceURI!))
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
  |                  `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/XMLTools/Parser.swift:114:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
112 |     }
113 |
114 |     func parser(_ parser: XMLParser, foundCharacters string: String) {
    |                           `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
115 |         if options.trimWhitespaces {
116 |             let trimmed = string.trimmingCharacters(in: CharacterSet.whitespacesAndNewlines)
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
  |                  `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/XMLTools/Parser.swift:125:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
123 |     }
124 |
125 |     func parser(_ parser: XMLParser, didEndElement elementName: String, namespaceURI: String?, qualifiedName qName: String?) {
    |                           `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
126 |         if let parent = currentElement?.parentNode as? Element {
127 |             currentElement = parent
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
  |                  `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/XMLTools/Parser.swift:136:41: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
134 |     }
135 |
136 |     func parserDidEndDocument(_ parser: XMLParser) {
    |                                         `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
137 |     }
138 |
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
  |                  `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/XMLTools/Parser.swift:139:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
137 |     }
138 |
139 |     func parser(_ parser: XMLParser, didStartMappingPrefix prefix: String, toURI namespaceURI: String) {
    |                           `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
140 |         if namespaceContext == nil {
141 |             // create empty namespace context
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
  |                  `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/XMLTools/Parser.swift:147:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
145 |     }
146 |
147 |     func parser(_ parser: XMLParser, parseErrorOccurred parseError: Error) {
    |                           `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
148 |         self.parseError = parseError
149 |         self.errorLineNumber = parser.lineNumber
Foundation.XMLParser:2:18: note: 'XMLParser' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationXML module. Import that module to use it.")
2 | public typealias XMLParser = AnyObject
  |                  `- note: 'XMLParser' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/XMLTools/Parser.swift:25:22: error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
 23 |     public func parse(data: Data) throws -> Infoset {
 24 |         let delegate = ParserDelegate(options: options)
 25 |         let parser = XMLParser(data: data)
    |                      `- error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
 26 |         parser.shouldProcessNamespaces = true
 27 |         parser.shouldReportNamespacePrefixes = true
/host/spi-builder-workspace/Sources/XMLTools/Parser.swift:149:39: error: value of type 'XMLParser' (aka 'AnyObject') has no member 'lineNumber'
147 |     func parser(_ parser: XMLParser, parseErrorOccurred parseError: Error) {
148 |         self.parseError = parseError
149 |         self.errorLineNumber = parser.lineNumber
    |                                       `- error: value of type 'XMLParser' (aka 'AnyObject') has no member 'lineNumber'
150 |         self.errorColumnNumber = parser.columnNumber
151 |     }
/host/spi-builder-workspace/Sources/XMLTools/Parser.swift:150:41: error: value of type 'XMLParser' (aka 'AnyObject') has no member 'columnNumber'
148 |         self.parseError = parseError
149 |         self.errorLineNumber = parser.lineNumber
150 |         self.errorColumnNumber = parser.columnNumber
    |                                         `- error: value of type 'XMLParser' (aka 'AnyObject') has no member 'columnNumber'
151 |     }
152 | }
[17/17] Compiling XMLTools XMLTools.swift
BUILD FAILURE 6.2 android