The Swift Package Index logo.Swift Package Index

Build Information

Successful build of Result, reference 5.0.0 (12920a), with Swift 6.1 for Wasm on 27 May 2025 12:16:52 UTC.

Swift 6 data race errors: 0

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4606859-3":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.63.1
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/antitypical/Result.git
Reference: 5.0.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/antitypical/Result
 * tag               5.0.0      -> FETCH_HEAD
HEAD is now at 12920a5 Merge pull request #286 from antitypical/release-5.0
Cloned https://github.com/antitypical/Result.git
Revision (git rev-parse @):
12920a5c2595926efab9274d6003e29f503dbb66
SUCCESS checkout https://github.com/antitypical/Result.git at 5.0.0
========================================
Build
========================================
Selected platform:         wasm
Swift version:             6.1
Building package at path:  $PWD
https://github.com/antitypical/Result.git
https://github.com/antitypical/Result.git
WARNING: environment variable SUPPRESS_SWIFT_6_FLAGS is not set
{
  "dependencies" : [
  ],
  "manifest_display_name" : "Result",
  "name" : "Result",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "Result",
      "targets" : [
        "Result"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "swift_languages_versions" : [
    "4",
    "4.2",
    "5"
  ],
  "targets" : [
    {
      "c99name" : "ResultTests",
      "module_type" : "SwiftTarget",
      "name" : "ResultTests",
      "path" : "Tests/ResultTests",
      "sources" : [
        "AnyErrorTests.swift",
        "NoErrorTests.swift",
        "ResultTests.swift",
        "XCTestManifests.swift"
      ],
      "target_dependencies" : [
        "Result"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Result",
      "module_type" : "SwiftTarget",
      "name" : "Result",
      "path" : "Result",
      "product_memberships" : [
        "Result"
      ],
      "sources" : [
        "AnyError.swift",
        "NoError.swift",
        "Result.swift",
        "ResultProtocol.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.0"
}
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-3":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures 2>&1
wasm-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:059e0fdbe549369b902c0d423739510ddee50a4a70258d1404125eb9394ef31c
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-24593BA9C3E375BF.txt
[3/7] Compiling Result Result.swift
/host/spi-builder-workspace/Result/Result.swift:146:1: warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
144 | }
145 |
146 | extension Result: CustomStringConvertible {
    | |- warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
147 | 	public var description: String {
148 | 		switch self {
/host/spi-builder-workspace/Result/Result.swift:155:1: warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
153 | }
154 |
155 | extension Result: CustomDebugStringConvertible {
    | |- warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
156 | 	public var debugDescription: String {
157 | 		return description
[4/7] Compiling Result ResultProtocol.swift
[5/7] Compiling Result NoError.swift
/host/spi-builder-workspace/Result/NoError.swift:10:3: warning: will never be executed
 7 | @available(*, deprecated, message: "Use `Swift.Never` instead", renamed: "Never")
 8 | public enum NoError: Swift.Error, Equatable {
 9 | 	public static func ==(lhs: NoError, rhs: NoError) -> Bool {
   |                                                            `- note: 'lhs' is of type 'NoError' which cannot be constructed because it is an enum with no cases
10 | 		return true
   |   `- warning: will never be executed
11 | 	}
12 | }
[6/7] Emitting module Result
/host/spi-builder-workspace/Result/Result.swift:146:1: warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
144 | }
145 |
146 | extension Result: CustomStringConvertible {
    | |- warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
147 | 	public var description: String {
148 | 		switch self {
/host/spi-builder-workspace/Result/Result.swift:155:1: warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
153 | }
154 |
155 | extension Result: CustomDebugStringConvertible {
    | |- warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
156 | 	public var debugDescription: String {
157 | 		return description
[7/7] Compiling Result AnyError.swift
Build complete! (6.10s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "Result",
  "name" : "Result",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "Result",
      "targets" : [
        "Result"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "swift_languages_versions" : [
    "4",
    "4.2",
    "5"
  ],
  "targets" : [
    {
      "c99name" : "ResultTests",
      "module_type" : "SwiftTarget",
      "name" : "ResultTests",
      "path" : "Tests/ResultTests",
      "sources" : [
        "AnyErrorTests.swift",
        "NoErrorTests.swift",
        "ResultTests.swift",
        "XCTestManifests.swift"
      ],
      "target_dependencies" : [
        "Result"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Result",
      "module_type" : "SwiftTarget",
      "name" : "Result",
      "path" : "Result",
      "product_memberships" : [
        "Result"
      ],
      "sources" : [
        "AnyError.swift",
        "NoError.swift",
        "Result.swift",
        "ResultProtocol.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.0"
}
wasm-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:059e0fdbe549369b902c0d423739510ddee50a4a70258d1404125eb9394ef31c
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest
Done.