The Swift Package Index logo.Swift Package Index

Build Information

Successful build of swift-blocks, reference 0.9.0 (cf03a8), with Swift 6.3 for Linux on 18 Apr 2026 04:55:10 UTC.

Swift 6 data race errors: 0

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4606859-2":/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.3-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/dirtyhenry/swift-blocks.git
Reference: 0.9.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/dirtyhenry/swift-blocks
 * tag               0.9.0      -> FETCH_HEAD
HEAD is now at cf03a8d Merge pull request #129 from dirtyhenry/release-0.9.0
Cloned https://github.com/dirtyhenry/swift-blocks.git
Revision (git rev-parse @):
cf03a8d75b895b2f1b05da44810ffbb85041af54
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/dirtyhenry/swift-blocks.git at 0.9.0
========================================
Build
========================================
Selected platform:         linux
Swift version:             6.3
Building package at path:  $PWD
https://github.com/dirtyhenry/swift-blocks.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-2":/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.3-latest swift build --triple x86_64-unknown-linux-gnu 2>&1
basic-6.3-latest: Pulling from swiftpackageindex/spi-images
Digest: sha256:5a7d791d2ead8a924b1292cb31bf3288eabcfe8880e0b005b00b45b71a5bc36a
Status: Image is up to date for registry.gitlab.com/swiftpackageindex/spi-images:basic-6.3-latest
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-24593BA9C3E375BF.txt
[3/42] Emitting module Blocks
[4/47] Compiling Blocks TaskStateButton.swift
[5/47] Compiling Blocks WatchPairingUtil.swift
[6/47] Compiling Blocks FrontMatter.swift
[7/47] Compiling Blocks JSONFeed.swift
[8/47] Compiling Blocks OpenGraph.swift
[9/47] Compiling Blocks URLComponents.swift
[10/47] Compiling Blocks JSON.swift
[11/47] Compiling Blocks JavaScriptISO8601DateFormatter.swift
[12/47] Compiling Blocks Arithmetic.swift
[13/47] Compiling Blocks PackageDump.swift
[14/47] Compiling Blocks PrivateIPAddresses.swift
[15/47] Compiling Blocks Transport.swift
[16/47] Compiling Blocks TransportError.swift
[17/47] Compiling Blocks URLRequestHeaderItem.swift
[18/47] Compiling Blocks LabeledTextField.swift
[19/47] Compiling Blocks PlainDatePicker.swift
[20/47] Compiling Blocks BlocksError.swift
[21/47] Compiling Blocks CLIUtils.swift
[22/47] Compiling Blocks ICalendar.swift
[23/47] Compiling Blocks CopyUtils.swift
[24/47] Compiling Blocks DataFormatter.swift
[25/47] Compiling Blocks Bundle.swift
[26/47] Compiling Blocks Pasteboard.swift
[27/47] Compiling Blocks PlainDate.swift
[28/47] Compiling Blocks GenericPasswordKeychainItem.swift
[29/47] Compiling Blocks PKCE.swift
[30/47] Compiling Blocks SecurityError.swift
[31/47] Compiling Blocks SecurityUtils.swift
[32/47] Compiling Blocks MockTransport.swift
[33/47] Compiling Blocks MultipartRequest.swift
[34/47] Compiling Blocks RetryTransport.swift
[35/47] Compiling Blocks StatusCodeCheckingTransport.swift
[36/47] Compiling Blocks TaskState.swift
[37/47] Compiling Blocks Calendar.swift
[38/47] Compiling Blocks Data.swift
[39/47] Compiling Blocks Font.swift
[40/47] Compiling Blocks JSONDecoder.swift
[41/47] Compiling Blocks JSONEncoder.swift
[42/47] Compiling Blocks StringProtocol.swift
[43/47] 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>
[44/47] 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>
[45/47] 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>
[46/47] Compiling Blocks LoggingTransport.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>
[47/47] Compiling Blocks MailtoComponents.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>
Build complete! (36.39s)
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",
        "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",
        "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.3-latest: Pulling from swiftpackageindex/spi-images
Digest: sha256:5a7d791d2ead8a924b1292cb31bf3288eabcfe8880e0b005b00b45b71a5bc36a
Status: Image is up to date for registry.gitlab.com/swiftpackageindex/spi-images:basic-6.3-latest
Done.