Build Information
Failed to build Finch, reference 1.0.0 (c54cc6
), with Swift 6.0 for Linux on 26 Nov 2024 21:45:07 UTC.
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4606859-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 -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures 2>&1
Build Log
========================================
RunAll
========================================
Builder version: 4.58.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/mklbtz/finch.git
Reference: 1.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/mklbtz/finch
* tag 1.0.0 -> FETCH_HEAD
HEAD is now at c54cc69 Create README.md
Cloned https://github.com/mklbtz/finch.git
Revision (git rev-parse @):
c54cc69ced1d8fae78a7ccb47456da33e8dab59e
SUCCESS checkout https://github.com/mklbtz/finch.git at 1.0.0
========================================
Build
========================================
Selected platform: linux
Swift version: 6.0
Building package at path: $PWD
https://github.com/mklbtz/finch.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-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 -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures 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
Fetching https://github.com/Carthage/Commandant.git
[1/2323] Fetching commandant
Fetched https://github.com/Carthage/Commandant.git from cache (0.22s)
Creating working copy for https://github.com/Carthage/Commandant.git
Working copy of https://github.com/Carthage/Commandant.git resolved at master (0a192d3)
Building for debugging...
[0/13] Write sources
[4/13] Write swift-version-24593BA9C3E375BF.txt
[6/30] Compiling Commandant OrderedSet.swift
[7/31] Compiling Commandant Result+Additions.swift
[8/31] Compiling Commandant Switch.swift
[9/31] Compiling Commandant Option.swift
/host/spi-builder-workspace/.build/checkouts/Commandant/Sources/Commandant/Option.swift:239:32: error: instance method 'contains' requires that 'String.Element' (aka 'Character') conform to 'Collection'
237 | let components = unwrappedStringValue.split(
238 | omittingEmptySubsequences: true,
239 | whereSeparator: [",", " "].contains
| `- error: instance method 'contains' requires that 'String.Element' (aka 'Character') conform to 'Collection'
240 | )
241 | var resultValues: [T] = []
_StringProcessing.Collection:3:17: note: where 'C' = 'String.Element' (aka 'Character')
1 | extension Collection where Self.Element : Equatable {
2 | @available(macOS 13.0, iOS 16.0, watchOS 9.0, tvOS 16.0, *)
3 | public func contains<C>(_ other: C) -> Bool where C : Collection, Self.Element == C.Element
| `- note: where 'C' = 'String.Element' (aka 'Character')
4 | }
[10/31] Compiling Commandant Errors.swift
[11/31] Compiling Commandant HelpCommand.swift
[12/31] Compiling Commandant Argument.swift
[13/31] Compiling Commandant ArgumentParser.swift
[14/31] Emitting module Commandant
[15/31] Compiling Commandant ArgumentProtocol.swift
[16/31] Compiling Commandant Command.swift
[17/31] Compiling TaskManagement extensions.swift
/host/spi-builder-workspace/Sources/TaskManagement/extensions.swift:1:1: warning: extension declares a conformance of imported type 'String' to imported protocol 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
1 | extension String: Error {
| |- warning: extension declares a conformance of imported type 'String' to imported protocol 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
2 | public func print(terminator: String = "") {
3 | Swift.print(self, terminator: terminator)
[18/31] Compiling TaskManagement TaskManager.swift
[19/31] Compiling TaskManagement Transcoder.swift
[20/31] Compiling TaskManagement Storage.swift
[21/31] Compiling TaskManagement File.swift
/host/spi-builder-workspace/Sources/TaskManagement/File.swift:36:10: warning: associated value 'couldNotCreate' of 'Sendable'-conforming enum 'Error' has non-sendable type 'File'; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public struct File {
| `- note: consider making struct 'File' conform to the 'Sendable' protocol
4 | public let path: String
5 |
:
34 | extension File {
35 | public enum Error: Swift.Error {
36 | case couldNotCreate(File)
| `- warning: associated value 'couldNotCreate' of 'Sendable'-conforming enum 'Error' has non-sendable type 'File'; this is an error in the Swift 6 language mode
37 | case couldNotRead(File)
38 | }
/host/spi-builder-workspace/Sources/TaskManagement/File.swift:37:10: warning: associated value 'couldNotRead' of 'Sendable'-conforming enum 'Error' has non-sendable type 'File'; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public struct File {
| `- note: consider making struct 'File' conform to the 'Sendable' protocol
4 | public let path: String
5 |
:
35 | public enum Error: Swift.Error {
36 | case couldNotCreate(File)
37 | case couldNotRead(File)
| `- warning: associated value 'couldNotRead' of 'Sendable'-conforming enum 'Error' has non-sendable type 'File'; this is an error in the Swift 6 language mode
38 | }
39 | }
[22/31] Emitting module TaskManagement
/host/spi-builder-workspace/Sources/TaskManagement/File.swift:36:10: warning: associated value 'couldNotCreate' of 'Sendable'-conforming enum 'Error' has non-sendable type 'File'; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public struct File {
| `- note: consider making struct 'File' conform to the 'Sendable' protocol
4 | public let path: String
5 |
:
34 | extension File {
35 | public enum Error: Swift.Error {
36 | case couldNotCreate(File)
| `- warning: associated value 'couldNotCreate' of 'Sendable'-conforming enum 'Error' has non-sendable type 'File'; this is an error in the Swift 6 language mode
37 | case couldNotRead(File)
38 | }
/host/spi-builder-workspace/Sources/TaskManagement/File.swift:37:10: warning: associated value 'couldNotRead' of 'Sendable'-conforming enum 'Error' has non-sendable type 'File'; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public struct File {
| `- note: consider making struct 'File' conform to the 'Sendable' protocol
4 | public let path: String
5 |
:
35 | public enum Error: Swift.Error {
36 | case couldNotCreate(File)
37 | case couldNotRead(File)
| `- warning: associated value 'couldNotRead' of 'Sendable'-conforming enum 'Error' has non-sendable type 'File'; this is an error in the Swift 6 language mode
38 | }
39 | }
/host/spi-builder-workspace/Sources/TaskManagement/extensions.swift:1:1: warning: extension declares a conformance of imported type 'String' to imported protocol 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
1 | extension String: Error {
| |- warning: extension declares a conformance of imported type 'String' to imported protocol 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
2 | public func print(terminator: String = "") {
3 | Swift.print(self, terminator: terminator)
[23/31] Compiling TaskManagement Task.swift
BUILD FAILURE 6.0 linux