Build Information
Successful build of swift-blocks, reference main (27c641), with Swift 6.2 for Linux on 26 Feb 2026 20:49:43 UTC.
Swift 6 data race errors: 0
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4609320-2":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" 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.68.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/dirtyhenry/swift-blocks.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/dirtyhenry/swift-blocks
* branch main -> FETCH_HEAD
* [new branch] main -> origin/main
HEAD is now at 27c6417 Merge pull request #130 from dirtyhenry/improve-cli-utils
Cloned https://github.com/dirtyhenry/swift-blocks.git
Revision (git rev-parse @):
27c641703d879dbe9aa826a6c39b55f1f452ee44
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/dirtyhenry/swift-blocks.git at main
========================================
Build
========================================
Selected platform: linux
Swift version: 6.2
Building package at path: $PWD
https://github.com/dirtyhenry/swift-blocks.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-2":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" 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:257b0ae9749b4eea8553a58f7bf60a672611c061e9b845ccfee371e7c1138ce8
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/45] Emitting module Blocks
[4/45] Compiling Blocks BlocksError.swift
[5/45] Compiling Blocks CLIUtils.swift
[6/45] Compiling Blocks String+StyledText.swift
[7/45] Compiling Blocks StyledText+Properties.swift
[8/45] Compiling Blocks StyledText.swift
[9/45] Compiling Blocks ICalendar.swift
[10/50] Compiling Blocks Arithmetic.swift
[11/50] Compiling Blocks PackageDump.swift
[12/50] Compiling Blocks PrivateIPAddresses.swift
[13/50] Compiling Blocks Pasteboard.swift
[14/50] Compiling Blocks PlainDate.swift
[15/50] Compiling Blocks GenericPasswordKeychainItem.swift
[16/50] Compiling Blocks PKCE.swift
/host/spi-builder-workspace/Sources/Blocks/Transport/Endpoint.swift:191:13: warning: capture of non-Sendable type 'A.Type' in an isolated closure [#SendableMetatypes]
189 | ) {
190 | self.init(method, url: url, accept: accept, body: nil, headers: headers, query: query) { data, _ in
191 | Result {
| `- warning: capture of non-Sendable type 'A.Type' in an isolated closure [#SendableMetatypes]
192 | guard let dat = data else { throw NoDataError() }
193 | return try decoder.decode(A.self, from: dat)
/host/spi-builder-workspace/Sources/Blocks/Transport/Endpoint.swift:221:13: warning: capture of non-Sendable type 'A.Type' in an isolated closure [#SendableMetatypes]
219 | let b = body.map { try! encoder.encode($0) }
220 | self.init(method, url: url, accept: accept, contentType: .json, body: b, headers: headers, query: query) { data, _ in
221 | Result {
| `- warning: capture of non-Sendable type 'A.Type' in an isolated closure [#SendableMetatypes]
222 | guard let dat = data else { throw NoDataError() }
223 | return try decoder.decode(A.self, from: dat)
[#SendableMetatypes]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-metatypes>
[17/50] Compiling Blocks SecurityError.swift
/host/spi-builder-workspace/Sources/Blocks/Transport/Endpoint.swift:191:13: warning: capture of non-Sendable type 'A.Type' in an isolated closure [#SendableMetatypes]
189 | ) {
190 | self.init(method, url: url, accept: accept, body: nil, headers: headers, query: query) { data, _ in
191 | Result {
| `- warning: capture of non-Sendable type 'A.Type' in an isolated closure [#SendableMetatypes]
192 | guard let dat = data else { throw NoDataError() }
193 | return try decoder.decode(A.self, from: dat)
/host/spi-builder-workspace/Sources/Blocks/Transport/Endpoint.swift:221:13: warning: capture of non-Sendable type 'A.Type' in an isolated closure [#SendableMetatypes]
219 | let b = body.map { try! encoder.encode($0) }
220 | self.init(method, url: url, accept: accept, contentType: .json, body: b, headers: headers, query: query) { data, _ in
221 | Result {
| `- warning: capture of non-Sendable type 'A.Type' in an isolated closure [#SendableMetatypes]
222 | guard let dat = data else { throw NoDataError() }
223 | return try decoder.decode(A.self, from: dat)
[#SendableMetatypes]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-metatypes>
[18/50] Compiling Blocks SecurityUtils.swift
/host/spi-builder-workspace/Sources/Blocks/Transport/Endpoint.swift:191:13: warning: capture of non-Sendable type 'A.Type' in an isolated closure [#SendableMetatypes]
189 | ) {
190 | self.init(method, url: url, accept: accept, body: nil, headers: headers, query: query) { data, _ in
191 | Result {
| `- warning: capture of non-Sendable type 'A.Type' in an isolated closure [#SendableMetatypes]
192 | guard let dat = data else { throw NoDataError() }
193 | return try decoder.decode(A.self, from: dat)
/host/spi-builder-workspace/Sources/Blocks/Transport/Endpoint.swift:221:13: warning: capture of non-Sendable type 'A.Type' in an isolated closure [#SendableMetatypes]
219 | let b = body.map { try! encoder.encode($0) }
220 | self.init(method, url: url, accept: accept, contentType: .json, body: b, headers: headers, query: query) { data, _ in
221 | Result {
| `- warning: capture of non-Sendable type 'A.Type' in an isolated closure [#SendableMetatypes]
222 | guard let dat = data else { throw NoDataError() }
223 | return try decoder.decode(A.self, from: dat)
[#SendableMetatypes]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-metatypes>
[19/50] Compiling Blocks SimpleMessageError.swift
/host/spi-builder-workspace/Sources/Blocks/Transport/Endpoint.swift:191:13: warning: capture of non-Sendable type 'A.Type' in an isolated closure [#SendableMetatypes]
189 | ) {
190 | self.init(method, url: url, accept: accept, body: nil, headers: headers, query: query) { data, _ in
191 | Result {
| `- warning: capture of non-Sendable type 'A.Type' in an isolated closure [#SendableMetatypes]
192 | guard let dat = data else { throw NoDataError() }
193 | return try decoder.decode(A.self, from: dat)
/host/spi-builder-workspace/Sources/Blocks/Transport/Endpoint.swift:221:13: warning: capture of non-Sendable type 'A.Type' in an isolated closure [#SendableMetatypes]
219 | let b = body.map { try! encoder.encode($0) }
220 | self.init(method, url: url, accept: accept, contentType: .json, body: b, headers: headers, query: query) { data, _ in
221 | Result {
| `- warning: capture of non-Sendable type 'A.Type' in an isolated closure [#SendableMetatypes]
222 | guard let dat = data else { throw NoDataError() }
223 | return try decoder.decode(A.self, from: dat)
[#SendableMetatypes]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-metatypes>
[20/50] Compiling Blocks Sitemap.swift
/host/spi-builder-workspace/Sources/Blocks/Transport/Endpoint.swift:191:13: warning: capture of non-Sendable type 'A.Type' in an isolated closure [#SendableMetatypes]
189 | ) {
190 | self.init(method, url: url, accept: accept, body: nil, headers: headers, query: query) { data, _ in
191 | Result {
| `- warning: capture of non-Sendable type 'A.Type' in an isolated closure [#SendableMetatypes]
192 | guard let dat = data else { throw NoDataError() }
193 | return try decoder.decode(A.self, from: dat)
/host/spi-builder-workspace/Sources/Blocks/Transport/Endpoint.swift:221:13: warning: capture of non-Sendable type 'A.Type' in an isolated closure [#SendableMetatypes]
219 | let b = body.map { try! encoder.encode($0) }
220 | self.init(method, url: url, accept: accept, contentType: .json, body: b, headers: headers, query: query) { data, _ in
221 | Result {
| `- warning: capture of non-Sendable type 'A.Type' in an isolated closure [#SendableMetatypes]
222 | guard let dat = data else { throw NoDataError() }
223 | return try decoder.decode(A.self, from: dat)
[#SendableMetatypes]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-metatypes>
[21/50] Compiling Blocks Endpoint.swift
/host/spi-builder-workspace/Sources/Blocks/Transport/Endpoint.swift:191:13: warning: capture of non-Sendable type 'A.Type' in an isolated closure [#SendableMetatypes]
189 | ) {
190 | self.init(method, url: url, accept: accept, body: nil, headers: headers, query: query) { data, _ in
191 | Result {
| `- warning: capture of non-Sendable type 'A.Type' in an isolated closure [#SendableMetatypes]
192 | guard let dat = data else { throw NoDataError() }
193 | return try decoder.decode(A.self, from: dat)
/host/spi-builder-workspace/Sources/Blocks/Transport/Endpoint.swift:221:13: warning: capture of non-Sendable type 'A.Type' in an isolated closure [#SendableMetatypes]
219 | let b = body.map { try! encoder.encode($0) }
220 | self.init(method, url: url, accept: accept, contentType: .json, body: b, headers: headers, query: query) { data, _ in
221 | Result {
| `- warning: capture of non-Sendable type 'A.Type' in an isolated closure [#SendableMetatypes]
222 | guard let dat = data else { throw NoDataError() }
223 | return try decoder.decode(A.self, from: dat)
[#SendableMetatypes]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-metatypes>
[22/50] Compiling Blocks LoggingTransport.swift
[23/50] Compiling Blocks MailtoComponents.swift
[24/50] Compiling Blocks MockTransport.swift
[25/50] Compiling Blocks MultipartRequest.swift
[26/50] Compiling Blocks RetryTransport.swift
[27/50] Compiling Blocks StatusCodeCheckingTransport.swift
[28/50] Compiling Blocks TaskState.swift
[29/50] Compiling Blocks Transport.swift
[30/50] Compiling Blocks TransportError.swift
[31/50] Compiling Blocks URLRequestHeaderItem.swift
[32/50] Compiling Blocks LabeledTextField.swift
[33/50] Compiling Blocks PlainDatePicker.swift
[34/50] Compiling Blocks CopyUtils.swift
[35/50] Compiling Blocks DataFormatter.swift
[36/50] Compiling Blocks Bundle.swift
[37/50] Compiling Blocks Calendar.swift
[38/50] Compiling Blocks Data.swift
[39/50] Compiling Blocks Font.swift
[40/50] Compiling Blocks JSONDecoder.swift
[41/50] Compiling Blocks JSONEncoder.swift
[42/50] Compiling Blocks StringProtocol.swift
[43/50] Compiling Blocks URLComponents.swift
[44/50] Compiling Blocks JSON.swift
[45/50] Compiling Blocks JavaScriptISO8601DateFormatter.swift
[46/50] Compiling Blocks TaskStateButton.swift
[47/50] Compiling Blocks WatchPairingUtil.swift
[48/50] Compiling Blocks FrontMatter.swift
[49/50] Compiling Blocks JSONFeed.swift
[50/50] Compiling Blocks OpenGraph.swift
Build complete! (12.54s)
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "swift-blocks",
"name" : "swift-blocks",
"path" : "/host/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "10.15"
},
{
"name" : "ios",
"version" : "13.0"
},
{
"name" : "tvos",
"version" : "15.0"
},
{
"name" : "watchos",
"version" : "8.0"
}
],
"products" : [
{
"name" : "Blocks",
"targets" : [
"Blocks"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "BlocksTests",
"module_type" : "SwiftTarget",
"name" : "BlocksTests",
"path" : "Tests/BlocksTests",
"resources" : [
{
"path" : "/host/spi-builder-workspace/Tests/BlocksTests/Resources/dump-package.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Tests/BlocksTests/Resources/sample-feed.json",
"rule" : {
"process" : {
}
}
}
],
"sources" : [
"BundleExtensionTests.swift",
"CLIUtils/StyledTextTests.swift",
"CopyUtilsTests.swift",
"DataFormatterTests.swift",
"ExtensionTests.swift",
"Extensions/StringProtocolTests.swift",
"Helpers/DummyURLRequest.swift",
"Helpers/XCTest+Workaround.swift",
"Helpers/XCTestCase+CI.swift",
"ICalendarTests.swift",
"JSONTests.swift",
"JavaScriptISO8601DateFormatterTests.swift",
"Maths/ArithmeticTests.swift",
"PackageDumpTests.swift",
"PasteboardTests.swift",
"PlainDateTests.swift",
"Security/PKCETests.swift",
"Security/SecurityErrorTests.swift",
"Security/SecurityUtilsTests.swift",
"SitemapTests.swift",
"Transport/EndpointTests.swift",
"Transport/LoggingTransportTests.swift",
"Transport/MailtoComponentsTests.swift",
"Transport/RetryTransportTests.swift",
"Transport/StatusCodeCheckingTransportTests.swift",
"Transport/URLLoadingSystemErrorCodesTests.swift",
"Transport/URLRequestHeaderItemTests.swift",
"Web/FrontMatterTests.swift",
"Web/JSONFeedTests.swift"
],
"target_dependencies" : [
"Blocks"
],
"type" : "test"
},
{
"c99name" : "Blocks",
"module_type" : "SwiftTarget",
"name" : "Blocks",
"path" : "Sources/Blocks",
"product_memberships" : [
"Blocks"
],
"sources" : [
"BlocksError.swift",
"CLIUtils/CLIUtils.swift",
"CLIUtils/String+StyledText.swift",
"CLIUtils/StyledText+Properties.swift",
"CLIUtils/StyledText.swift",
"Calendar/ICalendar.swift",
"CopyUtils.swift",
"DataFormatter.swift",
"Extensions/Bundle.swift",
"Extensions/Calendar.swift",
"Extensions/Data.swift",
"Extensions/Font.swift",
"Extensions/JSONDecoder.swift",
"Extensions/JSONEncoder.swift",
"Extensions/StringProtocol.swift",
"Extensions/URLComponents.swift",
"JSON.swift",
"JavaScriptISO8601DateFormatter.swift",
"Maths/Arithmetic.swift",
"Meta/PackageDump.swift",
"Network/PrivateIPAddresses.swift",
"Pasteboard.swift",
"PlainDate.swift",
"Security/GenericPasswordKeychainItem.swift",
"Security/PKCE.swift",
"Security/SecurityError.swift",
"Security/SecurityUtils.swift",
"SimpleMessageError.swift",
"Sitemap.swift",
"Transport/Endpoint.swift",
"Transport/LoggingTransport.swift",
"Transport/MailtoComponents.swift",
"Transport/MockTransport.swift",
"Transport/MultipartRequest.swift",
"Transport/RetryTransport.swift",
"Transport/StatusCodeCheckingTransport.swift",
"Transport/TaskState.swift",
"Transport/Transport.swift",
"Transport/TransportError.swift",
"Transport/URLRequestHeaderItem.swift",
"UIComponents/LabeledTextField.swift",
"UIComponents/PlainDatePicker.swift",
"UIComponents/TaskStateButton.swift",
"Watch/WatchPairingUtil.swift",
"Web/FrontMatter.swift",
"Web/JSONFeed.swift",
"Web/OpenGraph.swift"
],
"type" : "library"
}
],
"tools_version" : "6.0"
}
basic-6.2-latest: Pulling from finestructure/spi-images
Digest: sha256:257b0ae9749b4eea8553a58f7bf60a672611c061e9b845ccfee371e7c1138ce8
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.2-latest
Done.