Build Information
Failed to build EmceeTestRunner, reference master (711d51
), with Swift 6.2 (beta) for macOS (SPM) on 22 Jun 2025 15:10:06 UTC.
Build Command
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
Build Log
========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/avito-tech/Emcee.git
Reference: master
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/avito-tech/Emcee
* branch master -> FETCH_HEAD
* [new branch] master -> origin/master
HEAD is now at 711d511 Add new android metrics dashboard example v3
Cloned https://github.com/avito-tech/Emcee.git
Revision (git rev-parse @):
711d511ccb588cf2f8c660838438aad01d48473f
SUCCESS checkout https://github.com/avito-tech/Emcee.git at master
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.2
Building package at path: $PWD
https://github.com/avito-tech/Emcee.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
Building for debugging...
[0/158] Write sources
[0/158] Write testing_plugin-entitlement.plist
[0/158] Write sources
[111/158] Write Emcee-entitlement.plist
[111/158] Write sources
[150/158] Write swift-version-1EA4D86E10B52AF.txt
[151/215] Compiling ObjCExceptionCatcherHelper ObjCExceptionCatcherHelper.m
[153/218] Compiling Swifter String+File.swift
[154/218] Compiling Swifter String+Misc.swift
[155/219] Emitting module DI
[156/219] Compiling Swifter Socket.swift
[157/219] Compiling Swifter String+BASE64.swift
[158/219] Compiling Swifter HttpServerIO.swift
[159/219] Compiling Swifter MimeTypes.swift
[160/219] Compiling Swifter DemoServer.swift
[161/219] Compiling Swifter Errno.swift
[162/219] Compiling Swifter HttpRequest.swift
[163/219] Compiling Swifter HttpResponse.swift
[164/219] Compiling DI ModuleDependencies.swift
[165/219] Compiling Swifter Files.swift
[166/219] Compiling Swifter HttpParser.swift
[167/219] Compiling Swifter HttpRouter.swift
[168/219] Compiling Swifter HttpServer.swift
[169/219] Compiling String String+UTF8.swift
[170/219] Emitting module String
[175/221] Emitting module Swifter
[178/223] Compiling Signals Signals.swift
[179/223] Emitting module Signals
[180/223] Compiling Swifter Socket+File.swift
[181/223] Compiling Swifter Socket+Server.swift
[182/223] Compiling Starscream SSLClientCertificate.swift
[189/223] Emitting module Starscream
[190/223] Compiling Starscream Compression.swift
[191/223] Compiling Socket SocketUtils.swift
[192/223] Compiling Socket SocketProtocols.swift
[193/223] Compiling XcodebuildTestRunnerConstants XcodebuildTestRunnerConstants.swift
[194/223] Emitting module XcodebuildTestRunnerConstants
[195/223] Compiling Swifter Process.swift
[196/223] Compiling Swifter Scopes.swift
[199/223] Emitting module Glob
[200/223] Compiling Glob Glob.swift
[201/223] Emitting module Waitable
[202/223] Compiling Waitable Waitable.swift
[203/246] Emitting module UniqueIdentifierGenerator
[204/246] Compiling UniqueIdentifierGenerator UuidBasedUniqueIdentifierGenerator.swift
[205/246] Compiling UniqueIdentifierGenerator UniqueIdentifierGenerator.swift
[206/246] Compiling URLSessionTestHelpers FakeURLSession.swift
/Users/admin/builder/spi-builder-workspace/Tests/URLSessionTestHelpers/FakeURLSession.swift:3:20: warning: class 'FakeURLSession' must restate inherited '@unchecked Sendable' conformance
1 | import Foundation
2 |
3 | public final class FakeURLSession: URLSession {
| `- warning: class 'FakeURLSession' must restate inherited '@unchecked Sendable' conformance
4 | let session = URLSession.shared
5 |
/Users/admin/builder/spi-builder-workspace/Tests/URLSessionTestHelpers/FakeURLSession.swift:33:14: warning: class 'FakeDownloadTask' must restate inherited '@unchecked Sendable' conformance
31 | }
32 |
33 | public class FakeDownloadTask: URLSessionDownloadTask {
| `- warning: class 'FakeDownloadTask' must restate inherited '@unchecked Sendable' conformance
34 | public var originalTask: URLSessionTask
35 | public var completionHandler: (URL?, URLResponse?, Error?) -> Void
/Users/admin/builder/spi-builder-workspace/Tests/URLSessionTestHelpers/FakeURLSession.swift:47:14: warning: class 'FakeDataTask' must restate inherited '@unchecked Sendable' conformance
45 | }
46 |
47 | public class FakeDataTask: URLSessionDataTask {
| `- warning: class 'FakeDataTask' must restate inherited '@unchecked Sendable' conformance
48 | public var originalTask: URLSessionTask
49 | public var completionHandler: (Data?, URLResponse?, Error?) -> Void
/Users/admin/builder/spi-builder-workspace/Tests/URLSessionTestHelpers/FakeURLSession.swift:6:21: warning: 'init()' was deprecated in macOS 10.15: Please use +[NSURLSession sessionWithConfiguration:] or other class methods to create instances [#DeprecatedDeclaration]
4 | let session = URLSession.shared
5 |
6 | public override init() {
| `- warning: 'init()' was deprecated in macOS 10.15: Please use +[NSURLSession sessionWithConfiguration:] or other class methods to create instances [#DeprecatedDeclaration]
7 | // this is to mute the warning that init() is deprecated
8 | }
/Users/admin/builder/spi-builder-workspace/Tests/URLSessionTestHelpers/FakeURLSession.swift:37:12: warning: 'init()' was deprecated in macOS 10.15: Please use -[NSURLSession downloadTaskWithRequest:] or other NSURLSession methods to create instances [#DeprecatedDeclaration]
35 | public var completionHandler: (URL?, URLResponse?, Error?) -> Void
36 |
37 | public init(originalTask: URLSessionTask, completionHandler: @escaping (URL?, URLResponse?, Error?) -> Void) {
| `- warning: 'init()' was deprecated in macOS 10.15: Please use -[NSURLSession downloadTaskWithRequest:] or other NSURLSession methods to create instances [#DeprecatedDeclaration]
38 | self.originalTask = originalTask
39 | self.completionHandler = completionHandler
/Users/admin/builder/spi-builder-workspace/Tests/URLSessionTestHelpers/FakeURLSession.swift:51:12: warning: 'init()' was deprecated in macOS 10.15: Please use -[NSURLSession dataTaskWithRequest:] or other NSURLSession methods to create instances [#DeprecatedDeclaration]
49 | public var completionHandler: (Data?, URLResponse?, Error?) -> Void
50 |
51 | public init(originalTask: URLSessionTask, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) {
| `- warning: 'init()' was deprecated in macOS 10.15: Please use -[NSURLSession dataTaskWithRequest:] or other NSURLSession methods to create instances [#DeprecatedDeclaration]
52 | self.originalTask = originalTask
53 | self.completionHandler = completionHandler
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[207/246] Emitting module URLSessionTestHelpers
/Users/admin/builder/spi-builder-workspace/Tests/URLSessionTestHelpers/FakeURLSession.swift:3:20: warning: class 'FakeURLSession' must restate inherited '@unchecked Sendable' conformance
1 | import Foundation
2 |
3 | public final class FakeURLSession: URLSession {
| `- warning: class 'FakeURLSession' must restate inherited '@unchecked Sendable' conformance
4 | let session = URLSession.shared
5 |
/Users/admin/builder/spi-builder-workspace/Tests/URLSessionTestHelpers/FakeURLSession.swift:33:14: warning: class 'FakeDownloadTask' must restate inherited '@unchecked Sendable' conformance
31 | }
32 |
33 | public class FakeDownloadTask: URLSessionDownloadTask {
| `- warning: class 'FakeDownloadTask' must restate inherited '@unchecked Sendable' conformance
34 | public var originalTask: URLSessionTask
35 | public var completionHandler: (URL?, URLResponse?, Error?) -> Void
/Users/admin/builder/spi-builder-workspace/Tests/URLSessionTestHelpers/FakeURLSession.swift:47:14: warning: class 'FakeDataTask' must restate inherited '@unchecked Sendable' conformance
45 | }
46 |
47 | public class FakeDataTask: URLSessionDataTask {
| `- warning: class 'FakeDataTask' must restate inherited '@unchecked Sendable' conformance
48 | public var originalTask: URLSessionTask
49 | public var completionHandler: (Data?, URLResponse?, Error?) -> Void
[208/291] Emitting module Timer
[209/291] Compiling ResultStreamModels RSLogTextAppendedEventPayload.swift
[210/291] Compiling ResultStreamModels RSTestEventPayload.swift
[211/291] Compiling ResultStreamModels RSActionRecord.swift
[212/291] Compiling ResultStreamModels RSActionResult.swift
[213/291] Compiling TestsWorkingDirectorySupport TestsWorkingDirectorySupport.swift
[214/291] Emitting module TestsWorkingDirectorySupport
[215/291] Compiling Timer DispatchBasedTimer.swift
[216/293] Compiling Types NewIntType.swift
[217/293] Compiling Types NewStringType.swift
[218/293] Compiling Types MapWithCollection.swift
[219/293] Emitting module Types
[220/293] Compiling Types Either.swift
[221/306] Emitting module QueueCommunicationModels
[222/306] Compiling QueueCommunicationModels WorkerUtilizationPermission.swift
[223/306] Compiling UniqueIdentifierGeneratorTestHelpers HistoryTrackingUniqueIdentifierGenerator.swift
[224/306] Compiling UniqueIdentifierGeneratorTestHelpers FixedValueUniqueIdentifierGenerator.swift
[225/306] Emitting module UniqueIdentifierGeneratorTestHelpers
[226/306] Compiling ResultStreamModels RSInvocationStarted.swift
[227/306] Compiling ResultStreamModels RSLogMessageEmitted.swift
[228/306] Compiling ResultStreamModels RSLogSectionAttached.swift
[229/306] Compiling ResultStreamModels RSLogSectionClosed.swift
[230/318] Compiling TestDestination TestDestination.swift
[231/318] Compiling TestDestination Value.swift
[232/318] Emitting module TestDestination
[233/321] Compiling Starscream WebSocket.swift
[234/321] Compiling Starscream SSLSecurity.swift
[235/323] Compiling SignalHandling SignalHandling.swift
[236/323] Compiling TestDestinationTestHelpers TestDestinationFixtures.swift
[237/323] Emitting module TestDestinationTestHelpers
[238/323] Compiling ResultStreamModels RSTestFinished.swift
[239/323] Compiling ResultStreamModels RSTestStarted.swift
[240/323] Compiling ResultStreamModels RSTestSuiteFinished.swift
[241/323] Compiling ResultStreamModels RSTestSuiteStarted.swift
[242/323] Compiling PathLib Path+CommonOperations.swift
[243/323] Compiling PathLib RelativePath.swift
[244/323] Compiling PathLib FileManager+Extensions.swift
[245/323] Compiling PathLib String+ShellEscaping.swift
[246/323] Compiling PathLib StringPathParsing.swift
[247/323] Compiling PathLib Path.swift
[248/323] Emitting module PathLib
[249/323] Emitting module PlistLib
[250/323] Compiling PlistLib PlistEntry+Access.swift
[251/323] Compiling PlistLib Plist.swift
[252/323] Compiling PlistLib PlistEntry.swift
[253/323] Compiling PlistLib RootPlistEntry.swift
[254/323] Compiling WorkerCapabilitiesModels WorkerCapabilityRequirement.swift
[255/323] Compiling WorkerCapabilitiesModels WorkerCapabilityName.swift
[258/323] Compiling ResultStreamModels RSTestFinishedEventPayload.swift
[259/323] Compiling ResultStreamModels RSInvocationFinished.swift
[260/323] Compiling SocketModels Port.swift
[261/323] Emitting module SocketModels
[262/323] Compiling SocketModels SocketAddress.swift
[263/323] Compiling SignalHandling Signal.swift
[264/323] Emitting module SignalHandling
[265/323] Emitting module WorkerCapabilitiesModels
[266/323] Compiling WorkerCapabilitiesModels WorkerCapabilityConstraint.swift
[267/323] Compiling WorkerCapabilitiesModels WorkerCapability.swift
[268/323] Compiling ResultStreamModels RSActionsInvocationRecord.swift
[269/323] Compiling ResultStreamModels RSResultIssueSummaries.swift
[270/323] Compiling ResultStreamModels RSResultMetrics.swift
[271/323] Compiling ResultStreamModels RSInvocationFinishedEventPayload.swift
[272/323] Compiling ResultStreamModels RSInvocationStartedEventPayload.swift
[273/323] Compiling ResultStreamModels RSLogSectionCreated.swift
[274/323] Compiling ResultStreamModels RSLogTextAppended.swift
[275/323] Compiling ResultStreamModels RSStreamedEvent.swift
[276/323] Compiling ResultStreamModels RSIssueEmitted.swift
[277/323] Compiling ResultStreamModels RSLogMessageEmittedEventPayload.swift
[278/323] Compiling ResultStreamModels RSLogSectionAttachedEventPayload.swift
[279/323] Compiling ResultStreamModels RSLogSectionClosedEventPayload.swift
[280/323] Compiling ResultStreamModels RSLogSectionCreatedEventPayload.swift
[281/323] Compiling ResultStreamModels RSTestFailureIssueSummary.swift
[282/323] Compiling ResultStreamModels RSArray.swift
[283/323] Compiling ResultStreamModels RSBase.swift
[284/323] Compiling ResultStreamModels RSBool.swift
[285/323] Compiling ResultStreamModels RSDate.swift
[286/323] Compiling ResultStreamModels RSDocumentLocation.swift
[287/323] Compiling ResultStreamModels RSEntityIdentifier.swift
[288/323] Compiling ResultStreamModels RSIssueEmittedEventPayload.swift
[289/323] Compiling ResultStreamModels RSReference.swift
[290/323] Compiling ResultStreamModels RSStreamedActionResultInfo.swift
[291/325] Compiling PathLib AbsolutePath.swift
[292/327] Compiling ResultStreamModels RSDouble.swift
[293/327] Compiling ResultStreamModels RSInt.swift
[294/327] Compiling ResultStreamModels RSString.swift
[297/340] Emitting module ResultStreamModels
[298/340] Compiling ResultStreamModels RSActionTestSummaryIdentifiableObject.swift
[299/340] Compiling ResultStreamModels RSActionsInvocationMetadata.swift
[300/340] Compiling ResultStreamModels RSActivityLogCommandInvocationSectionTail.swift
[301/340] Compiling ResultStreamModels RSActivityLogMessage.swift
[302/340] Compiling ResultStreamModels RSActivityLogSectionHead.swift
[305/340] Emitting module Socket
[306/340] Compiling Socket Socket.swift
[307/397] Compiling OrderedSet OrderedSet.swift
[308/397] Emitting module OrderedSet
[309/397] Compiling ObjCExceptionCatcher ObjCExceptionCatcher.swift
[310/397] Emitting module ObjCExceptionCatcher
[311/403] Compiling LocalHostDeterminer LocalHostDeterminer.swift
[312/403] Emitting module LocalHostDeterminer
[313/403] Compiling QueueServerPortProvider QueueServerPortProvider.swift
[314/403] Emitting module QueueServerPortProvider
[315/403] Compiling QueueServerPortProvider SourcableQueueServerPortProvider.swift
[316/415] Emitting module CountedSet
[317/415] Compiling LaunchdUtils LaunchdJob.swift
[318/415] Compiling LaunchdUtils LaunchdSocket.swift
[319/415] Emitting module LaunchdUtils
[320/415] Compiling LaunchdUtils LaunchdSocketActivationError.swift
[321/415] Compiling LaunchdUtils LaunchdSocketActivation.swift
[322/415] Compiling LaunchdUtils LaunchdPlist.swift
[323/417] Compiling DateProvider DateProvider.swift
[324/417] Compiling DateProvider SystemDateProvider.swift
[325/417] Compiling DateProvider DateProviderModuleDependencies.swift
[326/417] Emitting module DateProvider
[327/417] Compiling EmceeLoggingModels Verbosity.swift
[328/417] Compiling EmceeLoggingModels PidInfo.swift
[329/417] Compiling EmceeLoggingModels LoggableDate.swift
[330/420] Compiling FileSystem FileSystemEnumeratorFactoryImpl.swift
[331/420] Compiling FileSystem FileSystemPropertiesProvider.swift
[332/420] Compiling FileSystem FileSystemPropertiesProviderImpl.swift
[333/420] Compiling FileSystem FileToucher.swift
[334/420] Compiling FileSystem FileToucherImpl.swift
[335/424] Compiling FileLock FileLock.swift
[336/424] Emitting module FileLock
[337/424] Compiling FileSystem PathDeleterImpl.swift
[338/424] Compiling FileSystem PathMover.swift
[339/424] Compiling FileSystem PathMoverImpl.swift
[340/424] Compiling FileSystem DestinationPreparer.swift
[341/424] Compiling DeveloperDirModels DeveloperDir.swift
[342/424] Emitting module DeveloperDirModels
[343/427] Compiling CountedSet CountedSet.swift
[344/427] Compiling EmceeLoggingModels LogEntryTextFormatter.swift
[345/427] Compiling EmceeLoggingModels LoggableDouble.swift
[346/427] Compiling EmceeLoggingModels NSLogLikeLogEntryTextFormatter.swift
[347/427] Compiling Tmp TemporaryFile.swift
[348/427] Emitting module EmceeLoggingModels
[349/427] Compiling EmceeLoggingModels LogEntryCoordinate.swift
[350/427] Compiling EmceeLoggingModels LogEntry.swift
[351/433] Compiling QueueServerPortProviderTestHelpers FakeQueueServerPortProvider.swift
[352/433] Emitting module QueueServerPortProviderTestHelpers
[353/433] Compiling FileSystem GlobFileSystemEnumerator.swift
[354/433] Compiling FileSystem GlobPattern.swift
[355/433] Compiling FileSystem ShallowFileSystemEnumerator.swift
[356/433] Compiling FileSystem CommonlyUsedPathsProviderFactory.swift
[357/433] Compiling FileSystem CommonlyUsedPathsProviderFactoryImpl.swift
[358/433] Compiling FileSystem CommonlyUsedPathsProvider.swift
[359/433] Compiling FileSystem DefaultCommonlyUsedPathsProvider.swift
[360/433] Compiling FileSystem DeepFileSystemEnumerator.swift
[361/433] Compiling FileSystem DeepFollowSymlinksFileSystemEnumerator.swift
[362/433] Compiling FileSystem FileSystemEnumerator.swift
[363/433] Compiling FileSystem LocalFileSystem.swift
[364/433] Compiling FileSystem PathCopier.swift
[365/433] Compiling FileSystem PathCopierImpl.swift
[366/433] Compiling FileSystem PathDeleter.swift
[367/433] Compiling Tmp TempErrors.swift
[368/433] Emitting module Tmp
[369/433] Compiling Tmp TemporaryFolder.swift
[370/433] Emitting module FileSystem
[371/433] Compiling FileSystem FileSystemModuleDependencies.swift
[372/433] Compiling FileSystem DataWriter.swift
[373/433] Compiling FileSystem DataWriterImpl.swift
[374/433] Compiling FileSystem FileReader.swift
[375/433] Compiling FileSystem FileReaderImpl.swift
[376/456] Compiling ArgLib NoOpHelpCommand.swift
[377/456] Compiling ArgLib ArgumentsError.swift
[378/456] Compiling ArgLib Command.swift
[379/456] Compiling ArgLib CommandPayload.swift
[380/456] Compiling ArgLib DefaultHelpCommand.swift
[381/456] Compiling ArgLib CommandParserError.swift
[382/456] Compiling ArgLib ArgumentValueHolder.swift
[383/456] Compiling ArgLib Arguments.swift
[384/456] Compiling FileSystem FileCreatorImpl.swift
[385/456] Compiling FileSystem FileExistenceChecker.swift
[386/456] Compiling ArgLib GenericParseError.swift
[387/456] Compiling ArgLib NumericParsableArgument.swift
[388/456] Compiling ArgLib ParsableArgument.swift
[389/456] Compiling ArgLib BoolParsableArgument.swift
[390/456] Compiling ArgLib CommandParser.swift
[391/456] Compiling ChromeTracing EventTime.swift
[392/456] Compiling ChromeTracing ColorName.swift
[393/456] Compiling ChromeTracing EventArgumentValue.swift
[394/456] Compiling ChromeTracing InstantEvent.swift
[395/456] Compiling ChromeTracing Phase.swift
[396/456] Emitting module ChromeTracing
[397/456] Compiling ChromeTracing ChromeTraceEvent.swift
[398/456] Compiling ChromeTracing CompleteEvent.swift
[399/456] Compiling ChromeTracing ChromeTrace.swift
[400/456] Compiling ChromeTracing CounterEvent.swift
[401/456] Compiling CLTExtensions Optional+UnwrapOrThrow.swift
[402/456] Emitting module CLTExtensions
[403/456] Compiling CLTExtensions NSLocking+WhileLocked.swift
[404/463] Compiling FileSystem DefaultFileSystemPropertiesContainer.swift
[405/463] Compiling FileSystem FileSystemPropertiesContainer.swift
[406/463] Compiling FileSystem RealpathProvider.swift
[407/463] Compiling FileSystem RealpathProviderImpl.swift
[408/463] Emitting module EmceeTypes
[409/463] Compiling EmceeTypes DateProvider+DateSince1970ReferenceDate.swift
[410/463] Compiling EmceeTypes DateSince1970ReferenceDate.swift
[411/475] Emitting module DateProviderTestHelpers
[412/475] Compiling DateProviderTestHelpers DateProviderFixture.swift
[413/477] Emitting module AndroidEmulatorModels
[414/492] Compiling AtomicModels AtomicValue.swift
[415/492] Compiling AtomicModels ConditionLock.swift
[416/492] Emitting module AtomicModels
[417/492] Compiling AtomicModels AtomicCollection.swift
[418/493] Compiling AndroidEmulatorModels TestDestination+AndroidFields.swift
[419/493] Compiling AndroidEmulatorModels TestDestination+AndroidCreation.swift
[420/499] Compiling AndroidEmulatorModels AndroidTestDestinationFields.swift
[421/525] Compiling ProcessController Process+ProcessGroup.swift
[422/525] Compiling ProcessController ProcessController.swift
[425/531] Compiling ListeningSemaphore SettableOperation.swift
/Users/admin/builder/spi-builder-workspace/Sources/ListeningSemaphore/SettableOperation.swift:5:13: warning: class 'SettableOperation' must restate inherited '@unchecked Sendable' conformance
3 | import Foundation
4 |
5 | final class SettableOperation: Operation, CascadeCancellable {
| `- warning: class 'SettableOperation' must restate inherited '@unchecked Sendable' conformance
6 | private let lock = NSLock()
7 | private var cascaseCancellableDependencies = [Operation]()
[426/531] Emitting module JunitReporting
[427/531] Compiling ListeningSemaphore ListeningSemaphoreAmounts.swift
[428/531] Compiling ListeningSemaphore CascadeCancellable.swift
[429/531] Compiling ListeningSemaphore ListeningSemaphore.swift
/Users/admin/builder/spi-builder-workspace/Sources/ListeningSemaphore/ListeningSemaphore.swift:130:31: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
4 | * A semaphore that uses Operation for acquisition of different resource types rather than blocking.
5 | */
6 | public final class ListeningSemaphore<T: ListeningSemaphoreAmounts> {
| `- note: 'T' previously declared here
7 | var usedValues = T.zero
8 | let maximumValues: T
:
128 | }
129 |
130 | private func synchronized<T>(execute work: () throws -> T) rethrows -> T {
| `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
131 | lock.lock()
132 | defer { lock.unlock() }
[430/531] Compiling ListeningSemaphore MutatingIterator.swift
[431/531] Emitting module ListeningSemaphore
/Users/admin/builder/spi-builder-workspace/Sources/ListeningSemaphore/ListeningSemaphore.swift:130:31: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
4 | * A semaphore that uses Operation for acquisition of different resource types rather than blocking.
5 | */
6 | public final class ListeningSemaphore<T: ListeningSemaphoreAmounts> {
| `- note: 'T' previously declared here
7 | var usedValues = T.zero
8 | let maximumValues: T
:
128 | }
129 |
130 | private func synchronized<T>(execute work: () throws -> T) rethrows -> T {
| `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
131 | lock.lock()
132 | defer { lock.unlock() }
/Users/admin/builder/spi-builder-workspace/Sources/ListeningSemaphore/SettableOperation.swift:5:13: warning: class 'SettableOperation' must restate inherited '@unchecked Sendable' conformance
3 | import Foundation
4 |
5 | final class SettableOperation: Operation, CascadeCancellable {
| `- warning: class 'SettableOperation' must restate inherited '@unchecked Sendable' conformance
6 | private let lock = NSLock()
7 | private var cascaseCancellableDependencies = [Operation]()
[432/531] Compiling ListeningSemaphore PendingItem.swift
[433/535] Compiling EmceeExtensions PlistEntry+ContainsSameValues.swift
[434/535] Compiling EmceeExtensions String+Path.swift
[435/535] Compiling EmceeExtensions SHA256.swift
[436/535] Compiling EmceeExtensions String+Random.swift
[437/535] Compiling EmceeExtensions LocalFileSystemProvider.swift
[438/535] Compiling ProcessController DefaultProcessControllerProvider.swift
/Users/admin/builder/spi-builder-workspace/Sources/EmceeExtensions/Decoder+BetterErrors.swift:38:1: warning: extension declares a conformance of imported type 'DecodingError' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
36 | }
37 |
38 | extension DecodingError: CustomStringConvertible {
| |- warning: extension declares a conformance of imported type 'DecodingError' 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
39 | public var decodingContext: DecodingError.Context {
40 | switch self {
[439/535] Compiling ProcessController LoggableProcessControllerProvider.swift
/Users/admin/builder/spi-builder-workspace/Sources/EmceeExtensions/Decoder+BetterErrors.swift:38:1: warning: extension declares a conformance of imported type 'DecodingError' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
36 | }
37 |
38 | extension DecodingError: CustomStringConvertible {
| |- warning: extension declares a conformance of imported type 'DecodingError' 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
39 | public var decodingContext: DecodingError.Context {
40 | switch self {
[440/535] Compiling EmceeExtensions ProcessInfo+ExecutablePath.swift
[441/535] Emitting module EmceeExtensions
/Users/admin/builder/spi-builder-workspace/Sources/EmceeExtensions/Decoder+BetterErrors.swift:38:1: warning: extension declares a conformance of imported type 'DecodingError' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
36 | }
37 |
38 | extension DecodingError: CustomStringConvertible {
| |- warning: extension declares a conformance of imported type 'DecodingError' 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
39 | public var decodingContext: DecodingError.Context {
40 | switch self {
[442/535] Compiling EmceeExtensions PortRange.swift
[443/535] Compiling ProcessController ProcessControllerDependencies.swift
[444/535] Compiling ProcessController DefaultProcessController.swift
[445/536] Compiling ArgLib StringParsableArgument.swift
[446/536] Compiling ProcessController AutomaticManagement.swift
[447/536] Compiling ProcessController AutomaticManagementItemController.swift
[450/536] Compiling ProcessController ProcessControllerProvider.swift
[451/536] Compiling ProcessController ProcessListener.swift
[454/536] Emitting module ArgLib
[459/536] Compiling ProcessController ProcessControllerError.swift
[460/536] Compiling ProcessController ProcessControllerProvider+Bash.swift
[461/536] Compiling ProcessController SubprocessArgument.swift
[462/536] Compiling JSONStream JSONStreamFactory.swift
[463/536] Compiling JSONStream JSONStream.swift
[464/538] Compiling ProcessController Subprocess.swift
[465/538] Compiling JSONStream JSONReaderFatalError.swift
[466/542] Compiling SynchronousWaiter Waiter+ErrorMapping.swift
[467/542] Compiling SynchronousWaiter Timeout.swift
[468/542] Compiling SynchronousWaiter Waiter.swift
[469/542] Emitting module SynchronousWaiter
[470/542] Compiling SynchronousWaiter NoOpWaiter.swift
[471/542] Compiling SynchronousWaiter SynchronousWaiter.swift
[472/542] Compiling SynchronousWaiter Waiter+Callbacks.swift
[473/542] Compiling JSONStream JSONReaderContext.swift
[474/542] Compiling JSONStream JSONReaderEventStream.swift
[475/542] Compiling JSONStream JSONReaderError.swift
[476/542] Compiling JunitReporting Junit.swift
[477/542] Compiling IO OutputStreamProvider.swift
[478/542] Compiling IO NetworkSocketOutputStreamProvider.swift
[479/542] Compiling CommonTestModels TestStoppedEvent.swift
[480/542] Compiling CommonTestModels TestTimeoutConfiguration.swift
[481/542] Compiling CommonTestModels TestingResult.swift
[482/542] Compiling CommonTestModels TestStoppedEvent+MergeExceptions.swift
[483/543] Compiling HostnameProvider MutableHostnameProvider.swift
[486/543] Compiling ProcessController ProcessStatus.swift
[491/543] Compiling HostnameProvider HostnameProvider.swift
[492/543] Emitting module HostnameProvider
[493/543] Compiling HostnameProvider MutableHostnameProviderImpl.swift
[504/543] Emitting module CommonTestModels
[505/543] Compiling EmceeExtensions UrlComponents+Throws.swift
[506/543] Emitting module IO
[507/543] Compiling IO EasyOutputStreamError.swift
[508/543] Compiling IO EasyOutputStream.swift
[509/543] Compiling ProcessController SubprocessInfo.swift
[510/543] Compiling CommonTestModels UDID.swift
[511/543] Compiling EmceeDI TypeInfo.swift
[512/543] Compiling EmceeDI DI.swift
[513/543] Compiling EmceeDI DIImpl.swift
[514/543] Emitting module EmceeDI
[515/543] Compiling JSONStream NumberValidator.swift
[516/567] Emitting module JSONStream
[517/567] Compiling JSONStream BlockingArrayBasedJSONStream.swift
[518/567] Compiling JSONStream JSONReader.swift
[519/567] Compiling JSONStream AppendableJSONStream.swift
[524/567] Emitting module ProcessController
[527/577] Compiling MetricsUtils String+MetricComponent.swift
[528/577] Emitting module MetricsUtils
[529/577] Compiling MetricsUtils StreamReopener.swift
[530/577] Compiling ResultStreamModelsTestHelpers RSTestFinishedTestInput.swift
[531/577] Compiling ResultStreamModelsTestHelpers RSTestStartedTestInput.swift
[532/577] Emitting module ResultStreamModelsTestHelpers
[533/583] Compiling DeveloperDirLocator DeveloperDirLocatorError.swift
[534/583] Emitting module FileCache
[535/583] Compiling FileCache NameKeyer.swift
[536/583] Compiling FileCache FileCache+URL.swift
[537/583] Compiling FileCache FileCache.swift
[538/583] Compiling FileCache SHA256NameKeyer.swift
[539/583] Emitting module Kibana
[540/583] Compiling Kibana FakeKibanaClient.swift
[541/583] Compiling Kibana KibanaClient.swift
[542/583] Compiling Kibana HttpKibanaClient.swift
[543/583] Compiling Kibana KibanaHttpEndpoint.swift
[544/583] Compiling GraphiteClient GraphiteMetric.swift
[545/583] Emitting module GraphiteClient
[546/583] Compiling GraphiteClient GraphiteClient.swift
[547/583] Compiling GraphiteClient GraphiteClientError.swift
[548/583] Compiling Zip ZipCompressorImpl.swift
[549/583] Compiling Zip ZipCompressor.swift
[550/583] Emitting module Zip
[551/583] Compiling ObservableFileReader ObservableFileReader.swift
[552/583] Compiling ObservableFileReader ObservableFileReaderHandler.swift
[553/583] Emitting module ObservableFileReader
[554/583] Emitting module ResourceLocation
[555/583] Compiling ResourceLocation ResourceLocationError.swift
[556/583] Compiling ResourceLocation ResolvableResourceLocation.swift
[557/583] Compiling ResourceLocation ResourceLocation.swift
[558/587] Compiling DeveloperDirLocator DeveloperDirLocator.swift
[559/587] Emitting module DeveloperDirLocator
[560/587] Compiling DeveloperDirLocator DefaultDeveloperDirLocator.swift
[561/592] Compiling Statsd StatsdMetric.swift
[562/592] Compiling Statsd StatsdMetricHandler.swift
[563/592] Compiling Statsd StatsdClient.swift
[564/592] Compiling Statsd StatsdClientImpl.swift
[565/592] Compiling Statsd StatsdMetricHandlerImpl.swift
[566/592] Emitting module Statsd
[567/592] Compiling Graphite GraphiteMetricHandlerImpl.swift
[568/592] Compiling Graphite GraphiteMetricHandler.swift
[569/592] Compiling Graphite GraphiteMetric.swift
[570/592] Emitting module Graphite
[571/592] Compiling TypedResourceLocation RepresentableByResourceLocation.swift
[572/592] Emitting module TypedResourceLocation
[573/592] Compiling TypedResourceLocation TypedResourceLocation.swift
[574/592] Compiling DeveloperDirLocatorTestHelpers FakeDeveloperDirLocator.swift
[575/592] Emitting module DeveloperDirLocatorTestHelpers
[576/627] Compiling Metrics MutableMetricRecorder.swift
[577/627] Compiling Metrics TimeMeasurer.swift
[578/627] Compiling Metrics MetricRecorder.swift
[579/627] Compiling Metrics NoOpMetricHandler.swift
[580/627] Emitting module Metrics
[581/627] Compiling Metrics MetricRecorderImpl.swift
[582/627] Compiling SimulatorPoolModels TestDestination+AppleFields.swift
[583/628] Compiling BuildArtifacts RunnerAppLocation.swift
[584/628] Compiling BuildArtifacts XcTestBundle.swift
[585/628] Compiling BuildArtifacts TestBundleLocation.swift
[586/629] Compiling PluginSupport PluginHandshake.swift
[587/629] Compiling PluginSupport PluginSupport.swift
[588/629] Compiling PluginSupport AppleTestPluginLocation.swift
[589/629] Emitting module PluginSupport
[590/638] Compiling SimulatorPoolModels SimulatorSettings.swift
[591/638] Compiling SimulatorPoolModels TestDestination+AppleCreation.swift
[592/638] Compiling SimulatorPoolModels SimulatorOperationTimeouts.swift
[593/638] Compiling BuildArtifacts AppBundleLocation.swift
[594/638] Compiling BuildArtifacts AdditionalAppBundleLocation.swift
[595/638] Compiling BuildArtifacts ApkLocation.swift
[596/638] Compiling BuildArtifacts AndroidBuildArtifacts.swift
[597/638] Compiling BuildArtifacts ApkDescription.swift
[598/638] Emitting module BuildArtifacts
[599/638] Compiling BuildArtifacts AppleBuildArtifacts.swift
[600/638] Compiling SimulatorPoolModels CoreSimulatorState.swift
[601/638] Compiling SimulatorPoolModels OnDemandSimulatorPoolKey.swift
[602/638] Compiling SimulatorPoolModels Simulator.swift
[603/638] Compiling SimulatorPoolModels SimulatorCertificateLocation.swift
[604/638] Emitting module SimulatorPoolModels
[605/638] Compiling SimulatorPoolModels SimulatorKeychainSettings.swift
[606/638] Compiling SimulatorPoolModels SimulatorLocalizationSettings.swift
[607/638] Compiling SimulatorPoolModels AppleRuntimeKind.swift
[608/638] Compiling SimulatorPoolModels AppleTestDestinationFields.swift
[609/638] Compiling SimulatorPoolModels SimDeviceType.swift
[610/638] Compiling SimulatorPoolModels SimRuntime.swift
[611/638] Compiling BuildArtifacts XcTestBundleTestDiscoveryMode.swift
[612/638] Compiling SimulatorPoolModels WatchdogSettings.swift
[613/644] Compiling MetricsExtensions SpecificMetricRecorder.swift
[614/644] Compiling MetricsExtensions MetricRecorderProvider.swift
[615/644] Compiling MetricsExtensions GlobalMetricRecorder.swift
[616/644] Compiling MetricsExtensions MutableMetricRecorder+AnalyticsConfiguration.swift
[617/644] Compiling MetricsExtensions KibanaConfiguration.swift
[618/644] Compiling MetricsExtensions SpecificMetricRecorderProvider.swift
[619/644] Compiling MetricsExtensions MetricConfiguration.swift
[620/644] Emitting module MetricsExtensions
[621/644] Compiling MetricsExtensions AnalyticsConfiguration.swift
[622/644] Compiling AppleTestModels TestName+Xcodebuild.swift
[623/644] Compiling AndroidTestModels AndroidTestConfiguration.swift
[624/644] Emitting module AndroidTestModels
[625/644] Compiling AppleTestModels TestAttachmentLifetime.swift
[626/644] Compiling AppleTestModels AppleTestConfiguration.swift
[627/644] Emitting module AppleTestModels
[628/676] Compiling RunnerModels RunnerConfiguration.swift
[629/676] Compiling QueueModels WithTestExecutionBehavior.swift
[630/676] Compiling QueueModels WithUpdatableTestEntries.swift
[631/676] Compiling QueueModels BucketResult.swift
[632/678] Compiling QueueModels ConfiguredTestEntry.swift
[633/678] Compiling QueueModels JobGroupId.swift
[634/678] Compiling QueueModels JobId.swift
[635/678] Emitting module QueueModels
/Users/admin/builder/spi-builder-workspace/Sources/QueueModels/Version.swift:5:1: warning: extension declares a conformance of imported type 'Array' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
3 | public final class Version: NewStringType { }
4 |
5 | extension Array: Comparable where Element == Version {
| |- warning: extension declares a conformance of imported type 'Array' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
6 | public static func < (lhs: Array<Version>, rhs: Array<Version>) -> Bool {
7 | if lhs.count < rhs.count {
[636/678] Compiling RunnerModels AppleRunnerConfiguration.swift
[637/678] Emitting module RunnerModels
[638/678] Compiling RunnerModels LostTestProcessingMode.swift
[639/678] Compiling RunnerModels AppleTestContext.swift
[640/678] Compiling QueueModels Bucket.swift
[641/678] Compiling QueueModels BucketId.swift
[642/678] Compiling QueueModels BucketPayload.swift
[643/678] Compiling QueueModels BucketPayloadContainer.swift
[644/678] Compiling QueueModels BucketPayloadWithTests.swift
[645/678] Compiling QueueModels RunAndroidTestsPayload.swift
[646/678] Compiling QueueModels QueueState.swift
[647/678] Compiling QueueModels RunningQueueState.swift
[648/678] Compiling QueueModels SimilarlyConfiguredTestEntries.swift
[649/678] Compiling QueueModels TestEntryConfiguration.swift
[650/678] Compiling QueueModels TestEntryConfigurationContainer.swift
[651/678] Compiling QueueModels RunAppleTestsPayload.swift
[652/678] Compiling QueueModels WithTestDestintation.swift
[653/678] Compiling QueueModels WithTestEntries.swift
[654/678] Compiling QueueModels JobResults.swift
[655/678] Compiling QueueModels JobState.swift
[656/678] Compiling QueueModels PayloadSignature.swift
[657/678] Compiling QueueModels PrioritizedJob.swift
[658/678] Compiling QueueModels Priority.swift
[659/678] Compiling QueueModels QueueInfo.swift
[660/685] Compiling QueueModels Version.swift
/Users/admin/builder/spi-builder-workspace/Sources/QueueModels/Version.swift:5:1: warning: extension declares a conformance of imported type 'Array' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
3 | public final class Version: NewStringType { }
4 |
5 | extension Array: Comparable where Element == Version {
| |- warning: extension declares a conformance of imported type 'Array' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
6 | public static func < (lhs: Array<Version>, rhs: Array<Version>) -> Bool {
7 | if lhs.count < rhs.count {
[661/685] Compiling QueueModels WorkerId.swift
/Users/admin/builder/spi-builder-workspace/Sources/QueueModels/Version.swift:5:1: warning: extension declares a conformance of imported type 'Array' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
3 | public final class Version: NewStringType { }
4 |
5 | extension Array: Comparable where Element == Version {
| |- warning: extension declares a conformance of imported type 'Array' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
6 | public static func < (lhs: Array<Version>, rhs: Array<Version>) -> Bool {
7 | if lhs.count < rhs.count {
[662/717] Compiling EventBus EventStream.swift
[663/717] Compiling EventBus EventBus.swift
[664/717] Compiling EventBus DefaultBusListener.swift
[665/717] Compiling EventBus BusEvent.swift
[666/717] Emitting module EmceeVersion
[667/717] Compiling EmceeVersion EmceeVersion.swift
[668/717] Compiling TestHistoryModels TestEntryHistoryId.swift
[669/717] Compiling TestHistoryModels TestEntryHistoryItem.swift
[670/717] Compiling EventBus AppleRunnerEvent.swift
[671/717] Compiling EventBus BlockBasedEventStream.swift
[672/717] Emitting module EventBus
[673/717] Compiling RESTInterfaces SignedPayload.swift
[674/717] Emitting module RESTInterfaces
[675/717] Compiling RESTInterfaces RESTMethod.swift
[676/717] Compiling RESTInterfaces RESTPath.swift
[677/717] Emitting module TestHistoryModels
[678/717] Compiling TestHistoryModels TestEntryHistory.swift
[679/717] Compiling LogStreamingModels WorkerLogStreamingMode.swift
[680/717] Compiling WorkerAlivenessModels WorkerAliveness.swift
[681/717] Emitting module WorkerAlivenessModels
[682/717] Compiling LogStreamingModels LogEntryCoordinate+BucketId.swift
[683/717] Compiling LogStreamingModels ClientLogStreamingMode.swift
[684/717] Compiling LogStreamingModels ClientDetails.swift
[685/717] Emitting module LogStreamingModels
[686/717] Compiling LogStreamingModels QueueLogStreamingModes.swift
[687/717] Compiling EmceeLogging LoggingSetup.swift
[688/717] Compiling EmceeLogging LoggerHandler.swift
[689/718] Compiling EmceeLogging KibanaHandler.swift
[690/718] Compiling EmceeLogging FileSystem+Logging.swift
[691/718] Compiling EmceeLogging FileHandle+TextOutputStream.swift
/Users/admin/builder/spi-builder-workspace/Sources/EmceeLogging/FileHandle+TextOutputStream.swift:3:1: warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
1 | import Foundation
2 |
3 | extension FileHandle: TextOutputStream {
| |- warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
4 | public func write(_ string: String) {
5 | self.write(Data(string.utf8))
[692/718] Compiling EmceeLogging FileHandleLoggerHandler.swift
/Users/admin/builder/spi-builder-workspace/Sources/EmceeLogging/FileHandle+TextOutputStream.swift:3:1: warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
1 | import Foundation
2 |
3 | extension FileHandle: TextOutputStream {
| |- warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
4 | public func write(_ string: String) {
5 | self.write(Data(string.utf8))
[693/718] Compiling EmceeLogging ContextualLogger+AnalyticsConfiguration.swift
[694/718] Compiling EmceeLogging ContextualLogger+Levels.swift
[695/718] Compiling EmceeLogging FileState.swift
[696/728] Compiling EmceeLogging AggregatedLoggerHandler.swift
[697/728] Compiling EmceeLogging ChildProcessLogsContainerProvider.swift
[698/728] Emitting module EmceeLogging
/Users/admin/builder/spi-builder-workspace/Sources/EmceeLogging/FileHandle+TextOutputStream.swift:3:1: warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
1 | import Foundation
2 |
3 | extension FileHandle: TextOutputStream {
| |- warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
4 | public func write(_ string: String) {
5 | self.write(Data(string.utf8))
[699/728] Compiling EmceeLogging ContextualLogger+ProcessController.swift
[700/728] Compiling EmceeLogging ContextualLogger.swift
[701/728] Compiling TestHistoryStorage TestHistoryStorage.swift
[702/728] Compiling EmceeLogging SubprocessInfo+PidInfo.swift
[703/728] Compiling DistWorkerModels FixedWorkerConfigurations.swift
[704/728] Compiling DistWorkerModels WorkerConfigurations.swift
[705/728] Compiling DistWorkerModels WorkerConfigurationsWithDefaultConfiguration.swift
[706/728] Emitting module TestHistoryStorage
[707/728] Compiling TestHistoryStorage TestHistoryStorageImpl.swift
[708/783] Compiling DistWorkerModels CurrentlyProcessingBuckets.swift
[709/783] Compiling DistWorkerModels WorkerConfiguration.swift
[710/783] Emitting module DistWorkerModels
[711/783] Compiling DistWorkerModels CurrentlyProcessingBucketsResponse.swift
[712/783] Compiling URLResource URLResourceHandler.swift
[713/786] Compiling RequestSender RequestSenderProvider.swift
[714/786] Compiling RequestSender NetworkRequest.swift
[715/787] Compiling ScheduleStrategy BucketGenerator.swift
error: emit-module command failed with exit code 1 (use -v to see invocation)
[716/788] Compiling ResourceLocationResolver ResourceLocation+SubprocessArgument.swift
/Users/admin/builder/spi-builder-workspace/Sources/ResourceLocationResolver/ResourceLocationResolverImpl.swift:11:17: error: no such module 'URLResource'
9 | import SynchronousWaiter
10 |
11 | import protocol URLResource.URLResource
| `- error: no such module 'URLResource'
12 | import class URLResource.BlockingURLResourceHandler
13 |
[717/788] Compiling ResourceLocationResolver ResourceLocationResolver.swift
/Users/admin/builder/spi-builder-workspace/Sources/ResourceLocationResolver/ResourceLocationResolverImpl.swift:11:17: error: no such module 'URLResource'
9 | import SynchronousWaiter
10 |
11 | import protocol URLResource.URLResource
| `- error: no such module 'URLResource'
12 | import class URLResource.BlockingURLResourceHandler
13 |
[718/788] Emitting module ResourceLocationResolver
/Users/admin/builder/spi-builder-workspace/Sources/ResourceLocationResolver/ResourceLocationResolverImpl.swift:11:17: error: no such module 'URLResource'
9 | import SynchronousWaiter
10 |
11 | import protocol URLResource.URLResource
| `- error: no such module 'URLResource'
12 | import class URLResource.BlockingURLResourceHandler
13 |
[719/788] Compiling ResourceLocationResolver ResourceLocationResolverImpl.swift
/Users/admin/builder/spi-builder-workspace/Sources/ResourceLocationResolver/ResourceLocationResolverImpl.swift:11:17: error: no such module 'URLResource'
9 | import SynchronousWaiter
10 |
11 | import protocol URLResource.URLResource
| `- error: no such module 'URLResource'
12 | import class URLResource.BlockingURLResourceHandler
13 |
[720/788] Compiling ResourceLocationResolver ResolvingResult+DirectlyAccessibleResource.swift
/Users/admin/builder/spi-builder-workspace/Sources/ResourceLocationResolver/ResourceLocationResolverImpl.swift:11:17: error: no such module 'URLResource'
9 | import SynchronousWaiter
10 |
11 | import protocol URLResource.URLResource
| `- error: no such module 'URLResource'
12 | import class URLResource.BlockingURLResourceHandler
13 |
[721/788] Compiling ResourceLocationResolver ResolvableResourceLocationImpl.swift
/Users/admin/builder/spi-builder-workspace/Sources/ResourceLocationResolver/ResourceLocationResolverImpl.swift:11:17: error: no such module 'URLResource'
9 | import SynchronousWaiter
10 |
11 | import protocol URLResource.URLResource
| `- error: no such module 'URLResource'
12 | import class URLResource.BlockingURLResourceHandler
13 |
[722/788] Compiling RequestSender DefaultRequestSenderProvider.swift
[723/788] Compiling RequestSender Credentials.swift
[724/788] Compiling RequestSender HTTPMethod.swift
[725/788] Compiling RequestSender VoidPayload.swift
[726/788] Compiling RequestSender RequestSender.swift
[727/788] Emitting module PortDeterminer
[728/788] Compiling URLResource BlockingURLResourceHandler.swift
[729/788] Emitting module URLResource
[730/788] Compiling ScheduleStrategy BucketGeneratorImpl.swift
[731/788] Compiling ScheduleStrategy UnsplitBucketSplitter.swift
[732/788] Compiling ScheduleStrategy BucketSplitInfo.swift
Fetching https://github.com/0x7fs/CountedSet
[7/323] Fetching countedset
Fetched https://github.com/0x7fs/CountedSet from cache (0.80s)
Fetching https://github.com/daltoniam/Starscream.git
Fetching https://github.com/IBM-Swift/BlueSocket
Fetching https://github.com/httpswift/swifter.git
Fetching https://github.com/Weebly/OrderedSet
Fetching https://github.com/avito-tech/CommandLineToolkit.git
[1/3029] Fetching commandlinetoolkit
[92/9079] Fetching commandlinetoolkit, swifter
[153/9708] Fetching commandlinetoolkit, swifter, orderedset
[1117/14741] Fetching commandlinetoolkit, swifter, orderedset, starscream
[2219/17683] Fetching commandlinetoolkit, swifter, orderedset, starscream, bluesocket
Fetched https://github.com/Weebly/OrderedSet from cache (1.14s)
[12037/17054] Fetching commandlinetoolkit, swifter, starscream, bluesocket
Fetched https://github.com/httpswift/swifter.git from cache (1.36s)
Fetched https://github.com/daltoniam/Starscream.git from cache (1.36s)
Fetched https://github.com/IBM-Swift/BlueSocket from cache (1.36s)
Fetched https://github.com/avito-tech/CommandLineToolkit.git from cache (1.36s)
Computing version for https://github.com/httpswift/swifter.git
Computed https://github.com/httpswift/swifter.git at 1.5.0 (1.85s)
Computing version for https://github.com/daltoniam/Starscream.git
Computed https://github.com/daltoniam/Starscream.git at 3.0.6 (0.47s)
Computing version for https://github.com/IBM-Swift/BlueSocket
Computed https://github.com/IBM-Swift/BlueSocket at 1.0.46 (0.47s)
Computing version for https://github.com/Weebly/OrderedSet
Computed https://github.com/Weebly/OrderedSet at 5.0.0 (0.46s)
Computing version for https://github.com/avito-tech/CommandLineToolkit.git
Computed https://github.com/avito-tech/CommandLineToolkit.git at 1.0.10 (0.51s)
Fetching https://github.com/Bouke/Glob
Fetching https://github.com/apple/swift-argument-parser
Fetching https://github.com/IBM-Swift/BlueSignals.git
[1/246] Fetching glob
Fetched https://github.com/Bouke/Glob from cache (0.67s)
[1/681] Fetching bluesignals
[682/16061] Fetching bluesignals, swift-argument-parser
Fetched https://github.com/apple/swift-argument-parser from cache (1.45s)
Fetched https://github.com/IBM-Swift/BlueSignals.git from cache (1.45s)
Computing version for https://github.com/IBM-Swift/BlueSignals.git
Computed https://github.com/IBM-Swift/BlueSignals.git at 1.0.21 (1.96s)
Computing version for https://github.com/Bouke/Glob
Computed https://github.com/Bouke/Glob at 1.0.5 (0.48s)
Computing version for https://github.com/apple/swift-argument-parser
Computed https://github.com/apple/swift-argument-parser at 0.5.0 (0.48s)
Creating working copy for https://github.com/daltoniam/Starscream.git
Working copy of https://github.com/daltoniam/Starscream.git resolved at 3.0.6
Creating working copy for https://github.com/httpswift/swifter.git
Working copy of https://github.com/httpswift/swifter.git resolved at 1.5.0
Creating working copy for https://github.com/apple/swift-argument-parser
Working copy of https://github.com/apple/swift-argument-parser resolved at 0.5.0
Creating working copy for https://github.com/0x7fs/CountedSet
Working copy of https://github.com/0x7fs/CountedSet resolved at master (5bdaf31)
Creating working copy for https://github.com/IBM-Swift/BlueSignals.git
Working copy of https://github.com/IBM-Swift/BlueSignals.git resolved at 1.0.21
Creating working copy for https://github.com/Bouke/Glob
Working copy of https://github.com/Bouke/Glob resolved at 1.0.5
Creating working copy for https://github.com/Weebly/OrderedSet
Working copy of https://github.com/Weebly/OrderedSet resolved at 5.0.0
Creating working copy for https://github.com/avito-tech/CommandLineToolkit.git
Working copy of https://github.com/avito-tech/CommandLineToolkit.git resolved at 1.0.10
Creating working copy for https://github.com/IBM-Swift/BlueSocket
Working copy of https://github.com/IBM-Swift/BlueSocket resolved at 1.0.46
warning: 'spi-builder-workspace': found 1 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
/Users/admin/builder/spi-builder-workspace/Sources/TestingPlugin/README.md
warning: 'spi-builder-workspace': found 1 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
/Users/admin/builder/spi-builder-workspace/Sources/Plugin/README.md
warning: 'spi-builder-workspace': found 1 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
/Users/admin/builder/spi-builder-workspace/Sources/QueueCommunication/README.md
warning: 'spi-builder-workspace': found 1 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
/Users/admin/builder/spi-builder-workspace/Sources/TestDiscovery/README.md
warning: 'spi-builder-workspace': found 1 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
/Users/admin/builder/spi-builder-workspace/Sources/EventBus/README.md
warning: 'spi-builder-workspace': found 1 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
/Users/admin/builder/spi-builder-workspace/Sources/LocalHostDeterminer/README.md
warning: 'spi-builder-workspace': found 1 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
/Users/admin/builder/spi-builder-workspace/Sources/PluginManager/README.md
warning: 'spi-builder-workspace': found 1 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
/Users/admin/builder/spi-builder-workspace/Sources/ResultStreamModels/README.md
warning: 'spi-builder-workspace': found 1 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
/Users/admin/builder/spi-builder-workspace/Sources/ScheduleStrategy/README.md
warning: 'spi-builder-workspace': found 1 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
/Users/admin/builder/spi-builder-workspace/Sources/LogStreaming/README.md
BUILD FAILURE 6.2 macosSpm