Build Information
Successful build of RetryableTask, reference main (e08fd5), with Swift 6.2 for Linux on 22 Jun 2025 05:19:35 UTC.
Swift 6 data race errors: 0
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4609320-2":/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/rosecoder/retryable-task.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/rosecoder/retryable-task
* branch main -> FETCH_HEAD
* [new branch] main -> origin/main
HEAD is now at e08fd5f fix: Added conditional check for @isolated(any) for Swift 6
Cloned https://github.com/rosecoder/retryable-task.git
Revision (git rev-parse @):
e08fd5f3f5ab00cf150cfc591b234e7093c19b31
SUCCESS checkout https://github.com/rosecoder/retryable-task.git at main
========================================
Build
========================================
Selected platform: linux
Swift version: 6.2
Building package at path: $PWD
https://github.com/rosecoder/retryable-task.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-2":/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/apple/swift-log.git
Fetching https://github.com/neallester/swift-log-testing.git
[1/69] Fetching swift-log-testing
[70/3905] Fetching swift-log-testing, swift-log
Fetched https://github.com/neallester/swift-log-testing.git from cache (0.23s)
[39/3836] Fetching swift-log
Fetched https://github.com/apple/swift-log.git from cache (0.39s)
Computing version for https://github.com/neallester/swift-log-testing.git
Computed https://github.com/neallester/swift-log-testing.git at 0.0.1 (2.80s)
Computing version for https://github.com/apple/swift-log.git
Computed https://github.com/apple/swift-log.git at 1.6.3 (0.51s)
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
Creating working copy for https://github.com/neallester/swift-log-testing.git
Working copy of https://github.com/neallester/swift-log-testing.git resolved at 0.0.1
Building for debugging...
[0/3] Write sources
[2/3] Write swift-version-24593BA9C3E375BF.txt
[4/8] Compiling Logging MetadataProvider.swift
[5/8] Emitting module Logging
[6/8] Compiling Logging LogHandler.swift
[7/8] Compiling Logging Logging.swift
[8/8] Compiling Logging Locks.swift
[10/17] Compiling RetryableTask ImmediateRetryPolicy.swift
[11/17] Compiling RetryableTask ExponentialBackoffDelayRetryPolicy.swift
[12/17] Compiling RetryableTask DelayedRetryPolicy.swift
[13/17] Compiling RetryableTask DefaultRetryPolicy.swift
[14/17] Emitting module RetryableTask
[15/17] Compiling RetryableTask NoRetryPolicy.swift
[16/17] Compiling RetryableTask withRetryableTask.swift
[17/17] Compiling RetryableTask RetryPolicy.swift
Build complete! (10.99s)
Build complete.
{
"dependencies" : [
{
"identity" : "swift-log",
"requirement" : {
"range" : [
{
"lower_bound" : "1.4.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-log.git"
},
{
"identity" : "swift-log-testing",
"requirement" : {
"range" : [
{
"lower_bound" : "0.0.0",
"upper_bound" : "1.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/neallester/swift-log-testing.git"
}
],
"manifest_display_name" : "RetryableTask",
"name" : "RetryableTask",
"path" : "/host/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "12.0"
}
],
"products" : [
{
"name" : "RetryableTask",
"targets" : [
"RetryableTask"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "RetryableTaskTests",
"module_type" : "SwiftTarget",
"name" : "RetryableTaskTests",
"path" : "Tests/RetryableTaskTests",
"product_dependencies" : [
"SwiftLogTesting"
],
"sources" : [
"Policies/DefaultRetryPolicyTests.swift",
"Policies/DelayedRetryPolicyTests.swift",
"Policies/ExponentialBackoffDelayRetryPolicyTests.swift",
"Policies/ImmediateRetryPolicyTests.swift",
"Policies/NoRetryPolicyTests.swift",
"withRetryableTaskTests.swift"
],
"target_dependencies" : [
"RetryableTask"
],
"type" : "test"
},
{
"c99name" : "RetryableTask",
"module_type" : "SwiftTarget",
"name" : "RetryableTask",
"path" : "Sources/RetryableTask",
"product_dependencies" : [
"Logging"
],
"product_memberships" : [
"RetryableTask"
],
"sources" : [
"Policies/DefaultRetryPolicy.swift",
"Policies/DelayedRetryPolicy.swift",
"Policies/ExponentialBackoffDelayRetryPolicy.swift",
"Policies/ImmediateRetryPolicy.swift",
"Policies/NoRetryPolicy.swift",
"RetryPolicy.swift",
"withRetryableTask.swift"
],
"type" : "library"
}
],
"tools_version" : "5.10"
}
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.