This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.

The Swift Package Index logo.Swift Package Index

Track the adoption of Swift 6 strict concurrency checks for data race safety. How many packages are Ready for Swift 6?

Build Information

Successful build of OperationAwaiting with Swift 5.8 for Linux.

Build Command

bash -c docker run --rm -v "checkouts-4606859-0":/host -w "$workDir" registry.gitlab.com/finestructure/spi-images:basic-5.8-latest swift build 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.28.9
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/Frizlab/OperationAwaiting.git
Reference: 1.2.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/Frizlab/OperationAwaiting
 * tag               1.2.0      -> FETCH_HEAD
HEAD is now at a1c40b3 Make project compatible w/ previous OS versions
Cloned https://github.com/Frizlab/OperationAwaiting.git
Revision (git rev-parse @):
a1c40b3e1fc6d837adee76d4fb924e27441151a3
SUCCESS checkout https://github.com/Frizlab/OperationAwaiting.git at 1.2.0
========================================
Build
========================================
Selected platform:         linux
Swift version:             5.8
Building package at path:  $workDir
https://github.com/Frizlab/OperationAwaiting.git
Running build ...
bash -c docker run --rm -v "checkouts-4606859-0":/host -w "$workDir" registry.gitlab.com/finestructure/spi-images:basic-5.8-latest swift build 2>&1
Fetching https://github.com/happn-tech/RetryingOperation.git
Fetching https://github.com/Frizlab/HasResult.git
Fetching https://github.com/apple/swift-log.git
[1/22] Fetching hasresult
[23/417] Fetching hasresult, retryingoperation
[418/3576] Fetching hasresult, retryingoperation, swift-log
Fetched https://github.com/Frizlab/HasResult.git (0.29s)
Fetched https://github.com/happn-tech/RetryingOperation.git (0.29s)
Computing version for https://github.com/happn-tech/RetryingOperation.git
Fetched https://github.com/apple/swift-log.git (0.29s)
Computed https://github.com/happn-tech/RetryingOperation.git at 1.1.7 (0.32s)
Computing version for https://github.com/Frizlab/HasResult.git
Computed https://github.com/Frizlab/HasResult.git at 1.0.0 (0.31s)
Computing version for https://github.com/apple/swift-log.git
Computed https://github.com/apple/swift-log.git at 1.4.2 (0.30s)
Creating working copy for https://github.com/apple/swift-log.git
Working copy of https://github.com/apple/swift-log.git resolved at 1.4.2
Creating working copy for https://github.com/Frizlab/HasResult.git
Working copy of https://github.com/Frizlab/HasResult.git resolved at 1.0.0
Creating working copy for https://github.com/happn-tech/RetryingOperation.git
Working copy of https://github.com/happn-tech/RetryingOperation.git resolved at 1.1.7
Building for debugging...
[1/2] Emitting module HasResult
[2/2] Compiling HasResult HasResult.swift
[5/7] Compiling OperationAwaiting Operation+Async.swift
/host/spi-builder-workspace/Sources/OperationAwaiting/Operation+Async.swift:11:9: warning: 'withTaskCancellationHandler(handler:operation:)' is deprecated: renamed to 'withTaskCancellationHandler(operation:onCancel:)'
                await withTaskCancellationHandler(handler: { cancel() }, operation: {
                      ^
/host/spi-builder-workspace/Sources/OperationAwaiting/Operation+Async.swift:11:9: note: use 'withTaskCancellationHandler(operation:onCancel:)' instead
                await withTaskCancellationHandler(handler: { cancel() }, operation: {
                      ^                           ~~~~~~~                ~~~~~~~~~
                                                  operation              onCancel
/host/spi-builder-workspace/Sources/OperationAwaiting/Operation+Async.swift:26:20: warning: 'withTaskCancellationHandler(handler:operation:)' is deprecated: renamed to 'withTaskCancellationHandler(operation:onCancel:)'
                return try await withTaskCancellationHandler(handler: { cancel() }, operation: {
                                 ^
/host/spi-builder-workspace/Sources/OperationAwaiting/Operation+Async.swift:26:20: note: use 'withTaskCancellationHandler(operation:onCancel:)' instead
                return try await withTaskCancellationHandler(handler: { cancel() }, operation: {
                                 ^                           ~~~~~~~                ~~~~~~~~~
                                                             operation              onCancel
[6/7] Compiling OperationAwaiting OperationQueue+Async.swift
/host/spi-builder-workspace/Sources/OperationAwaiting/OperationQueue+Async.swift:14:9: warning: 'withTaskCancellationHandler(handler:operation:)' is deprecated: renamed to 'withTaskCancellationHandler(operation:onCancel:)'
                await withTaskCancellationHandler(handler: { op.cancel() }, operation: {
                      ^
/host/spi-builder-workspace/Sources/OperationAwaiting/OperationQueue+Async.swift:14:9: note: use 'withTaskCancellationHandler(operation:onCancel:)' instead
                await withTaskCancellationHandler(handler: { op.cancel() }, operation: {
                      ^                           ~~~~~~~                   ~~~~~~~~~
                                                  operation                 onCancel
/host/spi-builder-workspace/Sources/OperationAwaiting/OperationQueue+Async.swift:29:9: warning: 'withTaskCancellationHandler(handler:operation:)' is deprecated: renamed to 'withTaskCancellationHandler(operation:onCancel:)'
                await withTaskCancellationHandler(handler: { ops.forEach{ $0.cancel() } }, operation: {
                      ^
/host/spi-builder-workspace/Sources/OperationAwaiting/OperationQueue+Async.swift:29:9: note: use 'withTaskCancellationHandler(operation:onCancel:)' instead
                await withTaskCancellationHandler(handler: { ops.forEach{ $0.cancel() } }, operation: {
                      ^                           ~~~~~~~                                  ~~~~~~~~~
                                                  operation                                onCancel
/host/spi-builder-workspace/Sources/OperationAwaiting/OperationQueue+Async.swift:44:20: warning: 'withTaskCancellationHandler(handler:operation:)' is deprecated: renamed to 'withTaskCancellationHandler(operation:onCancel:)'
                return try await withTaskCancellationHandler(handler: { op.cancel() }, operation: {
                                 ^
/host/spi-builder-workspace/Sources/OperationAwaiting/OperationQueue+Async.swift:44:20: note: use 'withTaskCancellationHandler(operation:onCancel:)' instead
                return try await withTaskCancellationHandler(handler: { op.cancel() }, operation: {
                                 ^                           ~~~~~~~                   ~~~~~~~~~
                                                             operation                 onCancel
/host/spi-builder-workspace/Sources/OperationAwaiting/OperationQueue+Async.swift:60:16: warning: 'withTaskCancellationHandler(handler:operation:)' is deprecated: renamed to 'withTaskCancellationHandler(operation:onCancel:)'
                return await withTaskCancellationHandler(handler: { ops.forEach{ $0.cancel() } }, operation: {
                             ^
/host/spi-builder-workspace/Sources/OperationAwaiting/OperationQueue+Async.swift:60:16: note: use 'withTaskCancellationHandler(operation:onCancel:)' instead
                return await withTaskCancellationHandler(handler: { ops.forEach{ $0.cancel() } }, operation: {
                             ^                           ~~~~~~~                                  ~~~~~~~~~
                                                         operation                                onCancel
[7/7] Emitting module OperationAwaiting
Build complete! (6.87s)
Build complete.
Done.
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.