Build Information
Failed to build CommandRegistry, reference 0.1.2 (ee7ff1
), with Swift 6.1 for Linux on 25 Apr 2025 23:12:33 UTC.
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4606859-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.1-latest swift build --triple x86_64-unknown-linux-gnu 2>&1
Build Log
========================================
RunAll
========================================
Builder version: 4.61.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/g-Off/CommandRegistry.git
Reference: 0.1.2
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/g-Off/CommandRegistry
* tag 0.1.2 -> FETCH_HEAD
HEAD is now at ee7ff13 pinning to SPM 0.3.0
Cloned https://github.com/g-Off/CommandRegistry.git
Revision (git rev-parse @):
ee7ff131c7e6c2d195954ab69c8c0feaaee988e9
SUCCESS checkout https://github.com/g-Off/CommandRegistry.git at 0.1.2
========================================
Build
========================================
Selected platform: linux
Swift version: 6.1
Building package at path: $PWD
https://github.com/g-Off/CommandRegistry.git
https://github.com/g-Off/CommandRegistry.git
WARNING: environment variable SUPPRESS_SWIFT_6_FLAGS is not set
{
"dependencies" : [
{
"identity" : "swift-package-manager",
"requirement" : {
"exact" : [
"0.3.0"
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-package-manager.git"
}
],
"manifest_display_name" : "CommandRegistry",
"name" : "CommandRegistry",
"path" : "/host/spi-builder-workspace",
"platforms" : [
],
"products" : [
{
"name" : "CommandRegistry",
"targets" : [
"CommandRegistry"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "CommandRegistryTests",
"module_type" : "SwiftTarget",
"name" : "CommandRegistryTests",
"path" : "Tests/CommandRegistryTests",
"sources" : [
"CommandRegistryTests.swift",
"XCTestManifests.swift"
],
"target_dependencies" : [
"CommandRegistry"
],
"type" : "test"
},
{
"c99name" : "CommandRegistry",
"module_type" : "SwiftTarget",
"name" : "CommandRegistry",
"path" : "Sources/CommandRegistry",
"product_dependencies" : [
"Utility"
],
"product_memberships" : [
"CommandRegistry"
],
"sources" : [
"Command.swift",
"CommandRegistry.swift",
"Exports.swift"
],
"type" : "library"
}
],
"tools_version" : "5.0"
}
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.1-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures 2>&1
basic-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:3bdcac04179f4ed3e5b8e9dbd6e74bbf5ebc0f4fde48bbaad7d1e5c757e65bcb
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.1-latest
Fetching https://github.com/apple/swift-package-manager.git
[1/151213] Fetching swift-package-manager
Fetched https://github.com/apple/swift-package-manager.git from cache (14.39s)
Computing version for https://github.com/apple/swift-package-manager.git
Computed https://github.com/apple/swift-package-manager.git at 0.3.0 (17.26s)
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
Building for debugging...
[0/7] Write sources
[5/7] Compiling clibc libc.c
[5/7] Write swift-version-24593BA9C3E375BF.txt
[8/9] Emitting module SPMLibc
[9/9] Compiling SPMLibc libc.swift
[11/21] Compiling POSIX rename.swift
[12/21] Compiling POSIX realpath.swift
[13/21] Compiling POSIX stat.swift
[14/22] Emitting module POSIX
[15/22] Compiling POSIX Error.swift
[16/22] Compiling POSIX chdir.swift
[17/22] Compiling POSIX getcwd.swift
[18/22] Compiling POSIX isatty.swift
[19/22] Compiling POSIX readdir.swift
[20/22] Compiling POSIX env.swift
[21/22] Compiling POSIX exit.swift
[22/22] Compiling POSIX usleep.swift
[24/58] Compiling Basic Await.swift
/host/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 |
[25/58] Compiling Basic ByteString.swift
/host/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 |
[26/58] Compiling Basic CStringArray.swift
/host/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 |
[27/58] Compiling Basic CacheableSequence.swift
/host/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 |
[28/58] Compiling Basic CollectionAlgorithms.swift
/host/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 |
[29/62] Compiling Basic SortedArray.swift
[30/62] Compiling Basic StringConversions.swift
[31/62] Compiling Basic SynchronizedQueue.swift
[32/62] Compiling Basic TemporaryFile.swift
[33/62] Emitting module Basic
[34/62] Compiling Basic JSONMapper.swift
[35/62] Compiling Basic KeyedPair.swift
[36/62] Compiling Basic LazyCache.swift
[37/62] Compiling Basic Lock.swift
[38/62] Compiling Basic ObjectIdentifierProtocol.swift
[39/62] Compiling Basic TerminalController.swift
[40/62] Compiling Basic Thread.swift
[41/62] Compiling Basic Tuple.swift
[42/62] Compiling Basic misc.swift
[43/62] Compiling Basic CollectionExtensions.swift
[44/62] Compiling Basic Condition.swift
[45/62] Compiling Basic DeltaAlgorithm.swift
[46/62] Compiling Basic DiagnosticsEngine.swift
[47/62] Compiling Basic DictionaryExtensions.swift
[48/62] Compiling Basic DictionaryLiteralExtensions.swift
[49/62] Compiling Basic EditDistance.swift
[50/62] Compiling Basic FileSystem.swift
[51/62] Compiling Basic GraphAlgorithms.swift
[52/62] Compiling Basic JSON.swift
[53/62] Compiling Basic OrderedDictionary.swift
[54/62] Compiling Basic OrderedSet.swift
[55/62] Compiling Basic OutputByteStream.swift
[56/62] Compiling Basic Path.swift
[57/62] Compiling Basic PathShims.swift
[58/62] Compiling Basic Process.swift
/host/spi-builder-workspace/.build/checkouts/swift-package-manager/Sources/Basic/Process.swift:293:59: error: value of optional type 'UnsafeMutablePointer<CChar>?' (aka 'Optional<UnsafeMutablePointer<Int8>>') must be unwrapped to a value of type 'UnsafeMutablePointer<CChar>' (aka 'UnsafeMutablePointer<Int8>')
291 | defer { free(devNull) }
292 | // Open /dev/null as stdin.
293 | posix_spawn_file_actions_addopen(&fileActions, 0, devNull, O_RDONLY, 0)
| |- error: value of optional type 'UnsafeMutablePointer<CChar>?' (aka 'Optional<UnsafeMutablePointer<Int8>>') must be unwrapped to a value of type 'UnsafeMutablePointer<CChar>' (aka 'UnsafeMutablePointer<Int8>')
| |- note: coalesce using '??' to provide a default when the optional value contains 'nil'
| `- note: force-unwrap using '!' to abort execution if the optional value contains 'nil'
294 |
295 | var outputPipe: [Int32] = [0, 0]
/host/spi-builder-workspace/.build/checkouts/swift-package-manager/Sources/Basic/Process.swift:318:54: error: value of optional type 'UnsafeMutablePointer<Int8>?' must be unwrapped to a value of type 'UnsafeMutablePointer<Int8>'
316 | let argv = CStringArray(arguments)
317 | let env = CStringArray(environment.map({ "\($0.0)=\($0.1)" }))
318 | let rv = posix_spawnp(&processID, argv.cArray[0], &fileActions, &attributes, argv.cArray, env.cArray)
| |- error: value of optional type 'UnsafeMutablePointer<Int8>?' must be unwrapped to a value of type 'UnsafeMutablePointer<Int8>'
| |- note: coalesce using '??' to provide a default when the optional value contains 'nil'
| `- note: force-unwrap using '!' to abort execution if the optional value contains 'nil'
319 |
320 | guard rv == 0 else {
[59/62] Compiling Basic ProcessSet.swift
/host/spi-builder-workspace/.build/checkouts/swift-package-manager/Sources/Basic/Process.swift:293:59: error: value of optional type 'UnsafeMutablePointer<CChar>?' (aka 'Optional<UnsafeMutablePointer<Int8>>') must be unwrapped to a value of type 'UnsafeMutablePointer<CChar>' (aka 'UnsafeMutablePointer<Int8>')
291 | defer { free(devNull) }
292 | // Open /dev/null as stdin.
293 | posix_spawn_file_actions_addopen(&fileActions, 0, devNull, O_RDONLY, 0)
| |- error: value of optional type 'UnsafeMutablePointer<CChar>?' (aka 'Optional<UnsafeMutablePointer<Int8>>') must be unwrapped to a value of type 'UnsafeMutablePointer<CChar>' (aka 'UnsafeMutablePointer<Int8>')
| |- note: coalesce using '??' to provide a default when the optional value contains 'nil'
| `- note: force-unwrap using '!' to abort execution if the optional value contains 'nil'
294 |
295 | var outputPipe: [Int32] = [0, 0]
/host/spi-builder-workspace/.build/checkouts/swift-package-manager/Sources/Basic/Process.swift:318:54: error: value of optional type 'UnsafeMutablePointer<Int8>?' must be unwrapped to a value of type 'UnsafeMutablePointer<Int8>'
316 | let argv = CStringArray(arguments)
317 | let env = CStringArray(environment.map({ "\($0.0)=\($0.1)" }))
318 | let rv = posix_spawnp(&processID, argv.cArray[0], &fileActions, &attributes, argv.cArray, env.cArray)
| |- error: value of optional type 'UnsafeMutablePointer<Int8>?' must be unwrapped to a value of type 'UnsafeMutablePointer<Int8>'
| |- note: coalesce using '??' to provide a default when the optional value contains 'nil'
| `- note: force-unwrap using '!' to abort execution if the optional value contains 'nil'
319 |
320 | guard rv == 0 else {
[60/62] Compiling Basic RegEx.swift
/host/spi-builder-workspace/.build/checkouts/swift-package-manager/Sources/Basic/Process.swift:293:59: error: value of optional type 'UnsafeMutablePointer<CChar>?' (aka 'Optional<UnsafeMutablePointer<Int8>>') must be unwrapped to a value of type 'UnsafeMutablePointer<CChar>' (aka 'UnsafeMutablePointer<Int8>')
291 | defer { free(devNull) }
292 | // Open /dev/null as stdin.
293 | posix_spawn_file_actions_addopen(&fileActions, 0, devNull, O_RDONLY, 0)
| |- error: value of optional type 'UnsafeMutablePointer<CChar>?' (aka 'Optional<UnsafeMutablePointer<Int8>>') must be unwrapped to a value of type 'UnsafeMutablePointer<CChar>' (aka 'UnsafeMutablePointer<Int8>')
| |- note: coalesce using '??' to provide a default when the optional value contains 'nil'
| `- note: force-unwrap using '!' to abort execution if the optional value contains 'nil'
294 |
295 | var outputPipe: [Int32] = [0, 0]
/host/spi-builder-workspace/.build/checkouts/swift-package-manager/Sources/Basic/Process.swift:318:54: error: value of optional type 'UnsafeMutablePointer<Int8>?' must be unwrapped to a value of type 'UnsafeMutablePointer<Int8>'
316 | let argv = CStringArray(arguments)
317 | let env = CStringArray(environment.map({ "\($0.0)=\($0.1)" }))
318 | let rv = posix_spawnp(&processID, argv.cArray[0], &fileActions, &attributes, argv.cArray, env.cArray)
| |- error: value of optional type 'UnsafeMutablePointer<Int8>?' must be unwrapped to a value of type 'UnsafeMutablePointer<Int8>'
| |- note: coalesce using '??' to provide a default when the optional value contains 'nil'
| `- note: force-unwrap using '!' to abort execution if the optional value contains 'nil'
319 |
320 | guard rv == 0 else {
[61/62] Compiling Basic Result.swift
/host/spi-builder-workspace/.build/checkouts/swift-package-manager/Sources/Basic/Process.swift:293:59: error: value of optional type 'UnsafeMutablePointer<CChar>?' (aka 'Optional<UnsafeMutablePointer<Int8>>') must be unwrapped to a value of type 'UnsafeMutablePointer<CChar>' (aka 'UnsafeMutablePointer<Int8>')
291 | defer { free(devNull) }
292 | // Open /dev/null as stdin.
293 | posix_spawn_file_actions_addopen(&fileActions, 0, devNull, O_RDONLY, 0)
| |- error: value of optional type 'UnsafeMutablePointer<CChar>?' (aka 'Optional<UnsafeMutablePointer<Int8>>') must be unwrapped to a value of type 'UnsafeMutablePointer<CChar>' (aka 'UnsafeMutablePointer<Int8>')
| |- note: coalesce using '??' to provide a default when the optional value contains 'nil'
| `- note: force-unwrap using '!' to abort execution if the optional value contains 'nil'
294 |
295 | var outputPipe: [Int32] = [0, 0]
/host/spi-builder-workspace/.build/checkouts/swift-package-manager/Sources/Basic/Process.swift:318:54: error: value of optional type 'UnsafeMutablePointer<Int8>?' must be unwrapped to a value of type 'UnsafeMutablePointer<Int8>'
316 | let argv = CStringArray(arguments)
317 | let env = CStringArray(environment.map({ "\($0.0)=\($0.1)" }))
318 | let rv = posix_spawnp(&processID, argv.cArray[0], &fileActions, &attributes, argv.cArray, env.cArray)
| |- error: value of optional type 'UnsafeMutablePointer<Int8>?' must be unwrapped to a value of type 'UnsafeMutablePointer<Int8>'
| |- note: coalesce using '??' to provide a default when the optional value contains 'nil'
| `- note: force-unwrap using '!' to abort execution if the optional value contains 'nil'
319 |
320 | guard rv == 0 else {
[62/62] Compiling Basic SHA256.swift
/host/spi-builder-workspace/.build/checkouts/swift-package-manager/Sources/Basic/Process.swift:293:59: error: value of optional type 'UnsafeMutablePointer<CChar>?' (aka 'Optional<UnsafeMutablePointer<Int8>>') must be unwrapped to a value of type 'UnsafeMutablePointer<CChar>' (aka 'UnsafeMutablePointer<Int8>')
291 | defer { free(devNull) }
292 | // Open /dev/null as stdin.
293 | posix_spawn_file_actions_addopen(&fileActions, 0, devNull, O_RDONLY, 0)
| |- error: value of optional type 'UnsafeMutablePointer<CChar>?' (aka 'Optional<UnsafeMutablePointer<Int8>>') must be unwrapped to a value of type 'UnsafeMutablePointer<CChar>' (aka 'UnsafeMutablePointer<Int8>')
| |- note: coalesce using '??' to provide a default when the optional value contains 'nil'
| `- note: force-unwrap using '!' to abort execution if the optional value contains 'nil'
294 |
295 | var outputPipe: [Int32] = [0, 0]
/host/spi-builder-workspace/.build/checkouts/swift-package-manager/Sources/Basic/Process.swift:318:54: error: value of optional type 'UnsafeMutablePointer<Int8>?' must be unwrapped to a value of type 'UnsafeMutablePointer<Int8>'
316 | let argv = CStringArray(arguments)
317 | let env = CStringArray(environment.map({ "\($0.0)=\($0.1)" }))
318 | let rv = posix_spawnp(&processID, argv.cArray[0], &fileActions, &attributes, argv.cArray, env.cArray)
| |- error: value of optional type 'UnsafeMutablePointer<Int8>?' must be unwrapped to a value of type 'UnsafeMutablePointer<Int8>'
| |- note: coalesce using '??' to provide a default when the optional value contains 'nil'
| `- note: force-unwrap using '!' to abort execution if the optional value contains 'nil'
319 |
320 | guard rv == 0 else {
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.1-latest swift build --triple x86_64-unknown-linux-gnu 2>&1
basic-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:3bdcac04179f4ed3e5b8e9dbd6e74bbf5ebc0f4fde48bbaad7d1e5c757e65bcb
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.1-latest
[0/1] Planning build
Building for debugging...
[0/1] Write swift-version-24593BA9C3E375BF.txt
[2/3] Compiling SPMLibc libc.swift
[3/3] Emitting module SPMLibc
[5/15] Compiling POSIX stat.swift
[6/15] Compiling POSIX rename.swift
[7/16] Compiling POSIX env.swift
[8/16] Compiling POSIX exit.swift
[9/16] Compiling POSIX readdir.swift
[10/16] Compiling POSIX realpath.swift
[11/16] Compiling POSIX getcwd.swift
[12/16] Compiling POSIX isatty.swift
[13/16] Emitting module POSIX
[14/16] Compiling POSIX Error.swift
[15/16] Compiling POSIX chdir.swift
[16/16] Compiling POSIX usleep.swift
[18/52] Compiling Basic Await.swift
/host/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 |
[19/52] Compiling Basic ByteString.swift
/host/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 |
[20/52] Compiling Basic CStringArray.swift
/host/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 |
[21/52] Compiling Basic CacheableSequence.swift
/host/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 |
[22/52] Compiling Basic CollectionAlgorithms.swift
/host/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 |
[23/56] Compiling Basic CollectionExtensions.swift
[24/56] Compiling Basic Condition.swift
[25/56] Compiling Basic DeltaAlgorithm.swift
[26/56] Compiling Basic DiagnosticsEngine.swift
[27/56] Compiling Basic DictionaryExtensions.swift
[28/56] Emitting module Basic
[29/56] Compiling Basic Process.swift
/host/spi-builder-workspace/.build/checkouts/swift-package-manager/Sources/Basic/Process.swift:293:59: error: value of optional type 'UnsafeMutablePointer<CChar>?' (aka 'Optional<UnsafeMutablePointer<Int8>>') must be unwrapped to a value of type 'UnsafeMutablePointer<CChar>' (aka 'UnsafeMutablePointer<Int8>')
291 | defer { free(devNull) }
292 | // Open /dev/null as stdin.
293 | posix_spawn_file_actions_addopen(&fileActions, 0, devNull, O_RDONLY, 0)
| |- error: value of optional type 'UnsafeMutablePointer<CChar>?' (aka 'Optional<UnsafeMutablePointer<Int8>>') must be unwrapped to a value of type 'UnsafeMutablePointer<CChar>' (aka 'UnsafeMutablePointer<Int8>')
| |- note: coalesce using '??' to provide a default when the optional value contains 'nil'
| `- note: force-unwrap using '!' to abort execution if the optional value contains 'nil'
294 |
295 | var outputPipe: [Int32] = [0, 0]
/host/spi-builder-workspace/.build/checkouts/swift-package-manager/Sources/Basic/Process.swift:318:54: error: value of optional type 'UnsafeMutablePointer<Int8>?' must be unwrapped to a value of type 'UnsafeMutablePointer<Int8>'
316 | let argv = CStringArray(arguments)
317 | let env = CStringArray(environment.map({ "\($0.0)=\($0.1)" }))
318 | let rv = posix_spawnp(&processID, argv.cArray[0], &fileActions, &attributes, argv.cArray, env.cArray)
| |- error: value of optional type 'UnsafeMutablePointer<Int8>?' must be unwrapped to a value of type 'UnsafeMutablePointer<Int8>'
| |- note: coalesce using '??' to provide a default when the optional value contains 'nil'
| `- note: force-unwrap using '!' to abort execution if the optional value contains 'nil'
319 |
320 | guard rv == 0 else {
[30/56] Compiling Basic ProcessSet.swift
/host/spi-builder-workspace/.build/checkouts/swift-package-manager/Sources/Basic/Process.swift:293:59: error: value of optional type 'UnsafeMutablePointer<CChar>?' (aka 'Optional<UnsafeMutablePointer<Int8>>') must be unwrapped to a value of type 'UnsafeMutablePointer<CChar>' (aka 'UnsafeMutablePointer<Int8>')
291 | defer { free(devNull) }
292 | // Open /dev/null as stdin.
293 | posix_spawn_file_actions_addopen(&fileActions, 0, devNull, O_RDONLY, 0)
| |- error: value of optional type 'UnsafeMutablePointer<CChar>?' (aka 'Optional<UnsafeMutablePointer<Int8>>') must be unwrapped to a value of type 'UnsafeMutablePointer<CChar>' (aka 'UnsafeMutablePointer<Int8>')
| |- note: coalesce using '??' to provide a default when the optional value contains 'nil'
| `- note: force-unwrap using '!' to abort execution if the optional value contains 'nil'
294 |
295 | var outputPipe: [Int32] = [0, 0]
/host/spi-builder-workspace/.build/checkouts/swift-package-manager/Sources/Basic/Process.swift:318:54: error: value of optional type 'UnsafeMutablePointer<Int8>?' must be unwrapped to a value of type 'UnsafeMutablePointer<Int8>'
316 | let argv = CStringArray(arguments)
317 | let env = CStringArray(environment.map({ "\($0.0)=\($0.1)" }))
318 | let rv = posix_spawnp(&processID, argv.cArray[0], &fileActions, &attributes, argv.cArray, env.cArray)
| |- error: value of optional type 'UnsafeMutablePointer<Int8>?' must be unwrapped to a value of type 'UnsafeMutablePointer<Int8>'
| |- note: coalesce using '??' to provide a default when the optional value contains 'nil'
| `- note: force-unwrap using '!' to abort execution if the optional value contains 'nil'
319 |
320 | guard rv == 0 else {
[31/56] Compiling Basic RegEx.swift
/host/spi-builder-workspace/.build/checkouts/swift-package-manager/Sources/Basic/Process.swift:293:59: error: value of optional type 'UnsafeMutablePointer<CChar>?' (aka 'Optional<UnsafeMutablePointer<Int8>>') must be unwrapped to a value of type 'UnsafeMutablePointer<CChar>' (aka 'UnsafeMutablePointer<Int8>')
291 | defer { free(devNull) }
292 | // Open /dev/null as stdin.
293 | posix_spawn_file_actions_addopen(&fileActions, 0, devNull, O_RDONLY, 0)
| |- error: value of optional type 'UnsafeMutablePointer<CChar>?' (aka 'Optional<UnsafeMutablePointer<Int8>>') must be unwrapped to a value of type 'UnsafeMutablePointer<CChar>' (aka 'UnsafeMutablePointer<Int8>')
| |- note: coalesce using '??' to provide a default when the optional value contains 'nil'
| `- note: force-unwrap using '!' to abort execution if the optional value contains 'nil'
294 |
295 | var outputPipe: [Int32] = [0, 0]
/host/spi-builder-workspace/.build/checkouts/swift-package-manager/Sources/Basic/Process.swift:318:54: error: value of optional type 'UnsafeMutablePointer<Int8>?' must be unwrapped to a value of type 'UnsafeMutablePointer<Int8>'
316 | let argv = CStringArray(arguments)
317 | let env = CStringArray(environment.map({ "\($0.0)=\($0.1)" }))
318 | let rv = posix_spawnp(&processID, argv.cArray[0], &fileActions, &attributes, argv.cArray, env.cArray)
| |- error: value of optional type 'UnsafeMutablePointer<Int8>?' must be unwrapped to a value of type 'UnsafeMutablePointer<Int8>'
| |- note: coalesce using '??' to provide a default when the optional value contains 'nil'
| `- note: force-unwrap using '!' to abort execution if the optional value contains 'nil'
319 |
320 | guard rv == 0 else {
[32/56] Compiling Basic Result.swift
/host/spi-builder-workspace/.build/checkouts/swift-package-manager/Sources/Basic/Process.swift:293:59: error: value of optional type 'UnsafeMutablePointer<CChar>?' (aka 'Optional<UnsafeMutablePointer<Int8>>') must be unwrapped to a value of type 'UnsafeMutablePointer<CChar>' (aka 'UnsafeMutablePointer<Int8>')
291 | defer { free(devNull) }
292 | // Open /dev/null as stdin.
293 | posix_spawn_file_actions_addopen(&fileActions, 0, devNull, O_RDONLY, 0)
| |- error: value of optional type 'UnsafeMutablePointer<CChar>?' (aka 'Optional<UnsafeMutablePointer<Int8>>') must be unwrapped to a value of type 'UnsafeMutablePointer<CChar>' (aka 'UnsafeMutablePointer<Int8>')
| |- note: coalesce using '??' to provide a default when the optional value contains 'nil'
| `- note: force-unwrap using '!' to abort execution if the optional value contains 'nil'
294 |
295 | var outputPipe: [Int32] = [0, 0]
/host/spi-builder-workspace/.build/checkouts/swift-package-manager/Sources/Basic/Process.swift:318:54: error: value of optional type 'UnsafeMutablePointer<Int8>?' must be unwrapped to a value of type 'UnsafeMutablePointer<Int8>'
316 | let argv = CStringArray(arguments)
317 | let env = CStringArray(environment.map({ "\($0.0)=\($0.1)" }))
318 | let rv = posix_spawnp(&processID, argv.cArray[0], &fileActions, &attributes, argv.cArray, env.cArray)
| |- error: value of optional type 'UnsafeMutablePointer<Int8>?' must be unwrapped to a value of type 'UnsafeMutablePointer<Int8>'
| |- note: coalesce using '??' to provide a default when the optional value contains 'nil'
| `- note: force-unwrap using '!' to abort execution if the optional value contains 'nil'
319 |
320 | guard rv == 0 else {
[33/56] Compiling Basic SHA256.swift
/host/spi-builder-workspace/.build/checkouts/swift-package-manager/Sources/Basic/Process.swift:293:59: error: value of optional type 'UnsafeMutablePointer<CChar>?' (aka 'Optional<UnsafeMutablePointer<Int8>>') must be unwrapped to a value of type 'UnsafeMutablePointer<CChar>' (aka 'UnsafeMutablePointer<Int8>')
291 | defer { free(devNull) }
292 | // Open /dev/null as stdin.
293 | posix_spawn_file_actions_addopen(&fileActions, 0, devNull, O_RDONLY, 0)
| |- error: value of optional type 'UnsafeMutablePointer<CChar>?' (aka 'Optional<UnsafeMutablePointer<Int8>>') must be unwrapped to a value of type 'UnsafeMutablePointer<CChar>' (aka 'UnsafeMutablePointer<Int8>')
| |- note: coalesce using '??' to provide a default when the optional value contains 'nil'
| `- note: force-unwrap using '!' to abort execution if the optional value contains 'nil'
294 |
295 | var outputPipe: [Int32] = [0, 0]
/host/spi-builder-workspace/.build/checkouts/swift-package-manager/Sources/Basic/Process.swift:318:54: error: value of optional type 'UnsafeMutablePointer<Int8>?' must be unwrapped to a value of type 'UnsafeMutablePointer<Int8>'
316 | let argv = CStringArray(arguments)
317 | let env = CStringArray(environment.map({ "\($0.0)=\($0.1)" }))
318 | let rv = posix_spawnp(&processID, argv.cArray[0], &fileActions, &attributes, argv.cArray, env.cArray)
| |- error: value of optional type 'UnsafeMutablePointer<Int8>?' must be unwrapped to a value of type 'UnsafeMutablePointer<Int8>'
| |- note: coalesce using '??' to provide a default when the optional value contains 'nil'
| `- note: force-unwrap using '!' to abort execution if the optional value contains 'nil'
319 |
320 | guard rv == 0 else {
[34/56] Compiling Basic TerminalController.swift
[35/56] Compiling Basic Thread.swift
[36/56] Compiling Basic Tuple.swift
[37/56] Compiling Basic misc.swift
[38/56] Compiling Basic SortedArray.swift
[39/56] Compiling Basic StringConversions.swift
[40/56] Compiling Basic SynchronizedQueue.swift
[41/56] Compiling Basic TemporaryFile.swift
[42/56] Compiling Basic DictionaryLiteralExtensions.swift
[43/56] Compiling Basic EditDistance.swift
[44/56] Compiling Basic FileSystem.swift
[45/56] Compiling Basic GraphAlgorithms.swift
[46/56] Compiling Basic JSON.swift
[47/56] Compiling Basic JSONMapper.swift
[48/56] Compiling Basic KeyedPair.swift
[49/56] Compiling Basic LazyCache.swift
[50/56] Compiling Basic Lock.swift
[51/56] Compiling Basic ObjectIdentifierProtocol.swift
[52/56] Compiling Basic OrderedDictionary.swift
[53/56] Compiling Basic OrderedSet.swift
[54/56] Compiling Basic OutputByteStream.swift
[55/56] Compiling Basic Path.swift
[56/56] Compiling Basic PathShims.swift
BUILD FAILURE 6.1 linux