The Swift Package Index logo.Swift Package Index

Build Information

Failed to build HavenOPML, reference main (c6b0f2), with Swift 6.2 for Linux on 15 Apr 2026 19:59:21 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:basic-6.2-latest swift build --triple x86_64-unknown-linux-gnu 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/Haven-Apps/HavenOPML.git
Reference: main
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
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at c6b0f2a Create FUNDING.yml
Cloned https://github.com/Haven-Apps/HavenOPML.git
Revision (git rev-parse @):
c6b0f2ac3d35d54893190adeaeb30302e97f0c31
SUCCESS checkout https://github.com/Haven-Apps/HavenOPML.git at main
========================================
Build
========================================
Selected platform:         linux
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:basic-6.2-latest swift build --triple x86_64-unknown-linux-gnu 2>&1
basic-6.2-latest: Pulling from swiftpackageindex/spi-images
Digest: sha256:0ddb100795e64f71518020a73ad8441aeb43832ede7f1202ae7f8de93664f90d
Status: Image is up to date for registry.gitlab.com/swiftpackageindex/spi-images:basic-6.2-latest
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-24593BA9C3E375BF.txt
[3/14] Compiling HavenOPML OPMLFormat.swift
[4/14] Compiling HavenOPML OutlineItem.swift
[5/14] Compiling HavenOPML OPMLDateFormatter.swift
error: emit-module command failed with exit code 1 (use -v to see invocation)
[6/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
[7/15] Compiling HavenOPML OPMLError.swift
[8/15] Compiling HavenOPML OPMLExporter.swift
[9/15] Compiling HavenOPML OPMLCategory.swift
[10/15] Compiling HavenOPML OPMLDocument.swift
[11/15] Compiling HavenOPML OPMLService.swift
[12/15] Compiling HavenOPML OutlineTraversal.swift
[13/15] 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 |             }
[14/15] 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 |             }
[15/15] Compiling HavenOPML XMLEscaping.swift
BUILD FAILURE 6.2 linux