Build Information
Failed to build HavenOPML, reference 0.9.0 (e88512), with Swift 6.2 for Android on 20 Mar 2026 18:16:56 UTC.
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4606859-3":/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.2-latest swift build --swift-sdk aarch64-unknown-linux-android28 2>&1Build Log
========================================
RunAll
========================================
Builder version: 4.69.2
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/Haven-Apps/HavenOPML.git
Reference: 0.9.0
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/Haven-Apps/HavenOPML
* tag 0.9.0 -> FETCH_HEAD
HEAD is now at e88512b added headers to every file
Cloned https://github.com/Haven-Apps/HavenOPML.git
Revision (git rev-parse @):
e88512ba6a8f60e4345522938a6064876791e238
SUCCESS checkout https://github.com/Haven-Apps/HavenOPML.git at 0.9.0
========================================
Build
========================================
Selected platform: android
Swift version: 6.2
Building package at path: $PWD
https://github.com/Haven-Apps/HavenOPML.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-3":/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.2-latest swift build --swift-sdk aarch64-unknown-linux-android28 2>&1
android-6.2-latest: Pulling from swiftpackageindex/spi-images
Digest: sha256:ed06329bcd62885fa27d8bb2bd26ede56f367c486166aaeeac553557f3a78bad
Status: Image is up to date for registry.gitlab.com/swiftpackageindex/spi-images:android-6.2-latest
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version--11D90AFD9DD3AB2.txt
[3/14] Compiling HavenOPML OPMLImporter.swift
/host/spi-builder-workspace/Sources/HavenOPML/Parsers/OPMLImporter.swift:34:22: error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
32 |
33 | let delegate = OPMLParserDelegate(maxNestingDepth: maxNestingDepth)
34 | let parser = XMLParser(data: data)
| `- error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
35 | parser.delegate = delegate
36 | parser.shouldProcessNamespaces = false
/host/spi-builder-workspace/Sources/HavenOPML/Parsers/OPMLParserDelegate.swift:16:43: error: cannot find type 'XMLParserDelegate' in scope
14 | /// static method call in `OPMLImporter`. It is never shared across isolation
15 | /// boundaries during its mutable lifetime.
16 | final class OPMLParserDelegate: NSObject, XMLParserDelegate {
| `- error: cannot find type 'XMLParserDelegate' in scope
17 |
18 | // MARK: - Configuration
/host/spi-builder-workspace/Sources/HavenOPML/Parsers/OPMLParserDelegate.swift:65:19: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
63 |
64 | func parser(
65 | _ parser: XMLParser,
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
66 | didStartElement elementName: String,
67 | namespaceURI: String?,
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/HavenOPML/Parsers/OPMLParserDelegate.swift:115:19: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
113 |
114 | func parser(
115 | _ parser: XMLParser,
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
116 | didEndElement elementName: String,
117 | namespaceURI: String?,
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/HavenOPML/Parsers/OPMLParserDelegate.swift:148:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
146 | }
147 |
148 | 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.
149 | currentText += string
150 | }
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/HavenOPML/Parsers/OPMLParserDelegate.swift:152:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
150 | }
151 |
152 | 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.
153 | let nsError = parseError as NSError
154 | self.parseError = .malformedXML(
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/HavenOPML/Parsers/OPMLParserDelegate.swift:97:24: error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
95 | if currentNestingDepth > maxNestingDepth {
96 | parseError = .nestingTooDeep(limit: maxNestingDepth)
97 | parser.abortParsing()
| `- error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
98 | return
99 | }
/host/spi-builder-workspace/Sources/HavenOPML/Parsers/OPMLParserDelegate.swift:103:24: error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
101 | if outline.text.isEmpty && attributeDict["xmlUrl"] != nil {
102 | parseError = .missingOutlineText
103 | parser.abortParsing()
| `- error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
104 | return
105 | }
[4/14] Compiling HavenOPML OPMLParserDelegate.swift
/host/spi-builder-workspace/Sources/HavenOPML/Parsers/OPMLImporter.swift:34:22: error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
32 |
33 | let delegate = OPMLParserDelegate(maxNestingDepth: maxNestingDepth)
34 | let parser = XMLParser(data: data)
| `- error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
35 | parser.delegate = delegate
36 | parser.shouldProcessNamespaces = false
/host/spi-builder-workspace/Sources/HavenOPML/Parsers/OPMLParserDelegate.swift:16:43: error: cannot find type 'XMLParserDelegate' in scope
14 | /// static method call in `OPMLImporter`. It is never shared across isolation
15 | /// boundaries during its mutable lifetime.
16 | final class OPMLParserDelegate: NSObject, XMLParserDelegate {
| `- error: cannot find type 'XMLParserDelegate' in scope
17 |
18 | // MARK: - Configuration
/host/spi-builder-workspace/Sources/HavenOPML/Parsers/OPMLParserDelegate.swift:65:19: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
63 |
64 | func parser(
65 | _ parser: XMLParser,
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
66 | didStartElement elementName: String,
67 | namespaceURI: String?,
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/HavenOPML/Parsers/OPMLParserDelegate.swift:115:19: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
113 |
114 | func parser(
115 | _ parser: XMLParser,
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
116 | didEndElement elementName: String,
117 | namespaceURI: String?,
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/HavenOPML/Parsers/OPMLParserDelegate.swift:148:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
146 | }
147 |
148 | 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.
149 | currentText += string
150 | }
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/HavenOPML/Parsers/OPMLParserDelegate.swift:152:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
150 | }
151 |
152 | 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.
153 | let nsError = parseError as NSError
154 | self.parseError = .malformedXML(
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/HavenOPML/Parsers/OPMLParserDelegate.swift:97:24: error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
95 | if currentNestingDepth > maxNestingDepth {
96 | parseError = .nestingTooDeep(limit: maxNestingDepth)
97 | parser.abortParsing()
| `- error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
98 | return
99 | }
/host/spi-builder-workspace/Sources/HavenOPML/Parsers/OPMLParserDelegate.swift:103:24: error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
101 | if outline.text.isEmpty && attributeDict["xmlUrl"] != nil {
102 | parseError = .missingOutlineText
103 | parser.abortParsing()
| `- error: value of type 'XMLParser' (aka 'AnyObject') has no member 'abortParsing'
104 | return
105 | }
[5/15] Compiling HavenOPML OPMLService.swift
[6/15] Compiling HavenOPML OutlineTraversal.swift
[7/15] Compiling HavenOPML OPMLDateFormatter.swift
error: emit-module command failed with exit code 1 (use -v to see invocation)
[8/15] Compiling HavenOPML OPMLFormat.swift
[9/15] Compiling HavenOPML OutlineItem.swift
[10/15] Compiling HavenOPML OPMLError.swift
[11/15] Compiling HavenOPML OPMLExporter.swift
[12/15] Compiling HavenOPML OPMLCategory.swift
[13/15] Compiling HavenOPML OPMLDocument.swift
[14/15] Emitting module HavenOPML
/host/spi-builder-workspace/Sources/HavenOPML/Parsers/OPMLParserDelegate.swift:16:43: error: cannot find type 'XMLParserDelegate' in scope
14 | /// static method call in `OPMLImporter`. It is never shared across isolation
15 | /// boundaries during its mutable lifetime.
16 | final class OPMLParserDelegate: NSObject, XMLParserDelegate {
| `- error: cannot find type 'XMLParserDelegate' in scope
17 |
18 | // MARK: - Configuration
/host/spi-builder-workspace/Sources/HavenOPML/Parsers/OPMLParserDelegate.swift:65:19: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
63 |
64 | func parser(
65 | _ parser: XMLParser,
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
66 | didStartElement elementName: String,
67 | namespaceURI: String?,
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/HavenOPML/Parsers/OPMLParserDelegate.swift:115:19: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
113 |
114 | func parser(
115 | _ parser: XMLParser,
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
116 | didEndElement elementName: String,
117 | namespaceURI: String?,
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/HavenOPML/Parsers/OPMLParserDelegate.swift:148:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
146 | }
147 |
148 | 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.
149 | currentText += string
150 | }
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/HavenOPML/Parsers/OPMLParserDelegate.swift:152:27: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
150 | }
151 |
152 | 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.
153 | let nsError = parseError as NSError
154 | self.parseError = .malformedXML(
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
[15/15] Compiling HavenOPML XMLEscaping.swift
BUILD FAILURE 6.2 android