Build Information
Failed to build LStXML2Code, reference 1.0.3 (786e39
), with Swift 6.0 for Linux on 3 Nov 2024 23:48:37 UTC.
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4609320-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete 2>&1
Build Log
========================================
RunAll
========================================
Builder version: 4.56.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/bastie/LStXML2Code.git
Reference: 1.0.3
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/bastie/LStXML2Code
* tag 1.0.3 -> FETCH_HEAD
HEAD is now at 786e39a unwanted output removed
Cloned https://github.com/bastie/LStXML2Code.git
Revision (git rev-parse @):
786e39ad8c9c7ffb128eb15e4d3df8e53a715908
SUCCESS checkout https://github.com/bastie/LStXML2Code.git at 1.0.3
========================================
Build
========================================
Selected platform: linux
Swift version: 6.0
Building package at path: $PWD
https://github.com/bastie/LStXML2Code.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete 2>&1
basic-6.0-latest: Pulling from finestructure/spi-images
Digest: sha256:47d26c99ca4f1ac0a332c85fd5b13ff4390e72115219984a57a68fe9d1063a05
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.0-latest
Fetching https://github.com/bastie/JavApi4Swift.git
[1/30992] Fetching javapi4swift
Fetched https://github.com/bastie/JavApi4Swift.git from cache (2.56s)
Computing version for https://github.com/bastie/JavApi4Swift.git
Computed https://github.com/bastie/JavApi4Swift.git at 0.19.1 (0.41s)
Creating working copy for https://github.com/bastie/JavApi4Swift.git
Working copy of https://github.com/bastie/JavApi4Swift.git resolved at 0.19.1
Building for debugging...
[0/7] Write sources
[2/7] Write swift-version-24593BA9C3E375BF.txt
[4/18] Compiling LStXML2Code TwoPartDecisionNode.swift
[5/19] Compiling LStXML2Code PAPTreeEncodingImpl.swift
[6/19] Compiling LStXML2Code PAPXmlParser.swift
/host/spi-builder-workspace/Sources/LStXML2Code/PAPXmlParser.swift:8:32: error: cannot find type 'XMLParserDelegate' in scope
6 |
7 |
8 | class PAPXmlParser : NSObject, XMLParserDelegate {
| `- error: cannot find type 'XMLParserDelegate' in scope
9 |
10 | private var currentNode : Node?
/host/spi-builder-workspace/Sources/LStXML2Code/PAPXmlParser.swift:16:48: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
14 | }
15 |
16 | public func parserDidStartDocument(_ parser: XMLParser) {
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
17 | //print("Line number: \(parser.lineNumber)")
18 | }
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/LStXML2Code/PAPXmlParser.swift:20:46: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
18 | }
19 |
20 | public func parserDidEndDocument(_ parser: XMLParser) {
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
21 | //print("Line number: \(parser.lineNumber)")
22 | }
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/LStXML2Code/PAPXmlParser.swift:25:32: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
23 |
24 | // parse comment
25 | public func parser(_ parser: XMLParser, foundComment comment: String) {
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
26 | let node = Node (newParent: self.currentNode)
27 | node.setName("Comment")
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/LStXML2Code/PAPXmlParser.swift:35:32: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
33 |
34 | // parse tag (start)
35 | public 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.
36 | // create new node
37 | let node = Node (newParent: self.currentNode)
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/LStXML2Code/PAPXmlParser.swift:46:32: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
44 |
45 | // parse tag (end)
46 | public 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.
47 |
48 | if let current = self.currentNode {
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/LStXML2Code/PAPXmlParser.swift:62:32: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
60 |
61 | // In result of parse text never is calling with existing XMLs the functions throws fatalError
62 | public 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.
63 | if (!string.trimmingCharacters(in: .whitespacesAndNewlines).isEmpty) {
64 | fatalError("Text not expected but found \(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
[7/19] Compiling LStXML2Code XmlPAP.swift
/host/spi-builder-workspace/Sources/LStXML2Code/XmlPAP.swift:18:18: error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
16 | let delegate = PAPXmlParser(newAst: result)
17 |
18 | let parser = XMLParser(data: xmlData)
| `- error: 'XMLParser' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
19 | parser.delegate = delegate
20 | parser.parse()
error: emit-module command failed with exit code 1 (use -v to see invocation)
[8/19] Compiling LStXML2Code PAPTree.swift
[9/19] Compiling LStXML2Code PAPTreeEncoder.swift
[10/19] Compiling LStXML2Code PAPTreeEncoding.swift
[11/19] Compiling LStXML2Code AbstractTreeEncoding.swift
[12/19] Compiling LStXML2Code Node.swift
[13/19] Compiling LStXML2Code AbstractTree.swift
[14/19] Compiling LStXML2Code AbstractTreeEncoder.swift
[15/19] Emitting module LStXML2Code
/host/spi-builder-workspace/Sources/LStXML2Code/PAPXmlParser.swift:8:32: error: cannot find type 'XMLParserDelegate' in scope
6 |
7 |
8 | class PAPXmlParser : NSObject, XMLParserDelegate {
| `- error: cannot find type 'XMLParserDelegate' in scope
9 |
10 | private var currentNode : Node?
/host/spi-builder-workspace/Sources/LStXML2Code/PAPXmlParser.swift:16:48: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
14 | }
15 |
16 | public func parserDidStartDocument(_ parser: XMLParser) {
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
17 | //print("Line number: \(parser.lineNumber)")
18 | }
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/LStXML2Code/PAPXmlParser.swift:20:46: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
18 | }
19 |
20 | public func parserDidEndDocument(_ parser: XMLParser) {
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
21 | //print("Line number: \(parser.lineNumber)")
22 | }
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/LStXML2Code/PAPXmlParser.swift:25:32: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
23 |
24 | // parse comment
25 | public func parser(_ parser: XMLParser, foundComment comment: String) {
| `- error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
26 | let node = Node (newParent: self.currentNode)
27 | node.setName("Comment")
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/LStXML2Code/PAPXmlParser.swift:35:32: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
33 |
34 | // parse tag (start)
35 | public 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.
36 | // create new node
37 | let node = Node (newParent: self.currentNode)
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/LStXML2Code/PAPXmlParser.swift:46:32: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
44 |
45 | // parse tag (end)
46 | public 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.
47 |
48 | if let current = self.currentNode {
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/LStXML2Code/PAPXmlParser.swift:62:32: error: 'XMLParser' is unavailable: This type has moved to the FoundationXML module. Import that module to use it.
60 |
61 | // In result of parse text never is calling with existing XMLs the functions throws fatalError
62 | public 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.
63 | if (!string.trimmingCharacters(in: .whitespacesAndNewlines).isEmpty) {
64 | fatalError("Text not expected but found \(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
BUILD FAILURE 6.0 linux