This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.

The Swift Package Index logo.Swift Package Index

Track the adoption of Swift 6 strict concurrency checks for data race safety. How many packages are Ready for Swift 6?

Build Information

Failed to build stringray with Swift 6.0 for macOS (SPM).

Build Command

env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete

Build Log

========================================
RunAll
========================================
Builder version: 4.40.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/g-off/stringray.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/g-off/stringray
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at 0705ed8 Merge pull request #14 from g-Off/github-ci
Cloned https://github.com/g-off/stringray.git
Revision (git rev-parse @):
0705ed8b0fe250d54735b65bb668e0cf16e87c69
SUCCESS checkout https://github.com/g-off/stringray.git at main
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.0
Building package at path:  $workDir
https://github.com/g-off/stringray.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete
Building for debugging...
[0/23] Write sources
[4/23] Write stringray-entitlement.plist
[5/23] Write sources
[12/23] Compiling clibc libc.c
[13/23] Write swift-version-6F35C1178C84523A.txt
[14/54] Compiling parser.c
[15/54] Compiling api.c
[16/54] Compiling writer.c
[17/54] Compiling emitter.c
[18/54] Compiling reader.c
[19/54] Compiling scanner.c
[21/70] Emitting module SPMLibc
[22/70] Compiling SPMLibc libc.swift
[23/81] Compiling POSIX getcwd.swift
[24/81] Compiling POSIX env.swift
[25/82] Compiling POSIX realpath.swift
[26/82] Compiling POSIX stat.swift
[27/82] Compiling POSIX rename.swift
[28/82] Compiling POSIX usleep.swift
[29/82] Compiling POSIX Error.swift
[30/82] Compiling POSIX chdir.swift
[31/82] Emitting module POSIX
[32/82] Compiling Yams Mark.swift
[33/82] Compiling Yams Node.Mapping.swift
[34/82] Compiling Yams Tag.swift
[35/82] Compiling Yams YamlError.swift
[36/83] Compiling Yams shim.swift
[37/83] Compiling ObjectCoder EncodingStorage.swift
[38/84] Compiling Yams Emitter.swift
[39/84] Compiling Yams Encoder.swift
[40/85] Compiling Yams String+Yams.swift
/Users/admin/builder/spi-builder-workspace/Sources/RayGun/Lint Rules/Linter.swift:41:20: warning: static property 'allRules' is not concurrency-safe because non-'Sendable' type '[any LintRule]' may have shared mutable state; this is an error in the Swift 6 language mode
 39 | 	public static let fileName = ".stringray.yml"
 40 |
 41 | 	public static let allRules: [LintRule] = [
    |                    |- warning: static property 'allRules' is not concurrency-safe because non-'Sendable' type '[any LintRule]' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'allRules' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 42 | 		MissingLocalizationLintRule(),
 43 | 		OrphanedLocalizationLintRule(),
/Users/admin/builder/spi-builder-workspace/Sources/RayGun/Lint Rules/LintRule.swift:10:17: note: protocol 'LintRule' does not conform to the 'Sendable' protocol
 8 | import Foundation
 9 |
10 | public protocol LintRule {
   |                 `- note: protocol 'LintRule' does not conform to the 'Sendable' protocol
11 | 	var info: RuleInfo { get }
12 | 	func scan(table: StringsTable, url: Foundation.URL, config: Linter.Config.Rule?) throws -> [LintRuleViolation]
/Users/admin/builder/spi-builder-workspace/Sources/RayGun/Lint Rules/Linter.swift:49:27: warning: stored property 'violations' of 'Sendable'-conforming struct 'Error' has non-sendable type '[LintRuleViolation]'; this is an error in the Swift 6 language mode
 47 |
 48 | 	public struct Error: LocalizedError {
 49 | 		public private(set) var violations: [LintRuleViolation]
    |                           `- warning: stored property 'violations' of 'Sendable'-conforming struct 'Error' has non-sendable type '[LintRuleViolation]'; this is an error in the Swift 6 language mode
 50 |
 51 | 		public init(_ violations: [LintRuleViolation]) {
/Users/admin/builder/spi-builder-workspace/Sources/RayGun/Lint Rules/LintRule.swift:31:15: note: consider making struct 'LintRuleViolation' conform to the 'Sendable' protocol
29 | }
30 |
31 | public struct LintRuleViolation {
   |               `- note: consider making struct 'LintRuleViolation' conform to the 'Sendable' protocol
32 | 	public struct Location: CustomStringConvertible {
33 | 		public let file: Foundation.URL
/Users/admin/builder/spi-builder-workspace/Sources/RayGun/Lint Rules/Linter.swift:41:20: warning: static property 'allRules' is not concurrency-safe because non-'Sendable' type '[any LintRule]' may have shared mutable state; this is an error in the Swift 6 language mode
 39 | 	public static let fileName = ".stringray.yml"
 40 |
 41 | 	public static let allRules: [LintRule] = [
    |                    |- warning: static property 'allRules' is not concurrency-safe because non-'Sendable' type '[any LintRule]' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'allRules' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 42 | 		MissingLocalizationLintRule(),
 43 | 		OrphanedLocalizationLintRule(),
/Users/admin/builder/spi-builder-workspace/Sources/RayGun/Lint Rules/LintRule.swift:10:17: note: protocol 'LintRule' does not conform to the 'Sendable' protocol
 8 | import Foundation
 9 |
10 | public protocol LintRule {
   |                 `- note: protocol 'LintRule' does not conform to the 'Sendable' protocol
11 | 	var info: RuleInfo { get }
12 | 	func scan(table: StringsTable, url: Foundation.URL, config: Linter.Config.Rule?) throws -> [LintRuleViolation]
/Users/admin/builder/spi-builder-workspace/Sources/RayGun/Lint Rules/Linter.swift:49:27: warning: stored property 'violations' of 'Sendable'-conforming struct 'Error' has non-sendable type '[LintRuleViolation]'; this is an error in the Swift 6 language mode
 47 |
 48 | 	public struct Error: LocalizedError {
 49 | 		public private(set) var violations: [LintRuleViolation]
    |                           `- warning: stored property 'violations' of 'Sendable'-conforming struct 'Error' has non-sendable type '[LintRuleViolation]'; this is an error in the Swift 6 language mode
 50 |
 51 | 		public init(_ violations: [LintRuleViolation]) {
/Users/admin/builder/spi-builder-workspace/Sources/RayGun/Lint Rules/LintRule.swift:31:15: note: consider making struct 'LintRuleViolation' conform to the 'Sendable' protocol
29 | }
30 |
31 | public struct LintRuleViolation {
   |               `- note: consider making struct 'LintRuleViolation' conform to the 'Sendable' protocol
32 | 	public struct Location: CustomStringConvertible {
33 | 		public let file: Foundation.URL
[43/85] Compiling Yams Constructor.swift
[44/85] Compiling Yams Decoder.swift
[45/85] Emitting module SwiftyTextTable
[46/85] Compiling SwiftyTextTable TextTable.swift
[47/85] Compiling Yams Node.Scalar.swift
/Users/admin/builder/spi-builder-workspace/Sources/RayGun/Strings Table/PlaceholderType.swift:18:13: warning: static property 'unknown' is not concurrency-safe because non-'Sendable' type 'PlaceholderType' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public enum PlaceholderType: String, Codable {
   |             `- note: consider making enum 'PlaceholderType' conform to the 'Sendable' protocol
11 | 	case object = "String"
12 | 	case float = "Float"
   :
16 | 	case pointer = "UnsafeRawPointer"
17 |
18 | 	static let unknown = pointer
   |             |- warning: static property 'unknown' is not concurrency-safe because non-'Sendable' type 'PlaceholderType' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'unknown' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |
20 | 	init?(_ string: String) {
[48/85] Compiling Yams Node.Sequence.swift
/Users/admin/builder/spi-builder-workspace/Sources/RayGun/Strings Table/PlaceholderType.swift:18:13: warning: static property 'unknown' is not concurrency-safe because non-'Sendable' type 'PlaceholderType' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public enum PlaceholderType: String, Codable {
   |             `- note: consider making enum 'PlaceholderType' conform to the 'Sendable' protocol
11 | 	case object = "String"
12 | 	case float = "Float"
   :
16 | 	case pointer = "UnsafeRawPointer"
17 |
18 | 	static let unknown = pointer
   |             |- warning: static property 'unknown' is not concurrency-safe because non-'Sendable' type 'PlaceholderType' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'unknown' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |
20 | 	init?(_ string: String) {
[49/85] Compiling RayGun StringsTable+Entry.swift
[50/85] Compiling ObjectCoder ObjectEncoder+UnkeyedContainer.swift
[51/85] Compiling ObjectCoder ObjectEncoder+SingleValueContainer.swift
[52/85] Compiling ObjectCoder _NSObjectDecoder.swift
[53/85] Compiling ObjectCoder ObjectEncoder+KeyedContainer.swift
[54/85] Compiling ObjectCoder ObjectEncoder+Boxing.swift
[55/85] Compiling ObjectCoder _NSObjectDecoder+Unboxing.swift
[58/85] Compiling ObjectCoder UnkeyedContainer.swift
[59/85] Emitting module ObjectCoder
[60/85] Compiling Yams Representer.swift
[61/85] Compiling Yams Resolver.swift
[62/85] Compiling RayGun StringsTable.swift
[63/85] Compiling RayGun StringsTableLoader.swift
/Users/admin/builder/spi-builder-workspace/Sources/RayGun/Strings Table/StringsTableLoader.swift:26:21: warning: static property 'lineNumbers' is not concurrency-safe because non-'Sendable' type 'StringsTableLoader.Options' may have shared mutable state; this is an error in the Swift 6 language mode
 20 | 	}
 21 |
 22 | 	public struct Options: OptionSet {
    |                `- note: consider making struct 'Options' conform to the 'Sendable' protocol
 23 | 		public private(set) var rawValue: UInt
 24 | 		public init(rawValue: UInt) { self.rawValue = rawValue }
 25 |
 26 | 		public static let lineNumbers = Options(rawValue: 1 << 0)
    |                     |- warning: static property 'lineNumbers' is not concurrency-safe because non-'Sendable' type 'StringsTableLoader.Options' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'lineNumbers' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 27 | 		public static let ignoreCached = Options(rawValue: 1 << 1)
 28 | 		public static let singleLocale = Options(rawValue: 1 << 2)
/Users/admin/builder/spi-builder-workspace/Sources/RayGun/Strings Table/StringsTableLoader.swift:27:21: warning: static property 'ignoreCached' is not concurrency-safe because non-'Sendable' type 'StringsTableLoader.Options' may have shared mutable state; this is an error in the Swift 6 language mode
 20 | 	}
 21 |
 22 | 	public struct Options: OptionSet {
    |                `- note: consider making struct 'Options' conform to the 'Sendable' protocol
 23 | 		public private(set) var rawValue: UInt
 24 | 		public init(rawValue: UInt) { self.rawValue = rawValue }
 25 |
 26 | 		public static let lineNumbers = Options(rawValue: 1 << 0)
 27 | 		public static let ignoreCached = Options(rawValue: 1 << 1)
    |                     |- warning: static property 'ignoreCached' is not concurrency-safe because non-'Sendable' type 'StringsTableLoader.Options' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'ignoreCached' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 28 | 		public static let singleLocale = Options(rawValue: 1 << 2)
 29 | 	}
/Users/admin/builder/spi-builder-workspace/Sources/RayGun/Strings Table/StringsTableLoader.swift:28:21: warning: static property 'singleLocale' is not concurrency-safe because non-'Sendable' type 'StringsTableLoader.Options' may have shared mutable state; this is an error in the Swift 6 language mode
 20 | 	}
 21 |
 22 | 	public struct Options: OptionSet {
    |                `- note: consider making struct 'Options' conform to the 'Sendable' protocol
 23 | 		public private(set) var rawValue: UInt
 24 | 		public init(rawValue: UInt) { self.rawValue = rawValue }
    :
 26 | 		public static let lineNumbers = Options(rawValue: 1 << 0)
 27 | 		public static let ignoreCached = Options(rawValue: 1 << 1)
 28 | 		public static let singleLocale = Options(rawValue: 1 << 2)
    |                     |- warning: static property 'singleLocale' is not concurrency-safe because non-'Sendable' type 'StringsTableLoader.Options' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'singleLocale' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 29 | 	}
 30 |
/Users/admin/builder/spi-builder-workspace/Sources/RayGun/Strings Table/StringsTableLoader.swift:163:55: warning: 'encodedOffset' is deprecated: encodedOffset has been deprecated as most common usage is incorrect. Use utf16Offset(in:) to achieve the same behavior.
161 | 		if options.contains(.lineNumbers) {
162 | 			baseString.enumerateSubstrings(in: baseString.startIndex..<baseString.endIndex, options: [.byLines, .substringNotRequired]) { (_, substringRange, _, stop) in
163 | 				newlineLocations.append(substringRange.lowerBound.encodedOffset)
    |                                                       `- warning: 'encodedOffset' is deprecated: encodedOffset has been deprecated as most common usage is incorrect. Use utf16Offset(in:) to achieve the same behavior.
164 | 			}
165 | 		}
[64/85] Emitting module Yams
[71/85] Emitting module RayGun
/Users/admin/builder/spi-builder-workspace/Sources/RayGun/Lint Rules/Linter.swift:41:20: warning: static property 'allRules' is not concurrency-safe because non-'Sendable' type '[any LintRule]' may have shared mutable state; this is an error in the Swift 6 language mode
 39 | 	public static let fileName = ".stringray.yml"
 40 |
 41 | 	public static let allRules: [LintRule] = [
    |                    |- warning: static property 'allRules' is not concurrency-safe because non-'Sendable' type '[any LintRule]' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'allRules' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 42 | 		MissingLocalizationLintRule(),
 43 | 		OrphanedLocalizationLintRule(),
/Users/admin/builder/spi-builder-workspace/Sources/RayGun/Lint Rules/LintRule.swift:10:17: note: protocol 'LintRule' does not conform to the 'Sendable' protocol
 8 | import Foundation
 9 |
10 | public protocol LintRule {
   |                 `- note: protocol 'LintRule' does not conform to the 'Sendable' protocol
11 | 	var info: RuleInfo { get }
12 | 	func scan(table: StringsTable, url: Foundation.URL, config: Linter.Config.Rule?) throws -> [LintRuleViolation]
/Users/admin/builder/spi-builder-workspace/Sources/RayGun/Lint Rules/Linter.swift:49:27: warning: stored property 'violations' of 'Sendable'-conforming struct 'Error' has non-sendable type '[LintRuleViolation]'; this is an error in the Swift 6 language mode
 47 |
 48 | 	public struct Error: LocalizedError {
 49 | 		public private(set) var violations: [LintRuleViolation]
    |                           `- warning: stored property 'violations' of 'Sendable'-conforming struct 'Error' has non-sendable type '[LintRuleViolation]'; this is an error in the Swift 6 language mode
 50 |
 51 | 		public init(_ violations: [LintRuleViolation]) {
/Users/admin/builder/spi-builder-workspace/Sources/RayGun/Lint Rules/LintRule.swift:31:15: note: consider making struct 'LintRuleViolation' conform to the 'Sendable' protocol
29 | }
30 |
31 | public struct LintRuleViolation {
   |               `- note: consider making struct 'LintRuleViolation' conform to the 'Sendable' protocol
32 | 	public struct Location: CustomStringConvertible {
33 | 		public let file: Foundation.URL
/Users/admin/builder/spi-builder-workspace/Sources/RayGun/Strings Table/PlaceholderType.swift:18:13: warning: static property 'unknown' is not concurrency-safe because non-'Sendable' type 'PlaceholderType' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public enum PlaceholderType: String, Codable {
   |             `- note: consider making enum 'PlaceholderType' conform to the 'Sendable' protocol
11 | 	case object = "String"
12 | 	case float = "Float"
   :
16 | 	case pointer = "UnsafeRawPointer"
17 |
18 | 	static let unknown = pointer
   |             |- warning: static property 'unknown' is not concurrency-safe because non-'Sendable' type 'PlaceholderType' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'unknown' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |
20 | 	init?(_ string: String) {
/Users/admin/builder/spi-builder-workspace/Sources/RayGun/Strings Table/StringsTableLoader.swift:26:21: warning: static property 'lineNumbers' is not concurrency-safe because non-'Sendable' type 'StringsTableLoader.Options' may have shared mutable state; this is an error in the Swift 6 language mode
 20 | 	}
 21 |
 22 | 	public struct Options: OptionSet {
    |                `- note: consider making struct 'Options' conform to the 'Sendable' protocol
 23 | 		public private(set) var rawValue: UInt
 24 | 		public init(rawValue: UInt) { self.rawValue = rawValue }
 25 |
 26 | 		public static let lineNumbers = Options(rawValue: 1 << 0)
    |                     |- warning: static property 'lineNumbers' is not concurrency-safe because non-'Sendable' type 'StringsTableLoader.Options' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'lineNumbers' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 27 | 		public static let ignoreCached = Options(rawValue: 1 << 1)
 28 | 		public static let singleLocale = Options(rawValue: 1 << 2)
/Users/admin/builder/spi-builder-workspace/Sources/RayGun/Strings Table/StringsTableLoader.swift:27:21: warning: static property 'ignoreCached' is not concurrency-safe because non-'Sendable' type 'StringsTableLoader.Options' may have shared mutable state; this is an error in the Swift 6 language mode
 20 | 	}
 21 |
 22 | 	public struct Options: OptionSet {
    |                `- note: consider making struct 'Options' conform to the 'Sendable' protocol
 23 | 		public private(set) var rawValue: UInt
 24 | 		public init(rawValue: UInt) { self.rawValue = rawValue }
 25 |
 26 | 		public static let lineNumbers = Options(rawValue: 1 << 0)
 27 | 		public static let ignoreCached = Options(rawValue: 1 << 1)
    |                     |- warning: static property 'ignoreCached' is not concurrency-safe because non-'Sendable' type 'StringsTableLoader.Options' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'ignoreCached' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 28 | 		public static let singleLocale = Options(rawValue: 1 << 2)
 29 | 	}
/Users/admin/builder/spi-builder-workspace/Sources/RayGun/Strings Table/StringsTableLoader.swift:28:21: warning: static property 'singleLocale' is not concurrency-safe because non-'Sendable' type 'StringsTableLoader.Options' may have shared mutable state; this is an error in the Swift 6 language mode
 20 | 	}
 21 |
 22 | 	public struct Options: OptionSet {
    |                `- note: consider making struct 'Options' conform to the 'Sendable' protocol
 23 | 		public private(set) var rawValue: UInt
 24 | 		public init(rawValue: UInt) { self.rawValue = rawValue }
    :
 26 | 		public static let lineNumbers = Options(rawValue: 1 << 0)
 27 | 		public static let ignoreCached = Options(rawValue: 1 << 1)
 28 | 		public static let singleLocale = Options(rawValue: 1 << 2)
    |                     |- warning: static property 'singleLocale' is not concurrency-safe because non-'Sendable' type 'StringsTableLoader.Options' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'singleLocale' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 29 | 	}
 30 |
[78/85] Compiling ObjectCoder ObjectEncoder.swift
[79/127] Compiling RayGun OrderedSet.swift
[80/137] Compiling POSIX isatty.swift
[81/137] Compiling POSIX exit.swift
[82/137] Compiling POSIX readdir.swift
[83/173] Compiling XcodeProject PBXTarget+Extensions.swift
[84/173] Compiling XcodeProject PBXBuildPhase.swift
[85/173] Compiling XcodeProject PBXCopyFilesBuildPhase.swift
[86/173] Compiling XcodeProject PBXFrameworksBuildPhase.swift
[87/173] Compiling XcodeProject PBXHeadersBuildPhase.swift
[88/173] Compiling XcodeProject PBXResourcesBuildPhase.swift
[89/178] Compiling Basic DiagnosticsEngine.swift
[90/178] Compiling Basic DictionaryExtensions.swift
[91/178] Compiling Basic DictionaryLiteralExtensions.swift
[92/178] Compiling Basic EditDistance.swift
[93/181] Compiling Basic PathShims.swift
[94/181] Compiling Basic Process.swift
[95/181] Compiling Basic ProcessSet.swift
[96/181] Compiling Basic RegEx.swift
[97/181] Compiling Basic OrderedDictionary.swift
[98/181] Compiling Basic OrderedSet.swift
[99/181] Compiling Basic OutputByteStream.swift
[100/181] Compiling Basic Path.swift
[101/181] Compiling Basic KeyedPair.swift
[102/181] Compiling Basic LazyCache.swift
[103/181] Compiling Basic Lock.swift
[104/181] Compiling Basic ObjectIdentifierProtocol.swift
[105/181] Compiling Basic StringConversions.swift
[110/181] Compiling XcodeProject PBXTargetDependency.swift
[111/181] Compiling XcodeProject PBXFileReference.swift
[112/181] Compiling XcodeProject PBXGroup.swift
[113/181] Compiling XcodeProject PBXReference.swift
[114/181] Compiling XcodeProject PBXReferenceProxy.swift
[115/181] Compiling Basic Thread.swift
[116/181] Compiling Basic Tuple.swift
[117/181] Compiling Basic misc.swift
[118/181] Compiling XcodeProject PBXNativeTarget.swift
[119/181] Compiling XcodeProject PBXTarget.swift
[120/181] Compiling Basic SynchronizedQueue.swift
[121/181] Compiling Basic TemporaryFile.swift
[122/181] Compiling Basic TerminalController.swift
[123/181] Compiling Basic Result.swift
[124/181] Compiling Basic SHA256.swift
[125/181] Compiling Basic SortedArray.swift
[129/181] Emitting module Basic
[130/181] Compiling Basic CollectionAlgorithms.swift
[131/181] Compiling Basic CollectionExtensions.swift
[132/181] Compiling Basic Condition.swift
[133/181] Compiling Basic DeltaAlgorithm.swift
[134/181] Compiling Basic Await.swift
[135/181] Compiling Basic ByteString.swift
[136/181] Compiling Basic CStringArray.swift
[137/181] Compiling Basic CacheableSequence.swift
[138/181] Compiling Basic FileSystem.swift
[139/181] Compiling Basic GraphAlgorithms.swift
[140/181] Compiling Basic JSON.swift
[141/181] Compiling Basic JSONMapper.swift
[153/181] Emitting module XcodeProject
[158/181] Compiling XcodeProject XCBuildConfiguration.swift
[159/181] Compiling XcodeProject XCConfigurationList.swift
[160/181] Compiling XcodeProject XCProjectReferenceInfo.swift
[161/181] Compiling XcodeProject ProjectFile.swift
[162/181] Compiling XcodeProject Workspace.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-package-manager/Sources/Basic/Await.swift:18:28: error: value of type '(@escaping (Result<T, ErrorType>) -> Void) -> Void' has no member 'dematerialize'
16 | /// - Throws: The error wrapped by the async method's result
17 | public func await<T, ErrorType>(_ body: (@escaping (Result<T, ErrorType>) -> Void) -> Void) throws -> T {
18 |     return try await(body).dematerialize()
   |                            `- error: value of type '(@escaping (Result<T, ErrorType>) -> Void) -> Void' has no member 'dematerialize'
19 | }
20 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-package-manager/Sources/Basic/Await.swift:18:28: error: value of type '(@escaping (Result<T, ErrorType>) -> Void) -> Void' has no member 'dematerialize'
16 | /// - Throws: The error wrapped by the async method's result
17 | public func await<T, ErrorType>(_ body: (@escaping (Result<T, ErrorType>) -> Void) -> Void) throws -> T {
18 |     return try await(body).dematerialize()
   |                            `- error: value of type '(@escaping (Result<T, ErrorType>) -> Void) -> Void' has no member 'dematerialize'
19 | }
20 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-package-manager/Sources/Basic/Await.swift:18:28: error: value of type '(@escaping (Result<T, ErrorType>) -> Void) -> Void' has no member 'dematerialize'
16 | /// - Throws: The error wrapped by the async method's result
17 | public func await<T, ErrorType>(_ body: (@escaping (Result<T, ErrorType>) -> Void) -> Void) throws -> T {
18 |     return try await(body).dematerialize()
   |                            `- error: value of type '(@escaping (Result<T, ErrorType>) -> Void) -> Void' has no member 'dematerialize'
19 | }
20 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-package-manager/Sources/Basic/Await.swift:18:28: error: value of type '(@escaping (Result<T, ErrorType>) -> Void) -> Void' has no member 'dematerialize'
16 | /// - Throws: The error wrapped by the async method's result
17 | public func await<T, ErrorType>(_ body: (@escaping (Result<T, ErrorType>) -> Void) -> Void) throws -> T {
18 |     return try await(body).dematerialize()
   |                            `- error: value of type '(@escaping (Result<T, ErrorType>) -> Void) -> Void' has no member 'dematerialize'
19 | }
20 |
Fetching https://github.com/g-Off/CommandRegistry.git
Fetching https://github.com/scottrhoyt/SwiftyTextTable.git
Fetching https://github.com/jpsim/Yams.git
Fetching https://github.com/g-Off/XcodeProject.git
Fetching https://github.com/apple/swift-package-manager.git
[1/929] Fetching swiftytexttable
[11/1542] Fetching swiftytexttable, xcodeproject
[36/1575] Fetching swiftytexttable, xcodeproject, commandregistry
[424/10912] Fetching swiftytexttable, xcodeproject, commandregistry, yams
Fetched https://github.com/jpsim/Yams.git from cache (2.00s)
[1/132176] Fetching swift-package-manager
Fetched https://github.com/g-Off/XcodeProject.git from cache (21.96s)
Fetched https://github.com/g-Off/CommandRegistry.git from cache (21.96s)
Fetched https://github.com/scottrhoyt/SwiftyTextTable.git from cache (21.96s)
Fetched https://github.com/apple/swift-package-manager.git from cache (21.96s)
Computing version for https://github.com/apple/swift-package-manager.git
Computed https://github.com/apple/swift-package-manager.git at 0.3.0 (2.66s)
Computing version for https://github.com/g-Off/XcodeProject.git
Computed https://github.com/g-Off/XcodeProject.git at 0.5.0 (0.66s)
Fetching https://github.com/g-Off/ObjectCoder.git
[1/33] Fetching objectcoder
Fetched https://github.com/g-Off/ObjectCoder.git from cache (0.60s)
Computing version for https://github.com/scottrhoyt/SwiftyTextTable.git
Computed https://github.com/scottrhoyt/SwiftyTextTable.git at 0.9.0 (0.68s)
Computing version for https://github.com/jpsim/Yams.git
Computed https://github.com/jpsim/Yams.git at 1.0.2 (0.69s)
Computing version for https://github.com/g-Off/ObjectCoder.git
Computed https://github.com/g-Off/ObjectCoder.git at 0.1.0 (0.65s)
Computing version for https://github.com/g-Off/CommandRegistry.git
Computed https://github.com/g-Off/CommandRegistry.git at 0.1.2 (0.66s)
Creating working copy for https://github.com/apple/swift-package-manager.git
Working copy of https://github.com/apple/swift-package-manager.git resolved at 0.3.0
Creating working copy for https://github.com/g-Off/ObjectCoder.git
Working copy of https://github.com/g-Off/ObjectCoder.git resolved at 0.1.0
Creating working copy for https://github.com/g-Off/CommandRegistry.git
Working copy of https://github.com/g-Off/CommandRegistry.git resolved at 0.1.2
Creating working copy for https://github.com/g-Off/XcodeProject.git
Working copy of https://github.com/g-Off/XcodeProject.git resolved at 0.5.0
Creating working copy for https://github.com/jpsim/Yams.git
Working copy of https://github.com/jpsim/Yams.git resolved at 1.0.2
Creating working copy for https://github.com/scottrhoyt/SwiftyTextTable.git
Working copy of https://github.com/scottrhoyt/SwiftyTextTable.git resolved at 0.9.0
BUILD FAILURE 6.0 macosSpm
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.