The Swift Package Index logo.Swift Package Index

Build Information

Failed to build swift-network-request, reference 0.1.0 (8cf48a), with Swift 6.1 for Wasm on 29 Jul 2025 14:26:18 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4606859-2":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/vadimkrutovlv/swift-network-request.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/vadimkrutovlv/swift-network-request
 * tag               0.1.0      -> FETCH_HEAD
HEAD is now at 8cf48a9 Initial commit
Cloned https://github.com/vadimkrutovlv/swift-network-request.git
Revision (git rev-parse @):
8cf48a9822d49595943ff3337c1eee4b0427a495
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/vadimkrutovlv/swift-network-request.git at 0.1.0
========================================
Build
========================================
Selected platform:         wasm
Swift version:             6.1
Building package at path:  $PWD
https://github.com/vadimkrutovlv/swift-network-request.git
https://github.com/vadimkrutovlv/swift-network-request.git
WARNING: environment variable SUPPRESS_SWIFT_6_FLAGS is not set
{
  "dependencies" : [
    {
      "identity" : "swift-syntax",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "601.0.1",
            "upper_bound" : "602.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/swiftlang/swift-syntax.git"
    },
    {
      "identity" : "swift-macro-testing",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.6.3",
            "upper_bound" : "1.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/pointfreeco/swift-macro-testing"
    },
    {
      "identity" : "swift-dependencies",
      "requirement" : {
        "exact" : [
          "1.9.2"
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/pointfreeco/swift-dependencies"
    },
    {
      "identity" : "swift-docc-plugin",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.1.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/swiftlang/swift-docc-plugin"
    }
  ],
  "manifest_display_name" : "swift-network-request",
  "name" : "swift-network-request",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "13.0"
    },
    {
      "name" : "ios",
      "version" : "15.0"
    },
    {
      "name" : "tvos",
      "version" : "13.0"
    },
    {
      "name" : "watchos",
      "version" : "8.0"
    }
  ],
  "products" : [
    {
      "name" : "SwiftNetworkRequest",
      "targets" : [
        "SwiftNetworkRequest"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "SwiftNetworkRequestMacros",
      "targets" : [
        "SwiftNetworkRequestMacros"
      ],
      "type" : {
        "macro" : null
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "SwiftNetworkRequestTests",
      "module_type" : "SwiftTarget",
      "name" : "SwiftNetworkRequestTests",
      "path" : "Tests/SwiftNetworkRequestTests",
      "product_dependencies" : [
        "SwiftSyntaxMacrosTestSupport",
        "MacroTesting"
      ],
      "sources" : [
        "BaseNetworkRequest.swift",
        "DefaultAuthorizationTests.swift",
        "DeleteMacroTests.swift",
        "DynamicResponsesTests.swift",
        "GetMacroTests.swift",
        "Mocks/URLSessionMock.swift",
        "PostMacroTests.swift",
        "PutMacroTests.swift"
      ],
      "target_dependencies" : [
        "SwiftNetworkRequest",
        "SwiftNetworkRequestMacros"
      ],
      "type" : "test"
    },
    {
      "c99name" : "SwiftNetworkRequestMacros",
      "module_type" : "SwiftTarget",
      "name" : "SwiftNetworkRequestMacros",
      "path" : "Sources/SwiftNetworkRequestMacros",
      "product_dependencies" : [
        "SwiftSyntaxMacros",
        "SwiftCompilerPlugin"
      ],
      "product_memberships" : [
        "SwiftNetworkRequest",
        "SwiftNetworkRequestMacros"
      ],
      "sources" : [
        "Helpers.swift",
        "Models.swift",
        "Plugin.swift",
        "RequestBuilder.swift",
        "RequestMacros.swift"
      ],
      "type" : "macro"
    },
    {
      "c99name" : "SwiftNetworkRequest",
      "module_type" : "SwiftTarget",
      "name" : "SwiftNetworkRequest",
      "path" : "Sources/SwiftNetworkRequest",
      "product_dependencies" : [
        "Dependencies"
      ],
      "product_memberships" : [
        "SwiftNetworkRequest"
      ],
      "sources" : [
        "DI/RequestAuthorization.swift",
        "DI/URLSession.swift",
        "Helpers/URLSession+Request.swift",
        "Macros/Delete.swift",
        "Macros/Get.swift",
        "Macros/HelperMacros.swift",
        "Macros/Post.swift",
        "Macros/Put.swift",
        "Models/DynamicAPIResponse.swift",
        "Models/KeyValuePair.swift",
        "Models/RequestConfig.swift"
      ],
      "target_dependencies" : [
        "SwiftNetworkRequestMacros"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "6.0"
}
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-2":/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 2>&1
wasm-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:8f9255989265d824b88e7d572b1a334a0dc9b701075ede1970390db95d315c35
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest
Fetching https://github.com/pointfreeco/swift-macro-testing
Fetching https://github.com/pointfreeco/swift-dependencies
Fetching https://github.com/swiftlang/swift-syntax.git
[1/908] Fetching swift-macro-testing
[909/72274] Fetching swift-macro-testing, swift-syntax
[910/78565] Fetching swift-macro-testing, swift-syntax, swift-dependencies
Fetching https://github.com/swiftlang/swift-docc-plugin
Fetched https://github.com/pointfreeco/swift-macro-testing from cache (1.11s)
Fetched https://github.com/pointfreeco/swift-dependencies from cache (1.11s)
[9278/71366] Fetching swift-syntax
[12134/73460] Fetching swift-syntax, swift-docc-plugin
Fetched https://github.com/swiftlang/swift-docc-plugin from cache (0.93s)
[21410/71366] Fetching swift-syntax
Fetched https://github.com/swiftlang/swift-syntax.git from cache (9.86s)
Computing version for https://github.com/pointfreeco/swift-dependencies
Computed https://github.com/pointfreeco/swift-dependencies at 1.9.2 (10.81s)
Fetching https://github.com/pointfreeco/swift-concurrency-extras
Fetching https://github.com/pointfreeco/xctest-dynamic-overlay
Fetching https://github.com/pointfreeco/combine-schedulers
Fetching https://github.com/pointfreeco/swift-clocks
[1/878] Fetching swift-concurrency-extras
[212/3288] Fetching swift-concurrency-extras, combine-schedulers
[705/4580] Fetching swift-concurrency-extras, combine-schedulers, swift-clocks
[4581/10062] Fetching swift-concurrency-extras, combine-schedulers, swift-clocks, xctest-dynamic-overlay
Fetched https://github.com/pointfreeco/swift-clocks from cache (0.47s)
[6304/8770] Fetching swift-concurrency-extras, combine-schedulers, xctest-dynamic-overlay
Fetched https://github.com/pointfreeco/combine-schedulers from cache (0.47s)
[4003/6360] Fetching swift-concurrency-extras, xctest-dynamic-overlay
Fetched https://github.com/pointfreeco/swift-concurrency-extras from cache (0.99s)
Fetched https://github.com/pointfreeco/xctest-dynamic-overlay from cache (1.01s)
Computing version for https://github.com/pointfreeco/swift-macro-testing
Computed https://github.com/pointfreeco/swift-macro-testing at 0.6.3 (1.96s)
Fetching https://github.com/pointfreeco/swift-snapshot-testing
[1/15341] Fetching swift-snapshot-testing
Fetched https://github.com/pointfreeco/swift-snapshot-testing from cache (4.19s)
Computing version for https://github.com/swiftlang/swift-syntax.git
Computed https://github.com/swiftlang/swift-syntax.git at 601.0.1 (8.11s)
Computing version for https://github.com/pointfreeco/combine-schedulers
Computed https://github.com/pointfreeco/combine-schedulers at 1.0.3 (0.98s)
Computing version for https://github.com/pointfreeco/swift-clocks
Computed https://github.com/pointfreeco/swift-clocks at 1.0.6 (0.88s)
Computing version for https://github.com/pointfreeco/swift-concurrency-extras
Computed https://github.com/pointfreeco/swift-concurrency-extras at 1.3.1 (0.56s)
Computing version for https://github.com/pointfreeco/xctest-dynamic-overlay
Computed https://github.com/pointfreeco/xctest-dynamic-overlay at 1.6.0 (0.73s)
Computing version for https://github.com/swiftlang/swift-docc-plugin
Computed https://github.com/swiftlang/swift-docc-plugin at 1.4.5 (0.87s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit
[1/3437] Fetching swift-docc-symbolkit
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (0.72s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (1.74s)
Computing version for https://github.com/pointfreeco/swift-snapshot-testing
Computed https://github.com/pointfreeco/swift-snapshot-testing at 1.18.6 (0.84s)
Fetching https://github.com/pointfreeco/swift-custom-dump
[1/4581] Fetching swift-custom-dump
Fetched https://github.com/pointfreeco/swift-custom-dump from cache (0.48s)
Computing version for https://github.com/pointfreeco/swift-custom-dump
Computed https://github.com/pointfreeco/swift-custom-dump at 1.3.3 (1.30s)
Creating working copy for https://github.com/pointfreeco/combine-schedulers
Working copy of https://github.com/pointfreeco/combine-schedulers resolved at 1.0.3
Creating working copy for https://github.com/pointfreeco/swift-snapshot-testing
Working copy of https://github.com/pointfreeco/swift-snapshot-testing resolved at 1.18.6
Creating working copy for https://github.com/swiftlang/swift-syntax.git
Working copy of https://github.com/swiftlang/swift-syntax.git resolved at 601.0.1
Creating working copy for https://github.com/swiftlang/swift-docc-symbolkit
Working copy of https://github.com/swiftlang/swift-docc-symbolkit resolved at 1.0.0
Creating working copy for https://github.com/pointfreeco/swift-macro-testing
Working copy of https://github.com/pointfreeco/swift-macro-testing resolved at 0.6.3
Creating working copy for https://github.com/pointfreeco/xctest-dynamic-overlay
Working copy of https://github.com/pointfreeco/xctest-dynamic-overlay resolved at 1.6.0
Creating working copy for https://github.com/pointfreeco/swift-clocks
Working copy of https://github.com/pointfreeco/swift-clocks resolved at 1.0.6
Creating working copy for https://github.com/pointfreeco/swift-dependencies
Working copy of https://github.com/pointfreeco/swift-dependencies resolved at 1.9.2
Creating working copy for https://github.com/pointfreeco/swift-custom-dump
Working copy of https://github.com/pointfreeco/swift-custom-dump resolved at 1.3.3
Creating working copy for https://github.com/pointfreeco/swift-concurrency-extras
Working copy of https://github.com/pointfreeco/swift-concurrency-extras resolved at 1.3.1
Creating working copy for https://github.com/swiftlang/swift-docc-plugin
Working copy of https://github.com/swiftlang/swift-docc-plugin resolved at 1.4.5
[1/1] Compiling plugin Swift-DocC Preview
[2/2] Compiling plugin Swift-DocC
Building for debugging...
[2/54] Write sources
[34/54] Compiling _SwiftSyntaxCShims dummy.c
[34/54] Write swift-version-24593BA9C3E375BF.txt
[37/86] Emitting module IssueReportingPackageSupport
[38/88] Emitting module SwiftSyntax601
[39/88] Emitting module SwiftSyntax510
[40/88] Compiling SwiftSyntax600 Empty.swift
[41/88] Emitting module SwiftSyntax600
[42/89] Compiling IssueReportingPackageSupport _Test.swift
[43/90] Emitting module IssueReportingPackageSupport
[44/90] Compiling IssueReportingPackageSupport _Test.swift
[46/91] Compiling SwiftSyntax601 Empty.swift
[47/92] Emitting module ConcurrencyExtras
[48/93] Compiling SwiftSyntax510 Empty.swift
[49/94] Compiling SwiftSyntax509 Empty.swift
[50/94] Emitting module SwiftSyntax509
[53/95] Wrapping AST for SwiftSyntax600 for debugging
[56/95] Wrapping AST for SwiftSyntax601 for debugging
[58/112] Compiling ConcurrencyExtras UncheckedSendable.swift
[58/114] Wrapping AST for SwiftSyntax510 for debugging
[59/114] Wrapping AST for SwiftSyntax509 for debugging
[61/197] Compiling IssueReporting BreakpointReporter.swift
[62/197] Compiling IssueReporting FatalErrorReporter.swift
[63/199] Compiling IssueReporting TestContext.swift
[64/199] Compiling IssueReporting Unimplemented.swift
[65/201] Compiling IssueReporting XCTest.swift
[66/201] Compiling IssueReporting IsTesting.swift
[67/201] Compiling IssueReporting IssueReporter.swift
[70/201] Compiling IssueReporting WithExpectedIssue.swift
[71/201] Compiling IssueReporting WithIssueContext.swift
[72/201] Emitting module IssueReporting
[75/201] Compiling ConcurrencyExtras Result.swift
[76/201] Compiling ConcurrencyExtras LockIsolated.swift
[77/201] Compiling ConcurrencyExtras MainSerialExecutor.swift
[78/201] Compiling ConcurrencyExtras Task.swift
[79/201] Compiling IssueReporting LockIsolated.swift
[80/201] Compiling IssueReporting Rethrows.swift
[81/201] Compiling IssueReporting RuntimeWarningReporter.swift
[82/201] Compiling IssueReporting ReportIssue.swift
[83/201] Compiling IssueReporting FailureObserver.swift
[86/201] Compiling IssueReporting ErrorReporting.swift
[87/201] Compiling IssueReporting AppHostWarning.swift
[88/201] Compiling IssueReporting Deprecations.swift
[93/201] Compiling IssueReporting SwiftTesting.swift
[94/201] Compiling IssueReporting UncheckedSendable.swift
[95/201] Compiling IssueReporting Warn.swift
[107/204] Emitting module IssueReporting
[121/205] Compiling ConcurrencyExtras LockIsolated.swift
[122/205] Emitting module ConcurrencyExtras
[123/205] Compiling ConcurrencyExtras MainSerialExecutor.swift
[124/205] Compiling ConcurrencyExtras Result.swift
[126/205] Compiling ConcurrencyExtras Task.swift
[127/205] Compiling ConcurrencyExtras UncheckedSendable.swift
[129/229] Compiling CombineSchedulers UIScheduler.swift
[130/229] Compiling CombineSchedulers Lock.swift
[131/229] Compiling CombineSchedulers NSRecursiveLock.swift
[132/229] Compiling CombineSchedulers ImmediateScheduler.swift
[133/229] Compiling CombineSchedulers Deprecations.swift
[134/230] Compiling CombineSchedulers Timer.swift
[135/230] Compiling CombineSchedulers UIKit.swift
[136/230] Compiling Clocks Timer.swift
[137/234] Compiling CombineSchedulers AnyScheduler.swift
[138/234] Compiling CombineSchedulers Concurrency.swift
[139/234] Emitting module CombineSchedulers
[140/234] Compiling CombineSchedulers SwiftUI.swift
[141/234] Compiling CombineSchedulers TestScheduler.swift
[142/234] Compiling XCTestDynamicOverlay Exports.swift
[143/242] Emitting module Clocks
[144/254] Compiling Clocks Lock.swift
[145/254] Compiling XCTestDynamicOverlay Exports.swift
[146/254] Compiling CombineSchedulers UnimplementedScheduler.swift
[147/255] Compiling Clocks ImmediateClock.swift
[148/255] Compiling Clocks AnyClock.swift
[149/255] Compiling CombineSchedulers Timer.swift
[151/256] Compiling CombineSchedulers AnyScheduler.swift
[152/256] Compiling CombineSchedulers Concurrency.swift
[153/256] Compiling CombineSchedulers SwiftUI.swift
[154/256] Compiling CombineSchedulers TestScheduler.swift
[155/256] Compiling Clocks Timer.swift
[156/256] Compiling Clocks _AsyncTimerSequence.swift
[157/256] Compiling CombineSchedulers UIKit.swift
[158/256] Compiling CombineSchedulers UIScheduler.swift
[159/256] Compiling CombineSchedulers ImmediateScheduler.swift
[160/256] Compiling CombineSchedulers Deprecations.swift
[161/256] Compiling CombineSchedulers Lock.swift
[162/256] Compiling CombineSchedulers NSRecursiveLock.swift
[163/257] Emitting module CombineSchedulers
[164/257] Compiling Clocks ImmediateClock.swift
[165/257] Compiling Clocks UnimplementedClock.swift
[166/257] Compiling CombineSchedulers UnimplementedScheduler.swift
[167/258] Emitting module Clocks
[168/258] Compiling Clocks AnyClock.swift
[169/258] Emitting module XCTestDynamicOverlay
[170/258] Compiling XCTestDynamicOverlay Deprecations.swift
[172/259] Compiling Clocks _AsyncTimerSequence.swift
[173/259] Compiling Clocks Lock.swift
[175/259] Emitting module XCTestDynamicOverlay
[176/259] Compiling XCTestDynamicOverlay Deprecations.swift
[177/260] Compiling Clocks UnimplementedClock.swift
[188/269] Compiling Clocks SwiftUI.swift
[189/269] Compiling Clocks TestClock.swift
[190/270] Compiling Clocks SwiftUI.swift
[191/270] Compiling Clocks TestClock.swift
[194/317] Compiling Dependencies OpenURL.swift
[195/317] Compiling Dependencies TimeZone.swift
[196/317] Compiling Dependencies URLSession.swift
[197/320] Compiling Dependencies UUID.swift
[198/320] Compiling Dependencies WithRandomNumberGenerator.swift
[199/320] Compiling Dependencies AppEntryPoint.swift
[200/323] Compiling Dependencies Locale.swift
[201/323] Compiling Dependencies MainQueue.swift
[202/323] Compiling Dependencies MainRunLoop.swift
error: emit-module command failed with exit code 1 (use -v to see invocation)
[203/323] Emitting module Dependencies
/host/spi-builder-workspace/.build/checkouts/swift-dependencies/Sources/Dependencies/Internal/AppEntryPoint.swift:3:11: error: cannot find type 'Thread' in scope
 1 | import Foundation
 2 |
 3 | extension Thread {
   |           `- error: cannot find type 'Thread' in scope
 4 |   static var isPreviewAppEntryPoint: Bool {
 5 |     guard ProcessInfo.processInfo.environment["XCODE_RUNNING_FOR_PREVIEWS"] == "1"
[205/323] Compiling Dependencies Context.swift
[206/323] Compiling Dependencies Date.swift
[207/323] Compiling Dependencies FireAndForget.swift
[208/323] Compiling Dependencies Assert.swift
[209/323] Compiling Dependencies Calendar.swift
[210/323] Compiling Dependencies Clocks.swift
[220/323] Compiling Dependencies Deprecations.swift
[221/323] Compiling Dependencies Exports.swift
[222/323] Compiling Dependencies TypeName.swift
/host/spi-builder-workspace/.build/checkouts/swift-dependencies/Sources/Dependencies/Internal/AppEntryPoint.swift:3:11: error: cannot find type 'Thread' in scope
 1 | import Foundation
 2 |
 3 | extension Thread {
   |           `- error: cannot find type 'Thread' in scope
 4 |   static var isPreviewAppEntryPoint: Bool {
 5 |     guard ProcessInfo.processInfo.environment["XCODE_RUNNING_FOR_PREVIEWS"] == "1"
/host/spi-builder-workspace/.build/checkouts/swift-dependencies/Sources/Dependencies/Internal/AppEntryPoint.swift:3:11: error: cannot find type 'Thread' in scope
 1 | import Foundation
 2 |
 3 | extension Thread {
   |           `- error: cannot find type 'Thread' in scope
 4 |   static var isPreviewAppEntryPoint: Bool {
 5 |     guard ProcessInfo.processInfo.environment["XCODE_RUNNING_FOR_PREVIEWS"] == "1"
/host/spi-builder-workspace/.build/checkouts/swift-dependencies/Sources/Dependencies/Internal/AppEntryPoint.swift:3:11: error: cannot find type 'Thread' in scope
 1 | import Foundation
 2 |
 3 | extension Thread {
   |           `- error: cannot find type 'Thread' in scope
 4 |   static var isPreviewAppEntryPoint: Bool {
 5 |     guard ProcessInfo.processInfo.environment["XCODE_RUNNING_FOR_PREVIEWS"] == "1"
[232/323] Compiling Dependencies Dependency.swift
/host/spi-builder-workspace/.build/checkouts/swift-dependencies/Sources/Dependencies/DependencyValues.swift:285:33: error: cannot find 'Thread' in scope
283 |     set {
284 |       if DependencyValues.isPreparing {
285 |         if context == .preview, Thread.isPreviewAppEntryPoint {
    |                                 `- error: cannot find 'Thread' in scope
286 |           reportIssue("Ignoring dependencies prepared in preview app entry point")
287 |           return
/host/spi-builder-workspace/.build/checkouts/swift-dependencies/Sources/Dependencies/DependencyValues.swift:577:14: error: cannot find 'Thread' in scope
575 |           value = (key as? any DependencyKey.Type)?.liveValue as? Key.Value
576 |         case .preview:
577 |           if Thread.isPreviewAppEntryPoint {
    |              `- error: cannot find 'Thread' in scope
578 |             return Key.previewValue
579 |           }
[233/323] Compiling Dependencies DependencyContext.swift
/host/spi-builder-workspace/.build/checkouts/swift-dependencies/Sources/Dependencies/DependencyValues.swift:285:33: error: cannot find 'Thread' in scope
283 |     set {
284 |       if DependencyValues.isPreparing {
285 |         if context == .preview, Thread.isPreviewAppEntryPoint {
    |                                 `- error: cannot find 'Thread' in scope
286 |           reportIssue("Ignoring dependencies prepared in preview app entry point")
287 |           return
/host/spi-builder-workspace/.build/checkouts/swift-dependencies/Sources/Dependencies/DependencyValues.swift:577:14: error: cannot find 'Thread' in scope
575 |           value = (key as? any DependencyKey.Type)?.liveValue as? Key.Value
576 |         case .preview:
577 |           if Thread.isPreviewAppEntryPoint {
    |              `- error: cannot find 'Thread' in scope
578 |             return Key.previewValue
579 |           }
[234/323] Compiling Dependencies DependencyKey.swift
/host/spi-builder-workspace/.build/checkouts/swift-dependencies/Sources/Dependencies/DependencyValues.swift:285:33: error: cannot find 'Thread' in scope
283 |     set {
284 |       if DependencyValues.isPreparing {
285 |         if context == .preview, Thread.isPreviewAppEntryPoint {
    |                                 `- error: cannot find 'Thread' in scope
286 |           reportIssue("Ignoring dependencies prepared in preview app entry point")
287 |           return
/host/spi-builder-workspace/.build/checkouts/swift-dependencies/Sources/Dependencies/DependencyValues.swift:577:14: error: cannot find 'Thread' in scope
575 |           value = (key as? any DependencyKey.Type)?.liveValue as? Key.Value
576 |         case .preview:
577 |           if Thread.isPreviewAppEntryPoint {
    |              `- error: cannot find 'Thread' in scope
578 |             return Key.previewValue
579 |           }
[235/323] Compiling Dependencies DependencyValues.swift
/host/spi-builder-workspace/.build/checkouts/swift-dependencies/Sources/Dependencies/DependencyValues.swift:285:33: error: cannot find 'Thread' in scope
283 |     set {
284 |       if DependencyValues.isPreparing {
285 |         if context == .preview, Thread.isPreviewAppEntryPoint {
    |                                 `- error: cannot find 'Thread' in scope
286 |           reportIssue("Ignoring dependencies prepared in preview app entry point")
287 |           return
/host/spi-builder-workspace/.build/checkouts/swift-dependencies/Sources/Dependencies/DependencyValues.swift:577:14: error: cannot find 'Thread' in scope
575 |           value = (key as? any DependencyKey.Type)?.liveValue as? Key.Value
576 |         case .preview:
577 |           if Thread.isPreviewAppEntryPoint {
    |              `- error: cannot find 'Thread' in scope
578 |             return Key.previewValue
579 |           }
[249/323] Compiling Dependencies PreviewTrait.swift
[250/323] Compiling Dependencies TestTrait.swift
[251/323] Compiling Dependencies WithDependencies.swift
[252/323] Compiling SwiftSyntax SyntaxCollection.swift
[253/323] Compiling SwiftSyntax SyntaxHashable.swift
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-2":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi 2>&1
wasm-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:8f9255989265d824b88e7d572b1a334a0dc9b701075ede1970390db95d315c35
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest
[0/1] Planning build
[1/1] Compiling plugin Swift-DocC Preview
[2/2] Compiling plugin Swift-DocC
Building for debugging...
[2/21] Write swift-version-24593BA9C3E375BF.txt
[4/44] Compiling SwiftSyntax601 Empty.swift
[5/51] Emitting module IssueReportingPackageSupport
[6/55] Emitting module SwiftSyntax600
[7/55] Compiling SwiftSyntax600 Empty.swift
[8/56] Compiling IssueReportingPackageSupport _Test.swift
[9/57] Compiling SwiftSyntax509 Empty.swift
[10/57] Emitting module SwiftSyntax509
[11/58] Emitting module SwiftSyntax601
[13/59] Emitting module IssueReportingPackageSupport
[14/59] Compiling IssueReportingPackageSupport _Test.swift
[15/60] Compiling SwiftSyntax510 Empty.swift
[16/60] Emitting module SwiftSyntax510
[19/61] Compiling ConcurrencyExtras MainSerialExecutor.swift
[20/61] Emitting module ConcurrencyExtras
[21/61] Compiling ConcurrencyExtras MainSerialExecutor.swift
[22/61] Compiling ConcurrencyExtras Locking.swift
[23/61] Compiling ConcurrencyExtras UncheckedBox.swift
[24/61] Compiling ConcurrencyExtras LockIsolated.swift
[27/60] Compiling ConcurrencyExtras Task.swift
[28/60] Compiling ConcurrencyExtras Result.swift
[29/60] Compiling ConcurrencyExtras UncheckedSendable.swift
[31/60] Compiling ConcurrencyExtras ActorIsolated.swift
[32/60] Compiling ConcurrencyExtras AnyHashableSendable.swift
[33/60] Compiling ConcurrencyExtras AsyncStream.swift
[34/60] Compiling ConcurrencyExtras AsyncThrowingStream.swift
[37/59] Compiling ConcurrencyExtras Result.swift
[38/59] Compiling ConcurrencyExtras Task.swift
[39/59] Compiling ConcurrencyExtras LockIsolated.swift
[40/78] Emitting module ConcurrencyExtras
[41/78] Compiling IssueReporting Rethrows.swift
[42/78] Compiling IssueReporting SwiftTesting.swift
[43/78] Compiling IssueReporting FailureObserver.swift
[44/78] Compiling IssueReporting LockIsolated.swift
[45/89] Compiling ConcurrencyExtras UncheckedSendable.swift
[48/99] Compiling IssueReporting Deprecations.swift
[49/99] Compiling IssueReporting FailureObserver.swift
[50/165] Compiling SwiftSyntax SourceEdit.swift
[51/165] Compiling SwiftSyntax SourceLength.swift
[52/167] Compiling SwiftSyntax RawSyntaxNodeProtocol.swift
[53/167] Compiling SwiftSyntax RawSyntaxTokenView.swift
[56/167] Compiling SwiftSyntax Convenience.swift
[57/167] Compiling SwiftSyntax CustomTraits.swift
[58/167] Compiling SwiftSyntax EditorPlaceholder.swift
[62/167] Compiling SwiftSyntax Identifier.swift
[63/167] Compiling SwiftSyntax RawSyntaxLayoutView.swift
[66/167] Emitting module IssueReporting
[68/167] Compiling SwiftSyntax AbsolutePosition.swift
[69/167] Compiling SwiftSyntax AbsoluteRawSyntax.swift
[70/167] Compiling SwiftSyntax AbsoluteSyntaxInfo.swift
[72/167] Compiling SwiftSyntax MemoryLayout.swift
[73/167] Compiling SwiftSyntax MissingNodeInitializers.swift
[74/167] Compiling SwiftSyntax Assert.swift
[75/167] Compiling SwiftSyntax BumpPtrAllocator.swift
[76/167] Compiling SwiftSyntax CommonAncestor.swift
[77/167] Compiling IssueReporting WithExpectedIssue.swift
[78/167] Compiling IssueReporting WithIssueContext.swift
[85/168] Compiling SwiftSyntax RawSyntax.swift
[92/192] Compiling CombineSchedulers AnyScheduler.swift
[93/192] Compiling CombineSchedulers Concurrency.swift
[94/193] Compiling XCTestDynamicOverlay Exports.swift
[95/193] Compiling CombineSchedulers UIScheduler.swift
[96/193] Compiling CombineSchedulers UIKit.swift
[97/193] Emitting module CombineSchedulers
[98/193] Compiling CombineSchedulers Lock.swift
[99/193] Compiling CombineSchedulers NSRecursiveLock.swift
[100/193] Compiling CombineSchedulers ImmediateScheduler.swift
[101/193] Compiling CombineSchedulers Deprecations.swift
[102/193] Compiling CombineSchedulers SwiftUI.swift
[103/193] Compiling CombineSchedulers TestScheduler.swift
[104/193] Compiling CombineSchedulers Timer.swift
[105/193] Emitting module Clocks
[106/194] Compiling Clocks Timer.swift
[107/199] Compiling CombineSchedulers UnimplementedScheduler.swift
[108/206] Compiling Clocks ImmediateClock.swift
[109/206] Compiling Clocks AnyClock.swift
[110/218] Compiling CombineSchedulers Timer.swift
[112/219] Compiling Clocks TestClock.swift
[113/219] Compiling Clocks SwiftUI.swift
[114/219] Compiling XCTestDynamicOverlay Exports.swift
[115/219] Compiling Clocks Lock.swift
[116/219] Compiling Clocks _AsyncTimerSequence.swift
[117/219] Compiling CombineSchedulers UnimplementedScheduler.swift
[118/219] Compiling Clocks Timer.swift
[119/220] Emitting module XCTestDynamicOverlay
[120/220] Compiling XCTestDynamicOverlay Deprecations.swift
[121/220] Compiling CombineSchedulers AnyScheduler.swift
[122/220] Compiling CombineSchedulers Concurrency.swift
[123/220] Compiling CombineSchedulers ImmediateScheduler.swift
[124/220] Compiling CombineSchedulers Deprecations.swift
[125/221] Compiling CombineSchedulers UIKit.swift
[126/221] Emitting module CombineSchedulers
[127/221] Compiling CombineSchedulers UIScheduler.swift
[128/221] Compiling CombineSchedulers Lock.swift
[129/221] Compiling CombineSchedulers NSRecursiveLock.swift
[130/221] Compiling CombineSchedulers SwiftUI.swift
[131/221] Compiling CombineSchedulers TestScheduler.swift
[133/222] Compiling Clocks UnimplementedClock.swift
[135/223] Emitting module Clocks
[136/223] Compiling Clocks ImmediateClock.swift
[137/223] Compiling Clocks AnyClock.swift
[139/223] Compiling Clocks Lock.swift
[140/223] Compiling Clocks SwiftUI.swift
[141/223] Compiling Clocks _AsyncTimerSequence.swift
[142/223] Compiling Clocks TestClock.swift
[143/246] Compiling SwiftSyntax SyntaxIdentifier.swift
[144/246] Compiling SwiftSyntax SyntaxNodeFactory.swift
[145/246] Compiling SwiftSyntax SyntaxNodeStructure.swift
[146/246] Compiling SwiftSyntax SyntaxProtocol.swift
[147/246] Compiling SwiftSyntax SyntaxText.swift
[148/246] Compiling SwiftSyntax SyntaxTreeViewMode.swift
[149/246] Compiling SwiftSyntax TokenDiagnostic.swift
[150/246] Compiling SwiftSyntax TokenSequence.swift
[151/246] Compiling SwiftSyntax TokenSyntax.swift
[152/255] Compiling Dependencies Assert.swift
[153/255] Compiling Dependencies Calendar.swift
[154/255] Compiling Dependencies Clocks.swift
[155/258] Emitting module XCTestDynamicOverlay
[156/258] Compiling Clocks UnimplementedClock.swift
[157/258] Compiling XCTestDynamicOverlay Deprecations.swift
[160/260] Emitting module Dependencies
[161/260] Compiling Dependencies Dependency.swift
[162/260] Compiling Dependencies DependencyContext.swift
[163/260] Compiling Dependencies DependencyKey.swift
[164/260] Compiling Dependencies DependencyValues.swift
[168/260] Compiling Dependencies Context.swift
[169/260] Compiling Dependencies Date.swift
[170/260] Compiling Dependencies Locale.swift
[171/260] Compiling Dependencies MainQueue.swift
[172/260] Compiling Dependencies MainRunLoop.swift
[173/260] Compiling Dependencies Deprecations.swift
[174/260] Compiling Dependencies Exports.swift
[175/260] Compiling Dependencies TypeName.swift
[176/260] Compiling Dependencies OpenURL.swift
[177/260] Compiling Dependencies TimeZone.swift
[178/260] Compiling Dependencies URLSession.swift
[181/260] Compiling Dependencies FireAndForget.swift
[182/260] Compiling Dependencies UUID.swift
[183/260] Compiling Dependencies WithRandomNumberGenerator.swift
[184/260] Compiling Dependencies AppEntryPoint.swift
[185/276] Compiling Dependencies PreviewTrait.swift
[186/276] Compiling Dependencies TestTrait.swift
[187/276] Compiling Dependencies WithDependencies.swift
[188/283] Compiling Dependencies Assert.swift
[189/283] Compiling Dependencies Calendar.swift
[190/283] Compiling Dependencies Clocks.swift
[191/283] Compiling Dependencies Dependency.swift
error: emit-module command failed with exit code 1 (use -v to see invocation)
[193/284] Emitting module Dependencies
/host/spi-builder-workspace/.build/checkouts/swift-dependencies/Sources/Dependencies/Internal/AppEntryPoint.swift:3:11: error: cannot find type 'Thread' in scope
 1 | import Foundation
 2 |
 3 | extension Thread {
   |           `- error: cannot find type 'Thread' in scope
 4 |   static var isPreviewAppEntryPoint: Bool {
 5 |     guard ProcessInfo.processInfo.environment["XCODE_RUNNING_FOR_PREVIEWS"] == "1"
[194/287] Compiling Dependencies OpenURL.swift
[195/287] Compiling Dependencies TimeZone.swift
[196/287] Compiling Dependencies URLSession.swift
[197/287] Compiling Dependencies Locale.swift
[198/287] Compiling Dependencies MainQueue.swift
[199/287] Compiling Dependencies MainRunLoop.swift
[200/287] Compiling Dependencies Deprecations.swift
[201/287] Compiling Dependencies Exports.swift
[202/287] Compiling Dependencies TypeName.swift
[203/287] Compiling Dependencies UUID.swift
/host/spi-builder-workspace/.build/checkouts/swift-dependencies/Sources/Dependencies/Internal/AppEntryPoint.swift:3:11: error: cannot find type 'Thread' in scope
 1 | import Foundation
 2 |
 3 | extension Thread {
   |           `- error: cannot find type 'Thread' in scope
 4 |   static var isPreviewAppEntryPoint: Bool {
 5 |     guard ProcessInfo.processInfo.environment["XCODE_RUNNING_FOR_PREVIEWS"] == "1"
[204/287] Compiling Dependencies WithRandomNumberGenerator.swift
/host/spi-builder-workspace/.build/checkouts/swift-dependencies/Sources/Dependencies/Internal/AppEntryPoint.swift:3:11: error: cannot find type 'Thread' in scope
 1 | import Foundation
 2 |
 3 | extension Thread {
   |           `- error: cannot find type 'Thread' in scope
 4 |   static var isPreviewAppEntryPoint: Bool {
 5 |     guard ProcessInfo.processInfo.environment["XCODE_RUNNING_FOR_PREVIEWS"] == "1"
[205/287] Compiling Dependencies AppEntryPoint.swift
/host/spi-builder-workspace/.build/checkouts/swift-dependencies/Sources/Dependencies/Internal/AppEntryPoint.swift:3:11: error: cannot find type 'Thread' in scope
 1 | import Foundation
 2 |
 3 | extension Thread {
   |           `- error: cannot find type 'Thread' in scope
 4 |   static var isPreviewAppEntryPoint: Bool {
 5 |     guard ProcessInfo.processInfo.environment["XCODE_RUNNING_FOR_PREVIEWS"] == "1"
[206/287] Compiling Dependencies Context.swift
[207/287] Compiling Dependencies Date.swift
[208/287] Compiling Dependencies FireAndForget.swift
/host/spi-builder-workspace/.build/checkouts/swift-dependencies/Sources/Dependencies/DependencyValues.swift:285:33: error: cannot find 'Thread' in scope
283 |     set {
284 |       if DependencyValues.isPreparing {
285 |         if context == .preview, Thread.isPreviewAppEntryPoint {
    |                                 `- error: cannot find 'Thread' in scope
286 |           reportIssue("Ignoring dependencies prepared in preview app entry point")
287 |           return
/host/spi-builder-workspace/.build/checkouts/swift-dependencies/Sources/Dependencies/DependencyValues.swift:577:14: error: cannot find 'Thread' in scope
575 |           value = (key as? any DependencyKey.Type)?.liveValue as? Key.Value
576 |         case .preview:
577 |           if Thread.isPreviewAppEntryPoint {
    |              `- error: cannot find 'Thread' in scope
578 |             return Key.previewValue
579 |           }
[213/287] Compiling Dependencies DependencyContext.swift
/host/spi-builder-workspace/.build/checkouts/swift-dependencies/Sources/Dependencies/DependencyValues.swift:285:33: error: cannot find 'Thread' in scope
283 |     set {
284 |       if DependencyValues.isPreparing {
285 |         if context == .preview, Thread.isPreviewAppEntryPoint {
    |                                 `- error: cannot find 'Thread' in scope
286 |           reportIssue("Ignoring dependencies prepared in preview app entry point")
287 |           return
/host/spi-builder-workspace/.build/checkouts/swift-dependencies/Sources/Dependencies/DependencyValues.swift:577:14: error: cannot find 'Thread' in scope
575 |           value = (key as? any DependencyKey.Type)?.liveValue as? Key.Value
576 |         case .preview:
577 |           if Thread.isPreviewAppEntryPoint {
    |              `- error: cannot find 'Thread' in scope
578 |             return Key.previewValue
579 |           }
[214/287] Compiling Dependencies DependencyKey.swift
/host/spi-builder-workspace/.build/checkouts/swift-dependencies/Sources/Dependencies/DependencyValues.swift:285:33: error: cannot find 'Thread' in scope
283 |     set {
284 |       if DependencyValues.isPreparing {
285 |         if context == .preview, Thread.isPreviewAppEntryPoint {
    |                                 `- error: cannot find 'Thread' in scope
286 |           reportIssue("Ignoring dependencies prepared in preview app entry point")
287 |           return
/host/spi-builder-workspace/.build/checkouts/swift-dependencies/Sources/Dependencies/DependencyValues.swift:577:14: error: cannot find 'Thread' in scope
575 |           value = (key as? any DependencyKey.Type)?.liveValue as? Key.Value
576 |         case .preview:
577 |           if Thread.isPreviewAppEntryPoint {
    |              `- error: cannot find 'Thread' in scope
578 |             return Key.previewValue
579 |           }
[215/287] Compiling Dependencies DependencyValues.swift
/host/spi-builder-workspace/.build/checkouts/swift-dependencies/Sources/Dependencies/DependencyValues.swift:285:33: error: cannot find 'Thread' in scope
283 |     set {
284 |       if DependencyValues.isPreparing {
285 |         if context == .preview, Thread.isPreviewAppEntryPoint {
    |                                 `- error: cannot find 'Thread' in scope
286 |           reportIssue("Ignoring dependencies prepared in preview app entry point")
287 |           return
/host/spi-builder-workspace/.build/checkouts/swift-dependencies/Sources/Dependencies/DependencyValues.swift:577:14: error: cannot find 'Thread' in scope
575 |           value = (key as? any DependencyKey.Type)?.liveValue as? Key.Value
576 |         case .preview:
577 |           if Thread.isPreviewAppEntryPoint {
    |              `- error: cannot find 'Thread' in scope
578 |             return Key.previewValue
579 |           }
[216/287] Compiling Dependencies PreviewTrait.swift
[217/287] Compiling Dependencies TestTrait.swift
[218/287] Compiling Dependencies WithDependencies.swift
[235/287] Compiling SwiftSyntax SyntaxCollection.swift
[236/287] Compiling SwiftSyntax SyntaxHashable.swift
BUILD FAILURE 6.1 wasm