Build Information
Failed to build SmartNetwork, reference 5.3.0 (c1fd80
), with Swift 5.10 for Linux on 15 Nov 2024 13:25:30 UTC.
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4606859-2":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-5.10-latest swift build --triple x86_64-unknown-linux-gnu 2>&1
Build Log
========================================
RunAll
========================================
Builder version: 4.57.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/NikSativa/SmartNetwork.git
Reference: 5.3.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/NikSativa/SmartNetwork
* tag 5.3.0 -> FETCH_HEAD
HEAD is now at c1fd808 new CURLConvertible
Cloned https://github.com/NikSativa/SmartNetwork.git
Revision (git rev-parse @):
c1fd808f75d0a675bd069f926071656fdc1e358b
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/NikSativa/SmartNetwork.git at 5.3.0
========================================
Build
========================================
Selected platform: linux
Swift version: 5.10
Building package at path: $PWD
https://github.com/NikSativa/SmartNetwork.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-2":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-5.10-latest swift build --triple x86_64-unknown-linux-gnu 2>&1
basic-5.10-latest: Pulling from finestructure/spi-images
Digest: sha256:bbf8567030a4fa53b55a34fff1a818ffa3e86e892fedc5d8aa9c6958f48fdf8a
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-5.10-latest
Fetching https://github.com/NikSativa/Threading.git
Fetching https://github.com/NikSativa/SpryKit.git
[1/415] Fetching threading
[416/1335] Fetching threading, sprykit
Fetched https://github.com/NikSativa/Threading.git from cache (0.22s)
Fetched https://github.com/NikSativa/SpryKit.git from cache (0.22s)
Computing version for https://github.com/NikSativa/Threading.git
Computed https://github.com/NikSativa/Threading.git at 2.1.0 (0.40s)
Computing version for https://github.com/NikSativa/SpryKit.git
Computed https://github.com/NikSativa/SpryKit.git at 3.0.1 (0.37s)
Fetching https://github.com/mattgallagher/CwlPreconditionTesting.git
[1/1257] Fetching cwlpreconditiontesting
Fetched https://github.com/mattgallagher/CwlPreconditionTesting.git from cache (0.20s)
Computing version for https://github.com/mattgallagher/CwlPreconditionTesting.git
Computed https://github.com/mattgallagher/CwlPreconditionTesting.git at 2.2.2 (1.05s)
Fetching https://github.com/mattgallagher/CwlCatchException.git
[1/455] Fetching cwlcatchexception
Fetched https://github.com/mattgallagher/CwlCatchException.git from cache (0.22s)
Computing version for https://github.com/mattgallagher/CwlCatchException.git
Computed https://github.com/mattgallagher/CwlCatchException.git at 2.2.1 (0.39s)
Creating working copy for https://github.com/NikSativa/SpryKit.git
Working copy of https://github.com/NikSativa/SpryKit.git resolved at 3.0.1
Creating working copy for https://github.com/mattgallagher/CwlPreconditionTesting.git
Working copy of https://github.com/mattgallagher/CwlPreconditionTesting.git resolved at 2.2.2
Creating working copy for https://github.com/mattgallagher/CwlCatchException.git
Working copy of https://github.com/mattgallagher/CwlCatchException.git resolved at 2.2.1
Creating working copy for https://github.com/NikSativa/Threading.git
Working copy of https://github.com/NikSativa/Threading.git resolved at 2.1.0
Building for debugging...
[0/5] Write sources
[1/5] Copying PrivacyInfo.xcprivacy
[1/5] Write sources
[1/5] Copying PrivacyInfo.xcprivacy
[4/5] Write swift-version-24593BA9C3E375BF.txt
error: emit-module command failed with exit code 1 (use -v to see invocation)
[6/24] Emitting module Threading
/host/spi-builder-workspace/.build/checkouts/Threading/Source/Mutexes/Unfair.swift:4:25: error: cannot find 'os_unfair_lock' in scope
private var _lock = os_unfair_lock()
^~~~~~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/Threading/Source/Queue.swift:4:15: error: type 'Queue' does not conform to protocol 'Equatable'
public struct Queue: Equatable {
^
/host/spi-builder-workspace/.build/checkouts/Threading/Source/Queue.swift:28:9: note: stored property type 'DispatchQueue' does not conform to protocol 'Equatable', preventing synthesized conformance of 'Queue' to 'Equatable'
let sdk: DispatchQueue
^
Swift.==:1:24: note: candidate would match if 'Queue' conformed to 'RawRepresentable'
@inlinable public func == <T>(lhs: T, rhs: T) -> Bool where T : RawRepresentable, T.RawValue : Equatable
^
Swift.FloatingPoint:2:24: note: candidate would match if 'Queue' conformed to 'FloatingPoint'
public static func == (lhs: Self, rhs: Self) -> Bool
^
Swift.BinaryInteger:2:24: note: candidate would match if 'Queue' conformed to 'BinaryInteger'
public static func == <Other>(lhs: Self, rhs: Other) -> Bool where Other : BinaryInteger
^
Swift._Pointer:2:24: note: candidate would match if 'Queue' conformed to '_Pointer'
public static func == (lhs: Self, rhs: Self) -> Bool
^
Swift._Pointer:3:35: note: candidate would match if 'Queue' conformed to '_Pointer'
@inlinable public static func == <Other>(lhs: Self, rhs: Other) -> Bool where Other : _Pointer
^
Swift.Strideable:3:35: note: candidate would match if 'Queue' conformed to 'Strideable'
@inlinable public static func == (x: Self, y: Self) -> Bool
^
Swift.StringProtocol:2:35: note: candidate would match if 'Queue' conformed to 'StringProtocol'
@inlinable public static func == <RHS>(lhs: Self, rhs: RHS) -> Bool where RHS : StringProtocol
^
Swift.SIMD:4:24: note: candidate would match if 'Queue' conformed to 'SIMD'
public static func == (a: Self, b: Self) -> Bool
^
Foundation.AttributedStringProtocol:5:24: note: candidate would match if 'Queue' conformed to 'AttributedStringProtocol'
public static func == <RHS>(lhs: Self, rhs: RHS) -> Bool where RHS : AttributedStringProtocol
^
Foundation.__BridgedNSError:2:24: note: candidate would match if 'Queue' conformed to '__BridgedNSError'
public static func == (lhs: Self, rhs: Self) -> Bool
^
Foundation._BridgedStoredNSError:2:24: note: candidate would match if 'Queue' conformed to '_BridgedStoredNSError'
public static func == (lhs: Self, rhs: Self) -> Bool
^
Swift.Equatable:2:17: note: protocol requires function '==' with type '(Queue, Queue) -> Bool'
static func == (lhs: Self, rhs: Self) -> Bool
^
[7/26] Compiling Threading Mutexing.swift
[8/26] Compiling Threading Queue+Queueable.swift
[9/26] Compiling Threading UnSendable.swift
[10/26] Compiling Threading resource_bundle_accessor.swift
[11/26] Compiling Threading DelayedQueue.swift
[12/26] Compiling Threading DispatchTime+Queue.swift
[13/26] Compiling Threading IsolatedMain.swift
[14/26] Compiling Threading Locking.swift
[15/26] Compiling Threading Barrier.swift
[16/26] Compiling Threading NSLock.swift
[17/26] Compiling Threading AnyLock.swift
/host/spi-builder-workspace/.build/checkouts/Threading/Source/Mutexes/Unfair.swift:4:25: error: cannot find 'os_unfair_lock' in scope
private var _lock = os_unfair_lock()
^~~~~~~~~~~~~~
[18/26] Compiling Threading AnyMutex.swift
/host/spi-builder-workspace/.build/checkouts/Threading/Source/Mutexes/Unfair.swift:4:25: error: cannot find 'os_unfair_lock' in scope
private var _lock = os_unfair_lock()
^~~~~~~~~~~~~~
[19/26] Compiling Threading Atomic.swift
/host/spi-builder-workspace/.build/checkouts/Threading/Source/Mutexes/Unfair.swift:4:25: error: cannot find 'os_unfair_lock' in scope
private var _lock = os_unfair_lock()
^~~~~~~~~~~~~~
[20/26] Compiling Threading Semaphore.swift
/host/spi-builder-workspace/.build/checkouts/Threading/Source/Mutexes/Unfair.swift:4:25: error: cannot find 'os_unfair_lock' in scope
private var _lock = os_unfair_lock()
^~~~~~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/Threading/Source/Mutexes/Unfair.swift:15:9: error: cannot find 'os_unfair_lock_lock' in scope
os_unfair_lock_lock(&_lock)
^~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/Threading/Source/Mutexes/Unfair.swift:19:16: error: cannot find 'os_unfair_lock_trylock' in scope
return os_unfair_lock_trylock(&_lock)
^~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/Threading/Source/Mutexes/Unfair.swift:23:9: error: cannot find 'os_unfair_lock_unlock' in scope
os_unfair_lock_unlock(&_lock)
^~~~~~~~~~~~~~~~~~~~~
[21/26] Compiling Threading Unfair.swift
/host/spi-builder-workspace/.build/checkouts/Threading/Source/Mutexes/Unfair.swift:4:25: error: cannot find 'os_unfair_lock' in scope
private var _lock = os_unfair_lock()
^~~~~~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/Threading/Source/Mutexes/Unfair.swift:15:9: error: cannot find 'os_unfair_lock_lock' in scope
os_unfair_lock_lock(&_lock)
^~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/Threading/Source/Mutexes/Unfair.swift:19:16: error: cannot find 'os_unfair_lock_trylock' in scope
return os_unfair_lock_trylock(&_lock)
^~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/.build/checkouts/Threading/Source/Mutexes/Unfair.swift:23:9: error: cannot find 'os_unfair_lock_unlock' in scope
os_unfair_lock_unlock(&_lock)
^~~~~~~~~~~~~~~~~~~~~
[22/26] Compiling Threading NSRecursiveLock.swift
/host/spi-builder-workspace/.build/checkouts/Threading/Source/Mutexes/PThread.swift:22:46: error: cannot convert value of type 'Int' to expected argument type 'Int32'
pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_NORMAL)
^
Int32( )
/host/spi-builder-workspace/.build/checkouts/Threading/Source/Mutexes/PThread.swift:24:46: error: cannot convert value of type 'Int' to expected argument type 'Int32'
pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE)
^
Int32( )
[23/26] Compiling Threading OSAllocatedUnfairLock.swift
/host/spi-builder-workspace/.build/checkouts/Threading/Source/Mutexes/PThread.swift:22:46: error: cannot convert value of type 'Int' to expected argument type 'Int32'
pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_NORMAL)
^
Int32( )
/host/spi-builder-workspace/.build/checkouts/Threading/Source/Mutexes/PThread.swift:24:46: error: cannot convert value of type 'Int' to expected argument type 'Int32'
pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE)
^
Int32( )
[24/26] Compiling Threading PThread.swift
/host/spi-builder-workspace/.build/checkouts/Threading/Source/Mutexes/PThread.swift:22:46: error: cannot convert value of type 'Int' to expected argument type 'Int32'
pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_NORMAL)
^
Int32( )
/host/spi-builder-workspace/.build/checkouts/Threading/Source/Mutexes/PThread.swift:24:46: error: cannot convert value of type 'Int' to expected argument type 'Int32'
pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE)
^
Int32( )
[25/26] Compiling Threading Queue.swift
/host/spi-builder-workspace/.build/checkouts/Threading/Source/Queue.swift:4:15: error: type 'Queue' does not conform to protocol 'Equatable'
public struct Queue: Equatable {
^
/host/spi-builder-workspace/.build/checkouts/Threading/Source/Queue.swift:28:9: note: stored property type 'DispatchQueue' does not conform to protocol 'Equatable', preventing synthesized conformance of 'Queue' to 'Equatable'
let sdk: DispatchQueue
^
Swift.==:1:24: note: candidate would match if 'Queue' conformed to 'RawRepresentable'
@inlinable public func == <T>(lhs: T, rhs: T) -> Bool where T : RawRepresentable, T.RawValue : Equatable
^
Swift.FloatingPoint:2:24: note: candidate would match if 'Queue' conformed to 'FloatingPoint'
public static func == (lhs: Self, rhs: Self) -> Bool
^
Swift.BinaryInteger:2:24: note: candidate would match if 'Queue' conformed to 'BinaryInteger'
public static func == <Other>(lhs: Self, rhs: Other) -> Bool where Other : BinaryInteger
^
Swift._Pointer:2:24: note: candidate would match if 'Queue' conformed to '_Pointer'
public static func == (lhs: Self, rhs: Self) -> Bool
^
Swift._Pointer:3:35: note: candidate would match if 'Queue' conformed to '_Pointer'
@inlinable public static func == <Other>(lhs: Self, rhs: Other) -> Bool where Other : _Pointer
^
Swift.Strideable:3:35: note: candidate would match if 'Queue' conformed to 'Strideable'
@inlinable public static func == (x: Self, y: Self) -> Bool
^
Swift.StringProtocol:2:35: note: candidate would match if 'Queue' conformed to 'StringProtocol'
@inlinable public static func == <RHS>(lhs: Self, rhs: RHS) -> Bool where RHS : StringProtocol
^
Swift.SIMD:4:24: note: candidate would match if 'Queue' conformed to 'SIMD'
public static func == (a: Self, b: Self) -> Bool
^
Foundation.AttributedStringProtocol:5:24: note: candidate would match if 'Queue' conformed to 'AttributedStringProtocol'
public static func == <RHS>(lhs: Self, rhs: RHS) -> Bool where RHS : AttributedStringProtocol
^
Foundation.__BridgedNSError:2:24: note: candidate would match if 'Queue' conformed to '__BridgedNSError'
public static func == (lhs: Self, rhs: Self) -> Bool
^
Foundation._BridgedStoredNSError:2:24: note: candidate would match if 'Queue' conformed to '_BridgedStoredNSError'
public static func == (lhs: Self, rhs: Self) -> Bool
^
Swift.Equatable:2:17: note: protocol requires function '==' with type '(Queue, Queue) -> Bool'
static func == (lhs: Self, rhs: Self) -> Bool
^
[26/26] Compiling Threading Queueable.swift
/host/spi-builder-workspace/.build/checkouts/Threading/Source/Queue.swift:4:15: error: type 'Queue' does not conform to protocol 'Equatable'
public struct Queue: Equatable {
^
/host/spi-builder-workspace/.build/checkouts/Threading/Source/Queue.swift:28:9: note: stored property type 'DispatchQueue' does not conform to protocol 'Equatable', preventing synthesized conformance of 'Queue' to 'Equatable'
let sdk: DispatchQueue
^
Swift.==:1:24: note: candidate would match if 'Queue' conformed to 'RawRepresentable'
@inlinable public func == <T>(lhs: T, rhs: T) -> Bool where T : RawRepresentable, T.RawValue : Equatable
^
Swift.FloatingPoint:2:24: note: candidate would match if 'Queue' conformed to 'FloatingPoint'
public static func == (lhs: Self, rhs: Self) -> Bool
^
Swift.BinaryInteger:2:24: note: candidate would match if 'Queue' conformed to 'BinaryInteger'
public static func == <Other>(lhs: Self, rhs: Other) -> Bool where Other : BinaryInteger
^
Swift._Pointer:2:24: note: candidate would match if 'Queue' conformed to '_Pointer'
public static func == (lhs: Self, rhs: Self) -> Bool
^
Swift._Pointer:3:35: note: candidate would match if 'Queue' conformed to '_Pointer'
@inlinable public static func == <Other>(lhs: Self, rhs: Other) -> Bool where Other : _Pointer
^
Swift.Strideable:3:35: note: candidate would match if 'Queue' conformed to 'Strideable'
@inlinable public static func == (x: Self, y: Self) -> Bool
^
Swift.StringProtocol:2:35: note: candidate would match if 'Queue' conformed to 'StringProtocol'
@inlinable public static func == <RHS>(lhs: Self, rhs: RHS) -> Bool where RHS : StringProtocol
^
Swift.SIMD:4:24: note: candidate would match if 'Queue' conformed to 'SIMD'
public static func == (a: Self, b: Self) -> Bool
^
Foundation.AttributedStringProtocol:5:24: note: candidate would match if 'Queue' conformed to 'AttributedStringProtocol'
public static func == <RHS>(lhs: Self, rhs: RHS) -> Bool where RHS : AttributedStringProtocol
^
Foundation.__BridgedNSError:2:24: note: candidate would match if 'Queue' conformed to '__BridgedNSError'
public static func == (lhs: Self, rhs: Self) -> Bool
^
Foundation._BridgedStoredNSError:2:24: note: candidate would match if 'Queue' conformed to '_BridgedStoredNSError'
public static func == (lhs: Self, rhs: Self) -> Bool
^
Swift.Equatable:2:17: note: protocol requires function '==' with type '(Queue, Queue) -> Bool'
static func == (lhs: Self, rhs: Self) -> Bool
^
error: fatalError
BUILD FAILURE 5.10 linux