Build Information
Successful build of LilHTML, reference main (93672d), with Swift 6.3 for macOS (SPM) on 14 Apr 2026 17:48:27 UTC.
Swift 6 data race errors: 0
Build Command
env DEVELOPER_DIR=/Applications/Xcode-26.4.0.app xcrun swift build --arch arm64Build Log
========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/nakajima/LilHTML.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/nakajima/LilHTML
* branch main -> FETCH_HEAD
* [new branch] main -> origin/main
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 main
========================================
ResolveProductDependencies
========================================
Resolving dependencies ...
{
"identity": ".resolve-product-dependencies",
"name": "resolve-dependencies",
"url": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
"version": "unspecified",
"path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
"traits": [
"default"
],
"dependencies": [
{
"identity": "lilhtml",
"name": "LilHTML",
"url": "https://github.com/nakajima/LilHTML.git",
"version": "unspecified",
"path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/LilHTML",
"traits": [
"default"
],
"dependencies": [
]
}
]
}
Fetching https://github.com/nakajima/LilHTML.git
[1/293] Fetching lilhtml
Fetched https://github.com/nakajima/LilHTML.git from cache (0.73s)
Creating working copy for https://github.com/nakajima/LilHTML.git
Working copy of https://github.com/nakajima/LilHTML.git resolved at main (93672d6)
warning: '.resolve-product-dependencies': dependency 'lilhtml' is not used by any target
Found 0 product dependencies
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.3
Building package at path: $PWD
https://github.com/nakajima/LilHTML.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.4.0.app xcrun swift build --arch arm64
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version--6988338F2F200930.txt
[3/19] Compiling LilHTML TagName.swift
[4/19] Compiling LilHTML Node.swift
[5/19] Compiling LilHTML ParserDelegate.swift
[6/20] Compiling LilHTML MutableNode.swift
[7/20] Compiling LilHTML MutableTextNode+Equatable.swift
[8/20] Compiling LilHTML ImmutableTextNode.swift
/Users/admin/builder/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
[9/20] Compiling LilHTML MutableElementNode.swift
/Users/admin/builder/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
[10/20] Compiling LilHTML MutableTextNode.swift
[11/20] Compiling LilHTML Node+DebugDescription.swift
[12/20] Compiling LilHTML ImmutableElementNode.swift
[13/20] Compiling LilHTML ImmutableNode.swift
[14/20] Emitting module LilHTML
/Users/admin/builder/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 | }
[15/20] Compiling LilHTML Element.swift
/Users/admin/builder/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 ?? ""
/Applications/Xcode-26.4.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/libxml/globals.h:257:23: note: var declared here
255 | XMLPUBVAR xmlMallocFunc xmlMallocAtomic LIBXML_API_DEPRECATED_MEMORY_ALLOCATION_FUNCTIONS;
256 | XMLPUBVAR xmlReallocFunc xmlRealloc LIBXML_API_DEPRECATED_MEMORY_ALLOCATION_FUNCTIONS;
257 | XMLPUBVAR xmlFreeFunc xmlFree;
| `- note: var declared here
258 | XMLPUBVAR xmlStrdupFunc xmlMemStrdup LIBXML_API_DEPRECATED_MEMORY_ALLOCATION_FUNCTIONS;
259 | #endif /* LIBXML_THREAD_ALLOC_ENABLED */
[16/20] Compiling LilHTML HTML.swift
/Users/admin/builder/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 ?? ""
/Applications/Xcode-26.4.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.4.sdk/usr/include/libxml/globals.h:257:23: note: var declared here
255 | XMLPUBVAR xmlMallocFunc xmlMallocAtomic LIBXML_API_DEPRECATED_MEMORY_ALLOCATION_FUNCTIONS;
256 | XMLPUBVAR xmlReallocFunc xmlRealloc LIBXML_API_DEPRECATED_MEMORY_ALLOCATION_FUNCTIONS;
257 | XMLPUBVAR xmlFreeFunc xmlFree;
| `- note: var declared here
258 | XMLPUBVAR xmlStrdupFunc xmlMemStrdup LIBXML_API_DEPRECATED_MEMORY_ALLOCATION_FUNCTIONS;
259 | #endif /* LIBXML_THREAD_ALLOC_ENABLED */
[17/20] Compiling LilHTML AttributeValue.swift
[18/20] Compiling LilHTML Element+Equatable.swift
[19/20] Compiling LilHTML Selectar.swift
/Users/admin/builder/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 | }
[20/20] Compiling LilHTML TextNode.swift
Build complete! (5.08s)
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "LilHTML",
"name" : "LilHTML",
"path" : "/Users/admin/builder/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",
"sources" : [
],
"type" : "system-target"
},
{
"c99name" : "LilParserTests",
"module_type" : "SwiftTarget",
"name" : "LilParserTests",
"path" : "Tests/LilParserTests",
"resources" : [
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/LilParserTests/Resources/basic.html",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/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"
],
"type" : "library"
}
],
"tools_version" : "5.10"
}
Done.