The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Failed to build swift-service-lifecycle, reference main (0af403), with Swift 6.2 (beta) for Wasm on 22 Jun 2025 15:51:37 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:wasm-6.2-latest swift build --swift-sdk wasm32-unknown-wasi 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/juri/swift-service-lifecycle.git
Reference: main
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/juri/swift-service-lifecycle
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at 0af4033 Make logging optional and update docs (#189)
Cloned https://github.com/juri/swift-service-lifecycle.git
Revision (git rev-parse @):
0af4033d874b94acf11d2e0f119484a24352cf37
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/juri/swift-service-lifecycle.git at main
========================================
Build
========================================
Selected platform:         wasm
Swift version:             6.2
Building package at path:  $PWD
https://github.com/juri/swift-service-lifecycle.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:wasm-6.2-latest swift build --swift-sdk wasm32-unknown-wasi 2>&1
wasm-6.2-latest: Pulling from finestructure/spi-images
Digest: sha256:44384f43f933eaa0f42803e9ef7c3d8388c5841ccc831a15a5edf63d8c273423
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:wasm-6.2-latest
Fetching https://github.com/apple/swift-async-algorithms.git
Fetching https://github.com/apple/swift-log.git
[1/4985] Fetching swift-async-algorithms
[4787/8821] Fetching swift-async-algorithms, swift-log
Fetched https://github.com/apple/swift-async-algorithms.git from cache (0.74s)
Fetched https://github.com/apple/swift-log.git from cache (0.74s)
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.77s)
Fetching https://github.com/apple/swift-collections.git
[1/16640] Fetching swift-collections
Fetched https://github.com/apple/swift-collections.git from cache (1.77s)
Computing version for https://github.com/apple/swift-collections.git
Computed https://github.com/apple/swift-collections.git at 1.2.0 (2.92s)
Computing version for https://github.com/apple/swift-log.git
Computed https://github.com/apple/swift-log.git at 1.6.3 (0.72s)
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-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-log.git
Working copy of https://github.com/apple/swift-log.git resolved at 1.6.3
Building for debugging...
[0/10] Write sources
[9/10] Write swift-version-24593BA9C3E375BF.txt
error: emit-module command failed with exit code 1 (use -v to see invocation)
[11/32] Emitting module ConcurrencyHelpers
/host/spi-builder-workspace/Sources/ConcurrencyHelpers/Lock.swift:45:27: error: cannot find type 'pthread_mutex_t' in scope
 43 | #else
 44 | @usableFromInline
 45 | typealias LockPrimitive = pthread_mutex_t
    |                           `- error: cannot find type 'pthread_mutex_t' in scope
 46 | #endif
 47 |
/host/spi-builder-workspace/Sources/ConcurrencyHelpers/Lock.swift:59:20: error: cannot find 'pthread_mutexattr_t' in scope
 57 |         InitializeSRWLock(mutex)
 58 |         #else
 59 |         var attr = pthread_mutexattr_t()
    |                    `- error: cannot find 'pthread_mutexattr_t' in scope
 60 |         pthread_mutexattr_init(&attr)
 61 |
/host/spi-builder-workspace/Sources/ConcurrencyHelpers/Lock.swift:60:9: error: cannot find 'pthread_mutexattr_init' in scope
 58 |         #else
 59 |         var attr = pthread_mutexattr_t()
 60 |         pthread_mutexattr_init(&attr)
    |         `- error: cannot find 'pthread_mutexattr_init' in scope
 61 |
 62 |         let err = pthread_mutex_init(mutex, &attr)
/host/spi-builder-workspace/Sources/ConcurrencyHelpers/Lock.swift:62:19: error: cannot find 'pthread_mutex_init' in scope
 60 |         pthread_mutexattr_init(&attr)
 61 |
 62 |         let err = pthread_mutex_init(mutex, &attr)
    |                   `- error: cannot find 'pthread_mutex_init' in scope
 63 |         precondition(err == 0, "\(#function) failed in pthread_mutex with error \(err)")
 64 |         #endif
