Build Information
Successful build of WolfFoundation, reference master (8370e7), with Swift 6.2 for Linux on 18 Jun 2025 06:09:21 UTC.
Swift 6 data race errors: 0
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.2-latest swift build --triple x86_64-unknown-linux-gnu 2>&1Build Log
========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/wolfmcnally/WolfFoundation.git
Reference: master
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/wolfmcnally/WolfFoundation
* branch master -> FETCH_HEAD
* [new branch] master -> origin/master
HEAD is now at 8370e79 Build as dynamic library.
Cloned https://github.com/wolfmcnally/WolfFoundation.git
Revision (git rev-parse @):
8370e79858c238b584600374bd13484414796c72
SUCCESS checkout https://github.com/wolfmcnally/WolfFoundation.git at master
========================================
Build
========================================
Selected platform: linux
Swift version: 6.2
Building package at path: $PWD
https://github.com/wolfmcnally/WolfFoundation.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.2-latest swift build --triple x86_64-unknown-linux-gnu 2>&1
basic-6.2-latest: Pulling from finestructure/spi-images
Digest: sha256:f81a7bd7aa87a0f81848d48c5bcc03f5f78deebd37fa5f9be9913077205d3687
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.2-latest
Fetching https://github.com/wolfmcnally/WolfPipe
Fetching https://github.com/wolfmcnally/WolfNumerics
[1/277] Fetching wolfpipe
[220/552] Fetching wolfpipe, wolfnumerics
Fetched https://github.com/wolfmcnally/WolfPipe from cache (0.41s)
Fetched https://github.com/wolfmcnally/WolfNumerics from cache (0.40s)
Computing version for https://github.com/wolfmcnally/WolfPipe
Computed https://github.com/wolfmcnally/WolfPipe at 2.0.2 (1.19s)
Computing version for https://github.com/wolfmcnally/WolfNumerics
Computed https://github.com/wolfmcnally/WolfNumerics at 4.0.4 (0.79s)
Creating working copy for https://github.com/wolfmcnally/WolfPipe
Working copy of https://github.com/wolfmcnally/WolfPipe resolved at 2.0.2
Creating working copy for https://github.com/wolfmcnally/WolfNumerics
Working copy of https://github.com/wolfmcnally/WolfNumerics resolved at 4.0.4
Building for debugging...
[0/13] Write sources
[3/13] Write swift-version-24593BA9C3E375BF.txt
[5/35] Emitting module WolfPipe
[6/35] Compiling WolfPipe SetAlgebra.swift
[7/35] Compiling WolfNumerics Lerp.swift
[8/35] Compiling WolfNumerics NumericUtils.swift
[9/35] Compiling WolfNumerics Interval.swift
[10/35] Compiling WolfNumerics IntervalCreationOperator.swift
[11/36] Compiling WolfPipe KeyPaths.swift
[12/36] Compiling WolfPipe PipeCompatibleFunctions.swift
[13/36] Compiling WolfPipe ComposeOperator.swift
[14/36] Compiling WolfNumerics SeededRandomNumberGenerator.swift
[15/36] Compiling WolfNumerics SecureRandomNumberGenerator.swift
[16/36] Compiling WolfNumerics Frac.swift
[17/36] Compiling WolfNumerics Interpolable.swift
[18/36] Compiling WolfPipe EffectfulComposeOperator.swift
[19/36] Compiling WolfPipe PipeOperator.swift
[20/36] Compiling WolfPipe Curry.swift
[21/37] Wrapping AST for WolfPipe for debugging
[22/37] Write Objects.LinkFileList
[23/37] Linking libWolfPipe.so
[25/37] Emitting module WolfNumerics
[26/37] Compiling WolfNumerics ApproximatelyEqualsOperator.swift
[27/37] Compiling WolfNumerics BinarySearch.swift
[28/37] Compiling WolfNumerics PercentOperator.swift
[29/37] Compiling WolfNumerics RandomExtensions.swift
[30/37] Compiling WolfNumerics RangeExtensions.swift
[31/37] Compiling WolfNumerics RunningAverage.swift
[32/38] Wrapping AST for WolfNumerics for debugging
[33/38] Write Objects.LinkFileList
[34/38] Linking libWolfNumerics.so
[36/76] Compiling WolfFoundation OptionalExtensions.swift
[37/76] Compiling WolfFoundation Associated.swift
[38/76] Compiling WolfFoundation DebugIdentifier.swift
[39/76] Compiling WolfFoundation AttributeAssignmentPrecedence.swift
[40/76] Compiling WolfFoundation InheritsFromOperator.swift
[41/81] Emitting module WolfFoundation
/host/spi-builder-workspace/Sources/WolfFoundation/Protocols/Hideable.swift:31:27: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
29 | #endif
30 |
31 | public protocol Hideable: class {
| `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
32 | var isHidden: Bool { get set }
33 | }
/host/spi-builder-workspace/Sources/WolfFoundation/Types/Lazy.swift:49:33: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
45 | Caches result for sunsequent calls
46 | */
47 | public class Lazy<T> {
| `- note: 'T' previously declared here
48 |
49 | private indirect enum State<T> {
| `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
50 | case closure( () -> (T) )
51 | case value(T)
[42/81] Compiling WolfFoundation ModelObject.swift
[43/81] Compiling WolfFoundation Serializable.swift
[44/81] Compiling WolfFoundation ASCII.swift
[45/81] Compiling WolfFoundation Base64.swift
[46/81] Compiling WolfFoundation Dimensions.swift
[47/81] Compiling WolfFoundation WeakSet.swift
[48/81] Compiling WolfFoundation CodedError.swift
[49/81] Compiling WolfFoundation ErrorExtensions.swift
[50/81] Compiling WolfFoundation MessageError.swift
[51/81] Compiling WolfFoundation ValidationError.swift
[52/81] Compiling WolfFoundation WolfFoundationError.swift
[53/81] Compiling WolfFoundation InvalidateAndAssignOperator.swift
/host/spi-builder-workspace/Sources/WolfFoundation/Protocols/Hideable.swift:31:27: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
29 | #endif
30 |
31 | public protocol Hideable: class {
| `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
32 | var isHidden: Bool { get set }
33 | }
[54/81] Compiling WolfFoundation ReferenceOperator.swift
/host/spi-builder-workspace/Sources/WolfFoundation/Protocols/Hideable.swift:31:27: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
29 | #endif
30 |
31 | public protocol Hideable: class {
| `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
32 | var isHidden: Bool { get set }
33 | }
[55/81] Compiling WolfFoundation TweakOperator.swift
/host/spi-builder-workspace/Sources/WolfFoundation/Protocols/Hideable.swift:31:27: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
29 | #endif
30 |
31 | public protocol Hideable: class {
| `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
32 | var isHidden: Bool { get set }
33 | }
[56/81] Compiling WolfFoundation Hideable.swift
/host/spi-builder-workspace/Sources/WolfFoundation/Protocols/Hideable.swift:31:27: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
29 | #endif
30 |
31 | public protocol Hideable: class {
| `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
32 | var isHidden: Bool { get set }
33 | }
[57/81] Compiling WolfFoundation Invalidatable.swift
/host/spi-builder-workspace/Sources/WolfFoundation/Protocols/Hideable.swift:31:27: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
29 | #endif
30 |
31 | public protocol Hideable: class {
| `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
32 | var isHidden: Bool { get set }
33 | }
[58/81] Compiling WolfFoundation Hex.swift
/host/spi-builder-workspace/Sources/WolfFoundation/Types/Lazy.swift:49:33: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
45 | Caches result for sunsequent calls
46 | */
47 | public class Lazy<T> {
| `- note: 'T' previously declared here
48 |
49 | private indirect enum State<T> {
| `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
50 | case closure( () -> (T) )
51 | case value(T)
[59/81] Compiling WolfFoundation JSON.swift
/host/spi-builder-workspace/Sources/WolfFoundation/Types/Lazy.swift:49:33: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
45 | Caches result for sunsequent calls
46 | */
47 | public class Lazy<T> {
| `- note: 'T' previously declared here
48 |
49 | private indirect enum State<T> {
| `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
50 | case closure( () -> (T) )
51 | case value(T)
[60/81] Compiling WolfFoundation Lazy.swift
/host/spi-builder-workspace/Sources/WolfFoundation/Types/Lazy.swift:49:33: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
45 | Caches result for sunsequent calls
46 | */
47 | public class Lazy<T> {
| `- note: 'T' previously declared here
48 |
49 | private indirect enum State<T> {
| `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
50 | case closure( () -> (T) )
51 | case value(T)
[61/81] Compiling WolfFoundation Ordinal.swift
/host/spi-builder-workspace/Sources/WolfFoundation/Types/Lazy.swift:49:33: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
45 | Caches result for sunsequent calls
46 | */
47 | public class Lazy<T> {
| `- note: 'T' previously declared here
48 |
49 | private indirect enum State<T> {
| `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
50 | case closure( () -> (T) )
51 | case value(T)
[62/81] Compiling WolfFoundation Position.swift
/host/spi-builder-workspace/Sources/WolfFoundation/Types/Lazy.swift:49:33: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
45 | Caches result for sunsequent calls
46 | */
47 | public class Lazy<T> {
| `- note: 'T' previously declared here
48 |
49 | private indirect enum State<T> {
| `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
50 | case closure( () -> (T) )
51 | case value(T)
[63/81] Compiling WolfFoundation ArrayExtensions.swift
[64/81] Compiling WolfFoundation CircularIndex.swift
[65/81] Compiling WolfFoundation DataExtensions.swift
[66/81] Compiling WolfFoundation DateExtensions.swift
[67/81] Compiling WolfFoundation DictionaryExtensions.swift
[68/81] Compiling WolfFoundation TimeConstants.swift
[69/81] Compiling WolfFoundation Heap.swift
[70/81] Compiling WolfFoundation Matrix.swift
[71/81] Compiling WolfFoundation PriorityQueue.swift
[72/81] Compiling WolfFoundation Queue.swift
[73/81] Compiling WolfFoundation ValueCache.swift
[74/81] Compiling WolfFoundation SortWeight.swift
[75/81] Compiling WolfFoundation Tagged.swift
[76/81] Compiling WolfFoundation TransferValue.swift
[77/81] Compiling WolfFoundation UTF8.swift
[78/81] Compiling WolfFoundation Weak.swift
[79/82] Wrapping AST for WolfFoundation for debugging
[80/82] Write Objects.LinkFileList
[81/82] Linking libWolfFoundation.so
Build complete! (26.13s)
Build complete.
{
"dependencies" : [
{
"identity" : "wolfnumerics",
"requirement" : {
"range" : [
{
"lower_bound" : "4.0.0",
"upper_bound" : "5.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/wolfmcnally/WolfNumerics"
},
{
"identity" : "wolfpipe",
"requirement" : {
"range" : [
{
"lower_bound" : "2.0.0",
"upper_bound" : "3.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/wolfmcnally/WolfPipe"
}
],
"manifest_display_name" : "WolfFoundation",
"name" : "WolfFoundation",
"path" : "/host/spi-builder-workspace",
"platforms" : [
{
"name" : "ios",
"version" : "9.0"
},
{
"name" : "macos",
"version" : "10.13"
},
{
"name" : "tvos",
"version" : "11.0"
}
],
"products" : [
{
"name" : "WolfFoundation",
"targets" : [
"WolfFoundation"
],
"type" : {
"library" : [
"dynamic"
]
}
}
],
"targets" : [
{
"c99name" : "WolfFoundation",
"module_type" : "SwiftTarget",
"name" : "WolfFoundation",
"path" : "Sources/WolfFoundation",
"product_dependencies" : [
"WolfNumerics",
"WolfPipe"
],
"product_memberships" : [
"WolfFoundation"
],
"sources" : [
"Constants/TimeConstants.swift",
"Containers/Heap.swift",
"Containers/Matrix.swift",
"Containers/PriorityQueue.swift",
"Containers/Queue.swift",
"Containers/ValueCache.swift",
"Containers/WeakSet.swift",
"Errors/CodedError.swift",
"Errors/ErrorExtensions.swift",
"Errors/MessageError.swift",
"Errors/ValidationError.swift",
"Errors/WolfFoundationError.swift",
"Extensions/ArrayExtensions.swift",
"Extensions/CircularIndex.swift",
"Extensions/DataExtensions.swift",
"Extensions/DateExtensions.swift",
"Extensions/DictionaryExtensions.swift",
"Extensions/OptionalExtensions.swift",
"ObjCRuntime/Associated.swift",
"ObjCRuntime/DebugIdentifier.swift",
"Operators/AttributeAssignmentPrecedence.swift",
"Operators/InheritsFromOperator.swift",
"Operators/InvalidateAndAssignOperator.swift",
"Operators/ReferenceOperator.swift",
"Operators/TweakOperator.swift",
"Protocols/Hideable.swift",
"Protocols/Invalidatable.swift",
"Protocols/ModelObject.swift",
"Protocols/Serializable.swift",
"Types/ASCII.swift",
"Types/Base64.swift",
"Types/Dimensions.swift",
"Types/Hex.swift",
"Types/JSON.swift",
"Types/Lazy.swift",
"Types/Ordinal.swift",
"Types/Position.swift",
"Types/SortWeight.swift",
"Types/Tagged.swift",
"Types/TransferValue.swift",
"Types/UTF8.swift",
"Types/Weak.swift"
],
"type" : "library"
}
],
"tools_version" : "5.1"
}
basic-6.2-latest: Pulling from finestructure/spi-images
Digest: sha256:f81a7bd7aa87a0f81848d48c5bcc03f5f78deebd37fa5f9be9913077205d3687
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.2-latest
Done.