Build Information
Successful build of LilHTML, reference 0.1.0 (93672d), with Swift 6.2 for Linux on 21 Jun 2025 17:35:36 UTC.
Swift 6 data race errors: 0
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4606859-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.2-latest swift build --triple x86_64-unknown-linux-gnu 2>&1Build Log
========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/nakajima/LilHTML.git
Reference: 0.1.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/nakajima/LilHTML
* tag 0.1.0 -> FETCH_HEAD
HEAD is now at 93672d6 update test data
Cloned https://github.com/nakajima/LilHTML.git
Revision (git rev-parse @):
93672d604ecc508f997cff5e56fd7ac66276e985
SUCCESS checkout https://github.com/nakajima/LilHTML.git at 0.1.0
========================================
Build
========================================
Selected platform: linux
Swift version: 6.2
Building package at path: $PWD
https://github.com/nakajima/LilHTML.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.2-latest swift build --triple x86_64-unknown-linux-gnu 2>&1
basic-6.2-latest: Pulling from finestructure/spi-images
Digest: sha256:f81a7bd7aa87a0f81848d48c5bcc03f5f78deebd37fa5f9be9913077205d3687
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.2-latest
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-24593BA9C3E375BF.txt
[3/18] Emitting module LilHTML
/host/spi-builder-workspace/Sources/LilHTML/Selectar.swift:11:21: warning: conformance of 'Array<Element>' to protocol 'Sendable' conflicts with that stated in the type's module 'Swift' and will be ignored; there cannot be more than one conformance, even with different conditional bounds
9 |
10 | public typealias Selectar = [SelectarSegment]
11 | extension Selectar: Sendable {}
| `- warning: conformance of 'Array<Element>' to protocol 'Sendable' conflicts with that stated in the type's module 'Swift' and will be ignored; there cannot be more than one conformance, even with different conditional bounds
12 |
13 | public struct SelectarSegment: Sendable, Codable, Equatable, CustomDebugStringConvertible {
Swift.Array:1:11: note: 'Array<Element>' declares conformance to protocol 'Sendable' here
1 | extension Array : @unchecked Sendable where Element : Sendable {
| `- note: 'Array<Element>' declares conformance to protocol 'Sendable' here
2 | }
[4/20] Compiling LilHTML TagName.swift
[5/20] Compiling LilHTML TextNode.swift
[6/20] Compiling LilHTML MutableTextNode+Equatable.swift
[7/20] Compiling LilHTML MutableTextNode.swift
[8/20] Compiling LilHTML Node+DebugDescription.swift
[9/20] Compiling LilHTML Node.swift
[10/20] Compiling LilHTML ImmutableNode.swift
[11/20] Compiling LilHTML ImmutableTextNode.swift
[12/20] Compiling LilHTML HTML.swift
/host/spi-builder-workspace/Sources/LilHTML/HTML.swift:71:12: warning: reference to var 'xmlFree' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
69 | let attrName = currentProperty.name.string
70 | let attrValue = xmlNodeListGetString(htmlDocument, currentProperty.children, 1)
71 | defer { xmlFree(attrValue) }
| `- warning: reference to var 'xmlFree' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
72 |
73 | attributes[attrName] = attrValue?.string ?? ""
/usr/include/libxml2/libxml/globals.h:250:23: note: var declared here
248 | XMLPUBVAR xmlMallocFunc xmlMallocAtomic;
249 | XMLPUBVAR xmlReallocFunc xmlRealloc;
250 | XMLPUBVAR xmlFreeFunc xmlFree;
| `- note: var declared here
251 | XMLPUBVAR xmlStrdupFunc xmlMemStrdup;
252 | #endif /* LIBXML_THREAD_ALLOC_ENABLED */
[13/20] Compiling LilHTML ImmutableElementNode.swift
/host/spi-builder-workspace/Sources/LilHTML/HTML.swift:71:12: warning: reference to var 'xmlFree' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
69 | let attrName = currentProperty.name.string
70 | let attrValue = xmlNodeListGetString(htmlDocument, currentProperty.children, 1)
71 | defer { xmlFree(attrValue) }
| `- warning: reference to var 'xmlFree' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
72 |
73 | attributes[attrName] = attrValue?.string ?? ""
/usr/include/libxml2/libxml/globals.h:250:23: note: var declared here
248 | XMLPUBVAR xmlMallocFunc xmlMallocAtomic;
249 | XMLPUBVAR xmlReallocFunc xmlRealloc;
250 | XMLPUBVAR xmlFreeFunc xmlFree;
| `- note: var declared here
251 | XMLPUBVAR xmlStrdupFunc xmlMemStrdup;
252 | #endif /* LIBXML_THREAD_ALLOC_ENABLED */
[14/20] Compiling LilHTML MutableElementNode.swift
/host/spi-builder-workspace/Sources/LilHTML/MutableElementNode.swift:92:8: warning: result of call to 'remove()' is unused [#no-usage]
90 |
91 | public func appendChild(_ node: any MutableNode) {
92 | node.remove()
| `- warning: result of call to 'remove()' is unused [#no-usage]
93 | node.parent = self
94 | node.position = childNodes.count
[15/20] Compiling LilHTML MutableNode.swift
/host/spi-builder-workspace/Sources/LilHTML/MutableElementNode.swift:92:8: warning: result of call to 'remove()' is unused [#no-usage]
90 |
91 | public func appendChild(_ node: any MutableNode) {
92 | node.remove()
| `- warning: result of call to 'remove()' is unused [#no-usage]
93 | node.parent = self
94 | node.position = childNodes.count
[16/20] Compiling LilHTML ParserDelegate.swift
/host/spi-builder-workspace/Sources/LilHTML/Selectar.swift:11:21: warning: conformance of 'Array<Element>' to protocol 'Sendable' conflicts with that stated in the type's module 'Swift' and will be ignored; there cannot be more than one conformance, even with different conditional bounds
9 |
10 | public typealias Selectar = [SelectarSegment]
11 | extension Selectar: Sendable {}
| `- warning: conformance of 'Array<Element>' to protocol 'Sendable' conflicts with that stated in the type's module 'Swift' and will be ignored; there cannot be more than one conformance, even with different conditional bounds
12 |
13 | public struct SelectarSegment: Sendable, Codable, Equatable, CustomDebugStringConvertible {
Swift.Array:1:11: note: 'Array<Element>' declares conformance to protocol 'Sendable' here
1 | extension Array : @unchecked Sendable where Element : Sendable {
| `- note: 'Array<Element>' declares conformance to protocol 'Sendable' here
2 | }
[17/20] Compiling LilHTML Selectar.swift
/host/spi-builder-workspace/Sources/LilHTML/Selectar.swift:11:21: warning: conformance of 'Array<Element>' to protocol 'Sendable' conflicts with that stated in the type's module 'Swift' and will be ignored; there cannot be more than one conformance, even with different conditional bounds
9 |
10 | public typealias Selectar = [SelectarSegment]
11 | extension Selectar: Sendable {}
| `- warning: conformance of 'Array<Element>' to protocol 'Sendable' conflicts with that stated in the type's module 'Swift' and will be ignored; there cannot be more than one conformance, even with different conditional bounds
12 |
13 | public struct SelectarSegment: Sendable, Codable, Equatable, CustomDebugStringConvertible {
Swift.Array:1:11: note: 'Array<Element>' declares conformance to protocol 'Sendable' here
1 | extension Array : @unchecked Sendable where Element : Sendable {
| `- note: 'Array<Element>' declares conformance to protocol 'Sendable' here
2 | }
[18/20] Compiling LilHTML AttributeValue.swift
[19/20] Compiling LilHTML Element+Equatable.swift
[20/20] Compiling LilHTML Element.swift
Build complete! (14.70s)
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "LilHTML",
"name" : "LilHTML",
"path" : "/host/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "14.0"
},
{
"name" : "ios",
"version" : "17.0"
}
],
"products" : [
{
"name" : "LilHTML",
"targets" : [
"LilHTML"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "libxml2",
"module_type" : "SystemLibraryTarget",
"name" : "libxml2",
"path" : "Sources/libxml2",
"product_memberships" : [
"LilHTML"
],
"sources" : [
],
"type" : "system-target"
},
{
"c99name" : "LilParserTests",
"module_type" : "SwiftTarget",
"name" : "LilParserTests",
"path" : "Tests/LilParserTests",
"resources" : [
{
"path" : "/host/spi-builder-workspace/Tests/LilParserTests/Resources/basic.html",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Tests/LilParserTests/Resources/musicradar.html",
"rule" : {
"process" : {
}
}
}
],
"sources" : [
"ParserTests.swift",
"SelectorTests.swift"
],
"target_dependencies" : [
"LilHTML"
],
"type" : "test"
},
{
"c99name" : "LilHTML",
"module_type" : "SwiftTarget",
"name" : "LilHTML",
"path" : "Sources/LilHTML",
"product_memberships" : [
"LilHTML"
],
"sources" : [
"AttributeValue.swift",
"Element+Equatable.swift",
"Element.swift",
"HTML.swift",
"ImmutableElementNode.swift",
"ImmutableNode.swift",
"ImmutableTextNode.swift",
"MutableElementNode.swift",
"MutableNode.swift",
"MutableTextNode+Equatable.swift",
"MutableTextNode.swift",
"Node+DebugDescription.swift",
"Node.swift",
"ParserDelegate.swift",
"Selectar.swift",
"TagName.swift",
"TextNode.swift"
],
"target_dependencies" : [
"libxml2"
],
"type" : "library"
}
],
"tools_version" : "5.10"
}
basic-6.2-latest: Pulling from finestructure/spi-images
Digest: sha256:f81a7bd7aa87a0f81848d48c5bcc03f5f78deebd37fa5f9be9913077205d3687
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.2-latest
Done.