/host/spi-builder-workspace/Sources/ConcurrencyHelpers/Lock.swift:74:19: error: cannot find 'pthread_mutex_destroy' in scope
 72 |         // SRWLOCK does not need to be free'd
 73 |         #else
 74 |         let err = pthread_mutex_destroy(mutex)
    |                   `- error: cannot find 'pthread_mutex_destroy' in scope
 75 |         precondition(err == 0, "\(#function) failed in pthread_mutex with error \(err)")
 76 |         #endif
/host/spi-builder-workspace/Sources/ConcurrencyHelpers/Lock.swift:86:19: error: cannot find 'pthread_mutex_lock' in scope
 84 |         AcquireSRWLockExclusive(mutex)
 85 |         #else
 86 |         let err = pthread_mutex_lock(mutex)
    |                   `- error: cannot find 'pthread_mutex_lock' in scope
 87 |         precondition(err == 0, "\(#function) failed in pthread_mutex with error \(err)")
 88 |         #endif
/host/spi-builder-workspace/Sources/ConcurrencyHelpers/Lock.swift:98:19: error: cannot find 'pthread_mutex_unlock' in scope
 96 |         ReleaseSRWLockExclusive(mutex)
 97 |         #else
 98 |         let err = pthread_mutex_unlock(mutex)
    |                   `- error: cannot find 'pthread_mutex_unlock' in scope
 99 |         precondition(err == 0, "\(#function) failed in pthread_mutex with error \(err)")
100 |         #endif
/host/spi-builder-workspace/Sources/ConcurrencyHelpers/Lock.swift:136:27: error: type of expression is ambiguous without a type annotation
134 |     @inlinable
135 |     static func create(value: Value) -> Self {
136 |         let buffer = Self.create(minimumCapacity: 1) { _ in
    |                           `- error: type of expression is ambiguous without a type annotation
