Build Information
Failed to build XMLTools, reference 0.6.1 (83b37c), with Swift 6.3 for Android on 21 Apr 2026 12:12:05 UTC.
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4609320-1":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:android-6.3-latest swift build --swift-sdk aarch64-unknown-linux-android28 2>&1Build Log
========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/spilikin/swiftxmltools.git
Reference: 0.6.1
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
* tag 0.6.1 -> FETCH_HEAD
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 0.6.1
========================================
Build
========================================
Selected platform: android
Swift version: 6.3
Building package at path: $PWD
https://github.com/spilikin/swiftxmltools.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-1":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:android-6.3-latest swift build --swift-sdk aarch64-unknown-linux-android28 2>&1
android-6.3-latest: Pulling from swiftpackageindex/spi-images
Digest: sha256:9008270ea37a55e78725e6225015adb5eff8582da520c5232bf0499f32c36dc4
Status: Image is up to date for registry.gitlab.com/swiftpackageindex/spi-images:android-6.3-latest
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version--4F562202D5529B1.txt
error: emit-module command failed with exit code 1 (use -v to see invocation)
[3/16] Compiling XMLTools DOM+Traversal.swift
[4/16] Compiling XMLTools DOM.swift
[5/16] 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
[6/17] Compiling XMLTools Infoset+Attributes.swift
[7/17] Compiling XMLTools Infoset+Data.swift
[8/17] Compiling XMLTools Infoset+QName.swift
[9/17] Compiling XMLTools Infoset+Text.swift
[10/17] Compiling XMLTools Infoset+Number.swift
[11/17] Compiling XMLTools Infoset+Parent.swift
[12/17] Compiling XMLTools Serializer.swift
[13/17] Compiling XMLTools Infoset+Descendant.swift
[14/17] Compiling XMLTools Infoset+Manipulation.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.3 android