Build Information
Failed to build Genything, reference 3.0.0 (4b4b8a), with Swift 6.0 for Linux on 19 Dec 2025 21:00:17 UTC.
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4606859-2":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu 2>&1Build Log
========================================
RunAll
========================================
Builder version: 4.68.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/justeattakeaway/Genything.git
Reference: 3.0.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/justeattakeaway/Genything
* tag 3.0.0 -> FETCH_HEAD
HEAD is now at 4b4b8aa Separate the GenythingTest library from the main library (#60)
Cloned https://github.com/justeattakeaway/Genything.git
Revision (git rev-parse @):
4b4b8aa8d3a10e7088e75a03e017f6afae5de896
SUCCESS checkout https://github.com/justeattakeaway/Genything.git at 3.0.0
========================================
Build
========================================
Selected platform: linux
Swift version: 6.0
Building package at path: $PWD
https://github.com/justeattakeaway/Genything.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-2":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu 2>&1
basic-6.0-latest: Pulling from finestructure/spi-images
Digest: sha256:d9a15f93bf2b54d4a5c29ad13249b33c1decc55763b749502648fc1aee8d297b
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.0-latest
Fetching https://github.com/apple/swift-docc-plugin
[1/2158] Fetching swift-docc-plugin
Fetched https://github.com/apple/swift-docc-plugin from cache (0.62s)
Computing version for https://github.com/apple/swift-docc-plugin
Computed https://github.com/apple/swift-docc-plugin at 1.4.5 (1.10s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit
[1/3626] Fetching swift-docc-symbolkit
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (1.57s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (1.12s)
Creating working copy for https://github.com/apple/swift-docc-plugin
Working copy of https://github.com/apple/swift-docc-plugin resolved at 1.4.5
Creating working copy for https://github.com/swiftlang/swift-docc-symbolkit
Working copy of https://github.com/swiftlang/swift-docc-symbolkit resolved at 1.0.0
[1/1] Compiling plugin Swift-DocC
[2/2] Compiling plugin Swift-DocC Preview
Building for debugging...
[2/13] Write sources
[2/13] Copying StateData.json
[3/13] Copying LoremData.json
[5/13] Copying StreetData.json
[6/13] Copying BusinessNamesData.json
[6/13] Copying CountryData.json
[6/13] Copying CityData.json
[6/13] Write sources
[11/13] Copying PersonNamesData.json
[12/13] Write swift-version-24593BA9C3E375BF.txt
[14/66] Emitting module Genything
[15/73] Compiling Genything Generator+orNil.swift
[16/73] Compiling Genything Generator+prepend.swift
[17/73] Compiling Genything Generator+recompose.swift
[18/73] Compiling Genything Generator+regenerate.swift
[19/73] Compiling Genything Generator+replace.swift
[20/73] Compiling Genything Generator+replacingOccurences.swift
[21/73] Compiling Genything Generator+scan.swift
[22/73] Compiling Genything Generators+weighted.swift
[23/73] Compiling Genything Generators+constant.swift
[24/73] Compiling Genything Generators+iterate.swift
[25/73] Compiling Genything Generators+loop.swift
[26/73] Compiling Genything Generators+shuffleLoop.swift
[27/73] Compiling Genything Generators+shuffled.swift
[28/73] Compiling Genything Generators+void.swift
[29/73] Compiling Genything Generator+expand.swift
[30/73] Compiling Genything Generator+filter.swift
[31/73] Compiling Genything Generator+flatMap.swift
[32/73] Compiling Genything Generator+flatten.swift
[33/73] Compiling Genything Generator+generate.swift
[34/73] Compiling Genything Generator+map.swift
[35/73] Compiling Genything Generator+or.swift
[36/73] Compiling Genything Generator+zip.swift
/host/spi-builder-workspace/Sources/Genything/Random/RandomSource.swift:59:27: error: cannot find 'arc4random' in scope
57 | /// Returns: An new, independent `RandomSource` initialized from a nondeterministic seed
58 | public static func random() -> RandomSource {
59 | let seed = UInt64(arc4random())
| `- error: cannot find 'arc4random' in scope
60 | return .init(using: LinearCongruentialRandomNumberGenerator(seed: seed), originalSeed: seed)
61 | }
[37/73] Compiling Genything Generator+sequence.swift
/host/spi-builder-workspace/Sources/Genything/Random/RandomSource.swift:59:27: error: cannot find 'arc4random' in scope
57 | /// Returns: An new, independent `RandomSource` initialized from a nondeterministic seed
58 | public static func random() -> RandomSource {
59 | let seed = UInt64(arc4random())
| `- error: cannot find 'arc4random' in scope
60 | return .init(using: LinearCongruentialRandomNumberGenerator(seed: seed), originalSeed: seed)
61 | }
[38/73] Compiling Genything Generator+take.swift
/host/spi-builder-workspace/Sources/Genything/Random/RandomSource.swift:59:27: error: cannot find 'arc4random' in scope
57 | /// Returns: An new, independent `RandomSource` initialized from a nondeterministic seed
58 | public static func random() -> RandomSource {
59 | let seed = UInt64(arc4random())
| `- error: cannot find 'arc4random' in scope
60 | return .init(using: LinearCongruentialRandomNumberGenerator(seed: seed), originalSeed: seed)
61 | }
[39/73] Compiling Genything RandomSource+drop.swift
/host/spi-builder-workspace/Sources/Genything/Random/RandomSource.swift:59:27: error: cannot find 'arc4random' in scope
57 | /// Returns: An new, independent `RandomSource` initialized from a nondeterministic seed
58 | public static func random() -> RandomSource {
59 | let seed = UInt64(arc4random())
| `- error: cannot find 'arc4random' in scope
60 | return .init(using: LinearCongruentialRandomNumberGenerator(seed: seed), originalSeed: seed)
61 | }
[40/73] Compiling Genything RandomSource.swift
/host/spi-builder-workspace/Sources/Genything/Random/RandomSource.swift:59:27: error: cannot find 'arc4random' in scope
57 | /// Returns: An new, independent `RandomSource` initialized from a nondeterministic seed
58 | public static func random() -> RandomSource {
59 | let seed = UInt64(arc4random())
| `- error: cannot find 'arc4random' in scope
60 | return .init(using: LinearCongruentialRandomNumberGenerator(seed: seed), originalSeed: seed)
61 | }
[41/73] Compiling Genything LinearCongruentialRandomNumberGenerator.swift
/host/spi-builder-workspace/Sources/Genything/Random/RandomSource.swift:59:27: error: cannot find 'arc4random' in scope
57 | /// Returns: An new, independent `RandomSource` initialized from a nondeterministic seed
58 | public static func random() -> RandomSource {
59 | let seed = UInt64(arc4random())
| `- error: cannot find 'arc4random' in scope
60 | return .init(using: LinearCongruentialRandomNumberGenerator(seed: seed), originalSeed: seed)
61 | }
[42/73] Compiling Genything RandomizedGenerator.swift
/host/spi-builder-workspace/Sources/Genything/Random/RandomSource.swift:59:27: error: cannot find 'arc4random' in scope
57 | /// Returns: An new, independent `RandomSource` initialized from a nondeterministic seed
58 | public static func random() -> RandomSource {
59 | let seed = UInt64(arc4random())
| `- error: cannot find 'arc4random' in scope
60 | return .init(using: LinearCongruentialRandomNumberGenerator(seed: seed), originalSeed: seed)
61 | }
[43/73] Compiling Genything Generators.swift
[44/73] Compiling Genything String+replacingOccurences.swift
[45/73] Compiling Genything LazyGenerator.swift
[46/73] Compiling Genything Generator+also.swift
[47/73] Compiling Genything Generator+debug.swift
[48/73] Compiling Genything Generator+distinct.swift
[49/73] Compiling Genything Generator+drop.swift
[50/73] Compiling Genything AnyGenerator.swift
[51/73] Compiling Genything CaseIterable+arbitrary.swift
[52/73] Compiling Genything Collection+arbitrary.swift
[53/73] Compiling Genything RandomInRangeable.swift
[54/73] Compiling Genything Range+arbitrary.swift
[55/73] Compiling Genything Arbitrary.swift
[56/73] Compiling Genything CoreLocation+Arbitrary.swift
[57/73] Compiling Genything Foundation+Arbitrary.swift
[58/73] Compiling Genything Generators+compose.swift
[59/73] Compiling Genything Generators+either.swift
[60/73] Compiling Genything Generators+join.swift
[61/73] Compiling Genything Generators+merge.swift
[62/73] Compiling Genything Generators+oneOf.swift
[63/73] Compiling Genything Generators+reduce.swift
[64/73] Compiling Genything Generators+replacing.swift
[65/73] Compiling Genything Generators+switchOnNil.swift
[66/73] Compiling Genything Swift+Arbitrary.swift
[67/73] Compiling Genything UIKit+Arbitrary.swift
[68/73] Compiling Genything UUID+initRandomBits.swift
[69/73] Compiling Genything Composer.swift
[70/73] Compiling Genything Generator.swift
[71/73] Compiling Genything GeneratorProfiler.swift
[72/73] Compiling Genything GeneratorSequence.swift
[73/73] Compiling Genything Generators+collect.swift
BUILD FAILURE 6.0 linux