137 |             return value
138 |         }
/host/spi-builder-workspace/Sources/ConcurrencyHelpers/Lock.swift:151:14: error: type of expression is ambiguous without a type annotation
149 |     @inlinable
150 |     func lock() {
151 |         self.withUnsafeMutablePointerToElements { lockPtr in
    |              `- error: type of expression is ambiguous without a type annotation
152 |             LockOperations.lock(lockPtr)
153 |         }
/host/spi-builder-workspace/Sources/ConcurrencyHelpers/Lock.swift:158:14: error: type of expression is ambiguous without a type annotation
156 |     @inlinable
157 |     func unlock() {
158 |         self.withUnsafeMutablePointerToElements { lockPtr in
    |              `- error: type of expression is ambiguous without a type annotation
159 |             LockOperations.unlock(lockPtr)
160 |         }
/host/spi-builder-workspace/Sources/ConcurrencyHelpers/Lock.swift:165:14: error: type of expression is ambiguous without a type annotation
163 |     @inlinable
164 |     deinit {
165 |         self.withUnsafeMutablePointerToElements { lockPtr in
    |              `- error: type of expression is ambiguous without a type annotation
166 |             LockOperations.destroy(lockPtr)
167 |         }
/host/spi-builder-workspace/Sources/ConcurrencyHelpers/Lock.swift:172:18: error: type of expression is ambiguous without a type annotation
170 |     @inlinable
171 |     func withLockPrimitive<T>(_ body: (UnsafeMutablePointer<LockPrimitive>) throws -> T) rethrows -> T {
172 |         try self.withUnsafeMutablePointerToElements { lockPtr in
    |                  `- error: type of expression is ambiguous without a type annotation
173 |             return try body(lockPtr)
174 |         }
/host/spi-builder-workspace/Sources/ConcurrencyHelpers/Lock.swift:179:18: error: type of expression is ambiguous without a type annotation
177 |     @inlinable
178 |     func withLockedValue<T>(_ mutate: (inout Value) throws -> T) rethrows -> T {
179 |         try self.withUnsafeMutablePointers { valuePtr, lockPtr in
    |                  `- error: type of expression is ambiguous without a type annotation
180 |             LockOperations.lock(lockPtr)
181 |             defer { LockOperations.unlock(lockPtr) }
[12/32] Compiling InternalCollectionsUtilities Descriptions.swift
[13/32] Compiling InternalCollectionsUtilities RandomAccessCollection+Offsets.swift
[14/32] Compiling InternalCollectionsUtilities UnsafeBufferPointer+Extras.swift
[15/33] Compiling ConcurrencyHelpers LockedValueBox.swift
/host/spi-builder-workspace/Sources/ConcurrencyHelpers/Lock.swift:45:27: error: cannot find type 'pthread_mutex_t' in scope
 43 | #else
 44 | @usableFromInline
 45 | typealias LockPrimitive = pthread_mutex_t
    |                           `- error: cannot find type 'pthread_mutex_t' in scope
 46 | #endif
 47 |
[16/33] Compiling Logging Locks.swift
[17/33] Compiling ConcurrencyHelpers Lock.swift
/host/spi-builder-workspace/Sources/ConcurrencyHelpers/Lock.swift:45:27: error: cannot find type 'pthread_mutex_t' in scope
 43 | #else
 44 | @usableFromInline
 45 | typealias LockPrimitive = pthread_mutex_t
    |                           `- error: cannot find type 'pthread_mutex_t' in scope
 46 | #endif
 47 |
/host/spi-builder-workspace/Sources/ConcurrencyHelpers/Lock.swift:59:20: error: cannot find 'pthread_mutexattr_t' in scope
 57 |         InitializeSRWLock(mutex)
 58 |         #else
 59 |         var attr = pthread_mutexattr_t()
    |                    `- error: cannot find 'pthread_mutexattr_t' in scope
 60 |         pthread_mutexattr_init(&attr)
 61 |
/host/spi-builder-workspace/Sources/ConcurrencyHelpers/Lock.swift:60:9: error: cannot find 'pthread_mutexattr_init' in scope
 58 |         #else
 59 |         var attr = pthread_mutexattr_t()
 60 |         pthread_mutexattr_init(&attr)
    |         `- error: cannot find 'pthread_mutexattr_init' in scope
 61 |
 62 |         let err = pthread_mutex_init(mutex, &attr)
/host/spi-builder-workspace/Sources/ConcurrencyHelpers/Lock.swift:62:19: error: cannot find 'pthread_mutex_init' in scope
 60 |         pthread_mutexattr_init(&attr)
 61 |
 62 |         let err = pthread_mutex_init(mutex, &attr)
    |                   `- error: cannot find 'pthread_mutex_init' in scope
 63 |         precondition(err == 0, "\(#function) failed in pthread_mutex with error \(err)")
 64 |         #endif
/host/spi-builder-workspace/Sources/ConcurrencyHelpers/Lock.swift:74:19: error: cannot find 'pthread_mutex_destroy' in scope
 72 |         // SRWLOCK does not need to be free'd
 73 |         #else
 74 |         let err = pthread_mutex_destroy(mutex)
    |                   `- error: cannot find 'pthread_mutex_destroy' in scope
 75 |         precondition(err == 0, "\(#function) failed in pthread_mutex with error \(err)")
 76 |         #endif
/host/spi-builder-workspace/Sources/ConcurrencyHelpers/Lock.swift:86:19: error: cannot find 'pthread_mutex_lock' in scope
 84 |         AcquireSRWLockExclusive(mutex)
 85 |         #else
 86 |         let err = pthread_mutex_lock(mutex)
    |                   `- error: cannot find 'pthread_mutex_lock' in scope
 87 |         precondition(err == 0, "\(#function) failed in pthread_mutex with error \(err)")
 88 |         #endif
/host/spi-builder-workspace/Sources/ConcurrencyHelpers/Lock.swift:98:19: error: cannot find 'pthread_mutex_unlock' in scope
 96 |         ReleaseSRWLockExclusive(mutex)
 97 |         #else
 98 |         let err = pthread_mutex_unlock(mutex)
    |                   `- error: cannot find 'pthread_mutex_unlock' in scope
 99 |         precondition(err == 0, "\(#function) failed in pthread_mutex with error \(err)")
100 |         #endif
/host/spi-builder-workspace/Sources/ConcurrencyHelpers/Lock.swift:136:27: error: type of expression is ambiguous without a type annotation
134 |     @inlinable
135 |     static func create(value: Value) -> Self {
136 |         let buffer = Self.create(minimumCapacity: 1) { _ in
    |                           `- error: type of expression is ambiguous without a type annotation
137 |             return value
138 |         }
/host/spi-builder-workspace/Sources/ConcurrencyHelpers/Lock.swift:151:14: error: type of expression is ambiguous without a type annotation
149 |     @inlinable
150 |     func lock() {
151 |         self.withUnsafeMutablePointerToElements { lockPtr in
    |              `- error: type of expression is ambiguous without a type annotation
152 |             LockOperations.lock(lockPtr)
153 |         }
/host/spi-builder-workspace/Sources/ConcurrencyHelpers/Lock.swift:158:14: error: type of expression is ambiguous without a type annotation
156 |     @inlinable
157 |     func unlock() {
158 |         self.withUnsafeMutablePointerToElements { lockPtr in
    |              `- error: type of expression is ambiguous without a type annotation
159 |             LockOperations.unlock(lockPtr)
160 |         }
/host/spi-builder-workspace/Sources/ConcurrencyHelpers/Lock.swift:165:14: error: type of expression is ambiguous without a type annotation
163 |     @inlinable
164 |     deinit {
165 |         self.withUnsafeMutablePointerToElements { lockPtr in
    |              `- error: type of expression is ambiguous without a type annotation
166 |             LockOperations.destroy(lockPtr)
167 |         }
/host/spi-builder-workspace/Sources/ConcurrencyHelpers/Lock.swift:172:18: error: type of expression is ambiguous without a type annotation
170 |     @inlinable
171 |     func withLockPrimitive<T>(_ body: (UnsafeMutablePointer<LockPrimitive>) throws -> T) rethrows -> T {
172 |         try self.withUnsafeMutablePointerToElements { lockPtr in
    |                  `- error: type of expression is ambiguous without a type annotation
173 |             return try body(lockPtr)
174 |         }
/host/spi-builder-workspace/Sources/ConcurrencyHelpers/Lock.swift:179:18: error: type of expression is ambiguous without a type annotation
177 |     @inlinable
178 |     func withLockedValue<T>(_ mutate: (inout Value) throws -> T) rethrows -> T {
179 |         try self.withUnsafeMutablePointers { valuePtr, lockPtr in
    |                  `- error: type of expression is ambiguous without a type annotation
180 |             LockOperations.lock(lockPtr)
181 |             defer { LockOperations.unlock(lockPtr) }
[18/33] Compiling InternalCollectionsUtilities _UnsafeBitSet.swift
[19/33] Compiling InternalCollectionsUtilities _SortedCollection.swift
[20/33] Compiling InternalCollectionsUtilities _UniqueCollection.swift
[21/33] Compiling InternalCollectionsUtilities Debugging.swift
[22/33] Compiling InternalCollectionsUtilities UInt+first and last set bit.swift
[23/33] Compiling InternalCollectionsUtilities UInt+reversed.swift
[24/33] Compiling InternalCollectionsUtilities _UnsafeBitSet+Index.swift
[25/33] Compiling InternalCollectionsUtilities _UnsafeBitSet+_Word.swift
[26/33] Emitting module InternalCollectionsUtilities
[27/33] Compiling InternalCollectionsUtilities FixedWidthInteger+roundUpToPowerOfTwo.swift
[28/33] Compiling InternalCollectionsUtilities Integer rank.swift
[29/33] Compiling InternalCollectionsUtilities UnsafeMutableBufferPointer+Extras.swift
[30/34] Compiling Logging LogHandler.swift
BUILD FAILURE 6.2 wasm