Build Information
Successful build of swift-scru128, reference v3.0.2 (d82c68
), with Swift 6.0 for Linux on 3 Nov 2024 15:36:04 UTC.
Swift 6 data race errors: 1
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete 2>&1
Build Log
========================================
RunAll
========================================
Builder version: 4.56.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/scru128/swift-scru128.git
Reference: v3.0.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/scru128/swift-scru128
* tag v3.0.2 -> FETCH_HEAD
HEAD is now at d82c68f v3.0.2 Released
Cloned https://github.com/scru128/swift-scru128.git
Revision (git rev-parse @):
d82c68fadb6cdd678682ae963299605ae48590a4
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/scru128/swift-scru128.git at v3.0.2
========================================
Build
========================================
Selected platform: linux
Swift version: 6.0
Building package at path: $PWD
https://github.com/scru128/swift-scru128.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.0-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete 2>&1
basic-6.0-latest: Pulling from finestructure/spi-images
Digest: sha256:47d26c99ca4f1ac0a332c85fd5b13ff4390e72115219984a57a68fe9d1063a05
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.0-latest
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-24593BA9C3E375BF.txt
[3/6] Compiling Scru128 Scru128Id.swift
[4/6] Compiling Scru128 Scru128.swift
/host/spi-builder-workspace/Sources/Scru128/Scru128.swift:10:13: warning: let 'globalGenerator' is not concurrency-safe because non-'Sendable' type 'Scru128Generator<SystemRandomNumberGenerator>' may have shared mutable state; this is an error in the Swift 6 language mode
8 | let maxCounterLo: UInt32 = 0xff_ffff
9 |
10 | private let globalGenerator = Scru128Generator()
| |- warning: let 'globalGenerator' is not concurrency-safe because non-'Sendable' type 'Scru128Generator<SystemRandomNumberGenerator>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'globalGenerator' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 |
12 | /// Generates a new SCRU128 ID object using the global generator.
/host/spi-builder-workspace/Sources/Scru128/Scru128Generator.swift:27:14: note: generic class 'Scru128Generator' does not conform to the 'Sendable' protocol
25 | ///
26 | /// The `Core` functions offer low-level thread-unsafe primitives to customize the behavior.
27 | public class Scru128Generator<R: RandomNumberGenerator> {
| `- note: generic class 'Scru128Generator' does not conform to the 'Sendable' protocol
28 | private var timestamp: UInt64 = 0
29 | private var counterHi: UInt32 = 0
[5/6] Compiling Scru128 Scru128Generator.swift
[6/6] Emitting module Scru128
/host/spi-builder-workspace/Sources/Scru128/Scru128.swift:10:13: warning: let 'globalGenerator' is not concurrency-safe because non-'Sendable' type 'Scru128Generator<SystemRandomNumberGenerator>' may have shared mutable state; this is an error in the Swift 6 language mode
8 | let maxCounterLo: UInt32 = 0xff_ffff
9 |
10 | private let globalGenerator = Scru128Generator()
| |- warning: let 'globalGenerator' is not concurrency-safe because non-'Sendable' type 'Scru128Generator<SystemRandomNumberGenerator>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'globalGenerator' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 |
12 | /// Generates a new SCRU128 ID object using the global generator.
/host/spi-builder-workspace/Sources/Scru128/Scru128Generator.swift:27:14: note: generic class 'Scru128Generator' does not conform to the 'Sendable' protocol
25 | ///
26 | /// The `Core` functions offer low-level thread-unsafe primitives to customize the behavior.
27 | public class Scru128Generator<R: RandomNumberGenerator> {
| `- note: generic class 'Scru128Generator' does not conform to the 'Sendable' protocol
28 | private var timestamp: UInt64 = 0
29 | private var counterHi: UInt32 = 0
Build complete! (8.21s)
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "swift-scru128",
"name" : "swift-scru128",
"path" : "/host/spi-builder-workspace",
"platforms" : [
],
"products" : [
{
"name" : "Scru128",
"targets" : [
"Scru128"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "Scru128Tests",
"module_type" : "SwiftTarget",
"name" : "Scru128Tests",
"path" : "Tests/Scru128Tests",
"sources" : [
"Scru128GeneratorTests.swift",
"Scru128IdTests.swift",
"Scru128Tests.swift"
],
"target_dependencies" : [
"Scru128"
],
"type" : "test"
},
{
"c99name" : "Scru128",
"module_type" : "SwiftTarget",
"name" : "Scru128",
"path" : "Sources/Scru128",
"product_memberships" : [
"Scru128"
],
"sources" : [
"Scru128.swift",
"Scru128Generator.swift",
"Scru128Id.swift"
],
"type" : "library"
}
],
"tools_version" : "5.6"
}
basic-6.0-latest: Pulling from finestructure/spi-images
Digest: sha256:47d26c99ca4f1ac0a332c85fd5b13ff4390e72115219984a57a68fe9d1063a05
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.0-latest
Done.