Build Information
Failed to build NWHTTPProtocol, reference 0.1.0 (1f7c0f
), with Swift 6.1 for Linux on 27 Apr 2025 00:57:24 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/helje5/NWHTTPProtocol.git
Reference: 0.1.0
Initialized empty Git repository in /host/spi-builder-workspace/.git/
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: git branch -m <name>
From https://github.com/helje5/NWHTTPProtocol
* tag 0.1.0 -> FETCH_HEAD
HEAD is now at 1f7c0f7 Merge branch 'develop'
Cloned https://github.com/helje5/NWHTTPProtocol.git
Revision (git rev-parse @):
1f7c0f76667ca68710d4eb9aa83fbf78669c586c
SUCCESS checkout https://github.com/helje5/NWHTTPProtocol.git at 0.1.0
========================================
Build
========================================
Selected platform: linux
Swift version: 6.1
Building package at path: $PWD
https://github.com/helje5/NWHTTPProtocol.git
https://github.com/helje5/NWHTTPProtocol.git
WARNING: environment variable SUPPRESS_SWIFT_6_FLAGS is not set
{
"dependencies" : [
],
"manifest_display_name" : "NWHTTPProtocol",
"name" : "NWHTTPProtocol",
"path" : "/host/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "10.15"
},
{
"name" : "ios",
"version" : "13.0"
}
],
"products" : [
{
"name" : "CHTTPParser",
"targets" : [
"CHTTPParser"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "NWHTTPProtocol",
"targets" : [
"NWHTTPProtocol"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "NWHTTPServer",
"targets" : [
"NWHTTPServer"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "samplehttpd",
"targets" : [
"samplehttpd"
],
"type" : {
"executable" : null
}
}
],
"targets" : [
{
"c99name" : "samplehttpd",
"module_type" : "SwiftTarget",
"name" : "samplehttpd",
"path" : "Sources/samplehttpd",
"product_memberships" : [
"samplehttpd"
],
"sources" : [
"main.swift"
],
"target_dependencies" : [
"NWHTTPServer"
],
"type" : "executable"
},
{
"c99name" : "NWHTTPServer",
"module_type" : "SwiftTarget",
"name" : "NWHTTPServer",
"path" : "Sources/NWHTTPServer",
"product_memberships" : [
"NWHTTPServer",
"samplehttpd"
],
"sources" : [
"HTTPMethod.swift",
"HTTPServer.swift",
"HTTPStatus.swift",
"IncomingMessage.swift",
"ServerResponse.swift",
"StringEncodingError.swift"
],
"target_dependencies" : [
"NWHTTPProtocol"
],
"type" : "library"
},
{
"c99name" : "NWHTTPProtocol",
"module_type" : "SwiftTarget",
"name" : "NWHTTPProtocol",
"path" : "Sources/NWHTTPProtocol",
"product_memberships" : [
"NWHTTPProtocol",
"NWHTTPServer",
"samplehttpd"
],
"sources" : [
"HTTPContext.swift",
"HTTPMessage.swift",
"HTTPProtocol.swift"
],
"target_dependencies" : [
"CHTTPParser"
],
"type" : "library"
},
{
"c99name" : "CHTTPParser",
"module_type" : "ClangTarget",
"name" : "CHTTPParser",
"path" : "Sources/CHTTPParser",
"product_memberships" : [
"CHTTPParser",
"NWHTTPProtocol",
"NWHTTPServer",
"samplehttpd"
],
"sources" : [
"http_parser.c"
],
"type" : "library"
}
],
"tools_version" : "5.1"
}
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
Building for debugging...
[0/10] Write sources
[3/10] Compiling CHTTPParser http_parser.c
[4/10] Write swift-version-24593BA9C3E375BF.txt
error: emit-module command failed with exit code 1 (use -v to see invocation)
[6/14] Emitting module NWHTTPProtocol
/host/spi-builder-workspace/Sources/NWHTTPProtocol/HTTPContext.swift:8:14: error: no such module 'Network'
6 | //
7 |
8 | import class Network.NWProtocolFramer
| `- error: no such module 'Network'
9 | import class Network.NWConnection
10 |
[7/14] Compiling NWHTTPProtocol HTTPProtocol.swift
/host/spi-builder-workspace/Sources/NWHTTPProtocol/HTTPContext.swift:8:14: error: no such module 'Network'
6 | //
7 |
8 | import class Network.NWProtocolFramer
| `- error: no such module 'Network'
9 | import class Network.NWConnection
10 |
[8/14] Compiling NWHTTPProtocol HTTPMessage.swift
/host/spi-builder-workspace/Sources/NWHTTPProtocol/HTTPContext.swift:8:14: error: no such module 'Network'
6 | //
7 |
8 | import class Network.NWProtocolFramer
| `- error: no such module 'Network'
9 | import class Network.NWConnection
10 |
[9/14] Compiling NWHTTPProtocol HTTPContext.swift
/host/spi-builder-workspace/Sources/NWHTTPProtocol/HTTPContext.swift:8:14: error: no such module 'Network'
6 | //
7 |
8 | import class Network.NWProtocolFramer
| `- error: no such module 'Network'
9 | import class Network.NWConnection
10 |
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/6] Write swift-version-24593BA9C3E375BF.txt
[2/10] Compiling NWHTTPProtocol HTTPMessage.swift
/host/spi-builder-workspace/Sources/NWHTTPProtocol/HTTPContext.swift:8:14: error: no such module 'Network'
6 | //
7 |
8 | import class Network.NWProtocolFramer
| `- error: no such module 'Network'
9 | import class Network.NWConnection
10 |
[3/10] Compiling NWHTTPProtocol HTTPContext.swift
/host/spi-builder-workspace/Sources/NWHTTPProtocol/HTTPContext.swift:8:14: error: no such module 'Network'
6 | //
7 |
8 | import class Network.NWProtocolFramer
| `- error: no such module 'Network'
9 | import class Network.NWConnection
10 |
error: emit-module command failed with exit code 1 (use -v to see invocation)
[4/10] Emitting module NWHTTPProtocol
/host/spi-builder-workspace/Sources/NWHTTPProtocol/HTTPContext.swift:8:14: error: no such module 'Network'
6 | //
7 |
8 | import class Network.NWProtocolFramer
| `- error: no such module 'Network'
9 | import class Network.NWConnection
10 |
[5/10] Compiling NWHTTPProtocol HTTPProtocol.swift
/host/spi-builder-workspace/Sources/NWHTTPProtocol/HTTPContext.swift:8:14: error: no such module 'Network'
6 | //
7 |
8 | import class Network.NWProtocolFramer
| `- error: no such module 'Network'
9 | import class Network.NWConnection
10 |
BUILD FAILURE 6.1 linux