Build Information
Failed to build swift-webpush, reference 0.4.2 (70e9c0
), with Swift 6.1 for Wasm on 30 May 2025 11:49:25 UTC.
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4606859-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi 2>&1
Build Log
========================================
RunAll
========================================
Builder version: 4.63.1
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/mochidev/swift-webpush.git
Reference: 0.4.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/mochidev/swift-webpush
* tag 0.4.2 -> FETCH_HEAD
HEAD is now at 70e9c03 Fixed an issue where Base64-encoded key IDs would fail lookups against the known set of keys
Cloned https://github.com/mochidev/swift-webpush.git
Revision (git rev-parse @):
70e9c03eb355c181ce0f9beada7eac3496d786b5
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/mochidev/swift-webpush.git at 0.4.2
========================================
Build
========================================
Selected platform: wasm
Swift version: 6.1
Building package at path: $PWD
https://github.com/mochidev/swift-webpush.git
https://github.com/mochidev/swift-webpush.git
WARNING: environment variable SUPPRESS_SWIFT_6_FLAGS is not set
{
"dependencies" : [
{
"identity" : "swift-crypto",
"requirement" : {
"range" : [
{
"lower_bound" : "3.10.0",
"upper_bound" : "5.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-crypto.git"
},
{
"identity" : "swift-log",
"requirement" : {
"range" : [
{
"lower_bound" : "1.6.2",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-log.git"
},
{
"identity" : "swift-service-lifecycle",
"requirement" : {
"range" : [
{
"lower_bound" : "2.6.2",
"upper_bound" : "3.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/swift-server/swift-service-lifecycle.git"
},
{
"identity" : "async-http-client",
"requirement" : {
"range" : [
{
"lower_bound" : "1.24.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/swift-server/async-http-client.git"
},
{
"identity" : "swift-nio",
"requirement" : {
"range" : [
{
"lower_bound" : "2.77.0",
"upper_bound" : "3.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-nio.git"
}
],
"manifest_display_name" : "swift-webpush",
"name" : "swift-webpush",
"path" : "/host/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "13.0"
},
{
"name" : "ios",
"version" : "15.0"
},
{
"name" : "tvos",
"version" : "15.0"
},
{
"name" : "watchos",
"version" : "8.0"
}
],
"products" : [
{
"name" : "WebPush",
"targets" : [
"WebPush"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "WebPushTesting",
"targets" : [
"WebPush",
"WebPushTesting"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "WebPushTests",
"module_type" : "SwiftTarget",
"name" : "WebPushTests",
"path" : "Tests/WebPushTests",
"product_dependencies" : [
"AsyncHTTPClient",
"Crypto",
"Logging",
"NIOCore",
"ServiceLifecycle"
],
"sources" : [
"Base64URLCodingTests.swift",
"BytesTests.swift",
"ErrorTests.swift",
"Helpers/MockHTTPClient.swift",
"Helpers/VAPIDConfiguration+Testing.swift",
"MessageSizeTests.swift",
"NeverTests.swift",
"NotificationTests.swift",
"SubscriberTests.swift",
"TopicTests.swift",
"URLOriginTests.swift",
"VAPIDConfigurationTests.swift",
"VAPIDKeyTests.swift",
"VAPIDTokenTests.swift",
"WebPushManagerTests.swift"
],
"target_dependencies" : [
"WebPush",
"WebPushTesting"
],
"type" : "test"
},
{
"c99name" : "WebPushTesting",
"module_type" : "SwiftTarget",
"name" : "WebPushTesting",
"path" : "Sources/WebPushTesting",
"product_dependencies" : [
"Crypto",
"Logging"
],
"product_memberships" : [
"WebPushTesting"
],
"sources" : [
"Subscriber+Testing.swift",
"VAPIDConfiguration+Testing.swift",
"VAPIDKey+Testing.swift",
"WebPushManager+Testing.swift"
],
"target_dependencies" : [
"WebPush"
],
"type" : "library"
},
{
"c99name" : "WebPush",
"module_type" : "SwiftTarget",
"name" : "WebPush",
"path" : "Sources/WebPush",
"product_dependencies" : [
"AsyncHTTPClient",
"Crypto",
"Logging",
"ServiceLifecycle",
"NIOCore",
"NIOHTTP1"
],
"product_memberships" : [
"WebPush",
"WebPushTesting"
],
"sources" : [
"Errors/BadSubscriberError.swift",
"Errors/Base64URLDecodingError.swift",
"Errors/MessageTooLargeError.swift",
"Errors/PushServiceError.swift",
"Errors/UserAgentKeyMaterialError.swift",
"Errors/VAPIDConfigurationError.swift",
"Helpers/DataProtocol+Base64URLCoding.swift",
"Helpers/FixedWidthInteger+BigEndienBytes.swift",
"Helpers/HTTPClientProtocol.swift",
"Helpers/PrintLogHandler.swift",
"Helpers/StringProtocol+UTF8Bytes.swift",
"Helpers/URL+Origin.swift",
"Push Message/Notification.swift",
"Push Message/PushMessage.swift",
"Subscriber.swift",
"Topic.swift",
"VAPID/VAPID.swift",
"VAPID/VAPIDConfiguration.swift",
"VAPID/VAPIDKey.swift",
"VAPID/VAPIDToken.swift",
"WebPushManager.swift"
],
"type" : "library"
}
],
"tools_version" : "6.0"
}
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats 2>&1
wasm-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:7e37457820e5f17452a98118754f345f2619722c485f2db0d8b666940a83afd2
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest
Fetching https://github.com/apple/swift-log.git
Fetching https://github.com/apple/swift-nio.git
Fetching https://github.com/swift-server/async-http-client.git
Fetching https://github.com/apple/swift-crypto.git
Fetching https://github.com/swift-server/swift-service-lifecycle.git
[1/2426] Fetching swift-service-lifecycle
[171/6262] Fetching swift-service-lifecycle, swift-log
[5074/20198] Fetching swift-service-lifecycle, swift-log, swift-crypto
[6456/34212] Fetching swift-service-lifecycle, swift-log, swift-crypto, async-http-client
[15942/110323] Fetching swift-service-lifecycle, swift-log, swift-crypto, async-http-client, swift-nio
Fetched https://github.com/swift-server/swift-service-lifecycle.git from cache (2.11s)
Fetched https://github.com/apple/swift-crypto.git from cache (2.15s)
[68845/93961] Fetching swift-log, async-http-client, swift-nio
Fetched https://github.com/apple/swift-log.git from cache (5.54s)
Fetched https://github.com/swift-server/async-http-client.git from cache (5.54s)
Fetched https://github.com/apple/swift-nio.git from cache (5.64s)
Computing version for https://github.com/apple/swift-log.git
Computed https://github.com/apple/swift-log.git at 1.6.3 (6.31s)
Computing version for https://github.com/swift-server/swift-service-lifecycle.git
Computed https://github.com/swift-server/swift-service-lifecycle.git at 2.8.0 (0.59s)
Fetching https://github.com/apple/swift-async-algorithms.git
[1/4985] Fetching swift-async-algorithms
Fetched https://github.com/apple/swift-async-algorithms.git from cache (0.56s)
Computing version for https://github.com/apple/swift-async-algorithms.git
Computed https://github.com/apple/swift-async-algorithms.git at 1.0.4 (1.71s)
Fetching https://github.com/apple/swift-collections.git
[1/16591] Fetching swift-collections
Fetched https://github.com/apple/swift-collections.git from cache (1.60s)
Computing version for https://github.com/apple/swift-collections.git
Computed https://github.com/apple/swift-collections.git at 1.2.0 (2.67s)
Computing version for https://github.com/apple/swift-nio.git
Computed https://github.com/apple/swift-nio.git at 2.83.0 (3.21s)
Fetching https://github.com/apple/swift-system.git
Fetching https://github.com/apple/swift-atomics.git
[1/1710] Fetching swift-atomics
[53/6101] Fetching swift-atomics, swift-system
Fetched https://github.com/apple/swift-atomics.git from cache (0.50s)
Fetched https://github.com/apple/swift-system.git from cache (0.50s)
Computing version for https://github.com/apple/swift-atomics.git
Computed https://github.com/apple/swift-atomics.git at 1.2.0 (1.39s)
Computing version for https://github.com/apple/swift-system.git
Computed https://github.com/apple/swift-system.git at 1.5.0 (0.56s)
Computing version for https://github.com/swift-server/async-http-client.git
Computed https://github.com/swift-server/async-http-client.git at 1.26.1 (0.59s)
Fetching https://github.com/apple/swift-nio-extras.git
Fetching https://github.com/apple/swift-nio-http2.git
Fetching https://github.com/apple/swift-nio-transport-services.git
Fetching https://github.com/apple/swift-algorithms.git
Fetching https://github.com/apple/swift-nio-ssl.git
[1/5914] Fetching swift-nio-extras
[1894/11873] Fetching swift-nio-extras, swift-algorithms
[3789/14540] Fetching swift-nio-extras, swift-algorithms, swift-nio-transport-services
[3967/26067] Fetching swift-nio-extras, swift-algorithms, swift-nio-transport-services, swift-nio-http2
[17077/40910] Fetching swift-nio-extras, swift-algorithms, swift-nio-transport-services, swift-nio-http2, swift-nio-ssl
Fetched https://github.com/apple/swift-algorithms.git from cache (0.58s)
[12718/34951] Fetching swift-nio-extras, swift-nio-transport-services, swift-nio-http2, swift-nio-ssl
Fetched https://github.com/apple/swift-nio-transport-services.git from cache (2.35s)
Fetched https://github.com/apple/swift-nio-extras.git from cache (2.36s)
Fetched https://github.com/apple/swift-nio-http2.git from cache (2.37s)
Fetched https://github.com/apple/swift-nio-ssl.git from cache (2.38s)
Computing version for https://github.com/apple/swift-nio-transport-services.git
Computed https://github.com/apple/swift-nio-transport-services.git at 1.24.0 (2.98s)
Computing version for https://github.com/apple/swift-nio-http2.git
Computed https://github.com/apple/swift-nio-http2.git at 1.36.0 (0.60s)
Computing version for https://github.com/apple/swift-nio-ssl.git
Computed https://github.com/apple/swift-nio-ssl.git at 2.31.0 (0.73s)
Computing version for https://github.com/apple/swift-nio-extras.git
Computed https://github.com/apple/swift-nio-extras.git at 1.27.1 (0.84s)
Fetching https://github.com/apple/swift-asn1.git
Fetching https://github.com/apple/swift-certificates.git
Fetching https://github.com/apple/swift-http-structured-headers.git
[1/1141] Fetching swift-http-structured-headers
[173/2731] Fetching swift-http-structured-headers, swift-asn1
[1220/8886] Fetching swift-http-structured-headers, swift-asn1, swift-certificates
Fetched https://github.com/apple/swift-http-structured-headers.git from cache (0.48s)
[6145/7745] Fetching swift-asn1, swift-certificates
Fetching https://github.com/apple/swift-http-types.git
Fetched https://github.com/apple/swift-asn1.git from cache (0.68s)
Fetched https://github.com/apple/swift-certificates.git from cache (0.68s)
[1/904] Fetching swift-http-types
Fetched https://github.com/apple/swift-http-types.git from cache (0.39s)
Computing version for https://github.com/apple/swift-certificates.git
Computed https://github.com/apple/swift-certificates.git at 1.10.0 (1.72s)
Computing version for https://github.com/apple/swift-crypto.git
Computed https://github.com/apple/swift-crypto.git at 3.12.3 (2.60s)
Computing version for https://github.com/apple/swift-algorithms.git
Computed https://github.com/apple/swift-algorithms.git at 1.2.1 (0.81s)
Fetching https://github.com/apple/swift-numerics.git
[1/5706] Fetching swift-numerics
Fetched https://github.com/apple/swift-numerics.git from cache (0.67s)
Computing version for https://github.com/apple/swift-asn1.git
Computed https://github.com/apple/swift-asn1.git at 1.3.2 (1.64s)
Computing version for https://github.com/apple/swift-http-types.git
Computed https://github.com/apple/swift-http-types.git at 1.4.0 (0.92s)
Computing version for https://github.com/apple/swift-http-structured-headers.git
Computed https://github.com/apple/swift-http-structured-headers.git at 1.3.0 (2.55s)
Computing version for https://github.com/apple/swift-numerics.git
Computed https://github.com/apple/swift-numerics.git at 1.0.3 (1.37s)
Creating working copy for https://github.com/apple/swift-nio.git
Working copy of https://github.com/apple/swift-nio.git resolved at 2.83.0
Creating working copy for https://github.com/apple/swift-atomics.git
Working copy of https://github.com/apple/swift-atomics.git resolved at 1.2.0
Creating working copy for https://github.com/apple/swift-async-algorithms.git
Working copy of https://github.com/apple/swift-async-algorithms.git resolved at 1.0.4
Creating working copy for https://github.com/apple/swift-system.git
Working copy of https://github.com/apple/swift-system.git resolved at 1.5.0
Creating working copy for https://github.com/apple/swift-log.git
Working copy of https://github.com/apple/swift-log.git resolved at 1.6.3
Creating working copy for https://github.com/apple/swift-collections.git
Working copy of https://github.com/apple/swift-collections.git resolved at 1.2.0
Creating working copy for https://github.com/apple/swift-certificates.git
Working copy of https://github.com/apple/swift-certificates.git resolved at 1.10.0
Creating working copy for https://github.com/swift-server/swift-service-lifecycle.git
Working copy of https://github.com/swift-server/swift-service-lifecycle.git resolved at 2.8.0
Creating working copy for https://github.com/apple/swift-asn1.git
Working copy of https://github.com/apple/swift-asn1.git resolved at 1.3.2
Creating working copy for https://github.com/apple/swift-nio-ssl.git
Working copy of https://github.com/apple/swift-nio-ssl.git resolved at 2.31.0
Creating working copy for https://github.com/apple/swift-http-types.git
Working copy of https://github.com/apple/swift-http-types.git resolved at 1.4.0
Creating working copy for https://github.com/apple/swift-nio-http2.git
Working copy of https://github.com/apple/swift-nio-http2.git resolved at 1.36.0
Creating working copy for https://github.com/swift-server/async-http-client.git
Working copy of https://github.com/swift-server/async-http-client.git resolved at 1.26.1
Creating working copy for https://github.com/apple/swift-http-structured-headers.git
Working copy of https://github.com/apple/swift-http-structured-headers.git resolved at 1.3.0
Creating working copy for https://github.com/apple/swift-nio-transport-services.git
Working copy of https://github.com/apple/swift-nio-transport-services.git resolved at 1.24.0
Creating working copy for https://github.com/apple/swift-crypto.git
Working copy of https://github.com/apple/swift-crypto.git resolved at 3.12.3
Creating working copy for https://github.com/apple/swift-nio-extras.git
Working copy of https://github.com/apple/swift-nio-extras.git resolved at 1.27.1
Creating working copy for https://github.com/apple/swift-numerics.git
Working copy of https://github.com/apple/swift-numerics.git resolved at 1.0.3
Creating working copy for https://github.com/apple/swift-algorithms.git
Working copy of https://github.com/apple/swift-algorithms.git resolved at 1.2.1
Building for debugging...
[0/808] Write sources
[25/808] Compiling CNIOWindows WSAStartup.c
[26/808] Compiling CNIOWindows shim.c
[27/808] Write sources
[31/808] Compiling CNIOWASI CNIOWASI.c
[32/808] Compiling CNIOLinux liburing_shims.c
[33/808] Compiling _AtomicsShims.c
[34/808] Compiling CNIOLinux shim.c
[35/808] Compiling _NumericsShims _NumericsShims.c
[36/808] Compiling CNIOLLHTTP c_nio_http.c
[37/808] Compiling CNIOExtrasZlib empty.c
[38/808] Compiling CNIOLLHTTP c_nio_api.c
[39/808] Compiling CNIODarwin shim.c
[40/808] Write swift-version-24593BA9C3E375BF.txt
[41/808] Compiling fiat_p256_adx_sqr.S
[42/808] Compiling fiat_curve25519_adx_square.S
[43/808] Compiling fiat_p256_adx_mul.S
[44/808] Compiling fiat_curve25519_adx_mul.S
[45/808] Compiling CNIOBoringSSLShims shims.c
[47/843] Emitting module _NIOBase64
In file included from /host/spi-builder-workspace/.build/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/tls_method.cc:17:
/host/spi-builder-workspace/.build/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/../crypto/internal.h:32:10: fatal error: 'pthread.h' file not found
32 | #include <pthread.h>
| ^~~~~~~~~~~
1 error generated.
[47/843] Compiling tls_method.cc
In file included from /host/spi-builder-workspace/.build/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/tls_record.cc:19:
/host/spi-builder-workspace/.build/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/../crypto/internal.h:32:10: fatal error: 'pthread.h' file not found
32 | #include <pthread.h>
| ^~~~~~~~~~~
1 error generated.
[47/843] Compiling tls_record.cc
[47/843] Compiling CNIOLLHTTP c_nio_llhttp.c
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi 2>&1
wasm-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:7e37457820e5f17452a98118754f345f2619722c485f2db0d8b666940a83afd2
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest
[0/1] Planning build
Building for debugging...
In file included from /host/spi-builder-workspace/.build/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/tls_record.cc:19:
/host/spi-builder-workspace/.build/checkouts/swift-nio-ssl/Sources/CNIOBoringSSL/ssl/../crypto/internal.h:32:10: fatal error: 'pthread.h' file not found
32 | #include <pthread.h>
| ^~~~~~~~~~~
1 error generated.
[0/763] Compiling tls_record.cc
[0/763] Compiling t1_enc.cc
[0/763] Compiling tls13_client.cc
[0/763] Compiling tls_method.cc
[0/763] Compiling tls13_both.cc
[0/763] Compiling ssl_x509.cc
[0/763] Compiling tls13_server.cc
[0/763] Compiling tls13_enc.cc
BUILD FAILURE 6.1 wasm