Build Information
Successful build of swift-tools-support-core, reference main (f9b401
), with Swift 5.9 for Linux on 11 Jun 2025 11:16:06 UTC.
Swift 6 data race errors: 0
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-5.9-latest swift build --triple x86_64-unknown-linux-gnu 2>&1
Build Log
========================================
RunAll
========================================
Builder version: 4.63.1
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/swiftlang/swift-tools-support-core.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/swiftlang/swift-tools-support-core
* branch main -> FETCH_HEAD
* [new branch] main -> origin/main
HEAD is now at f9b4010 Fix the build on iOS due to missing availability annotations
Cloned https://github.com/swiftlang/swift-tools-support-core.git
Revision (git rev-parse @):
f9b401016b70c6b8409e5c97e74d97513d1a8d02
SUCCESS checkout https://github.com/swiftlang/swift-tools-support-core.git at main
========================================
Build
========================================
Selected platform: linux
Swift version: 5.9
Building package at path: $PWD
https://github.com/swiftlang/swift-tools-support-core.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-5.9-latest swift build --triple x86_64-unknown-linux-gnu 2>&1
basic-5.9-latest: Pulling from finestructure/spi-images
Digest: sha256:943c57f5f023c04804daf623375860c13f93d33d0cb4f0a89054871e5f11529c
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-5.9-latest
Building for debugging...
[0/7] Compiling TSCclibc libc.c
[1/7] Compiling TSCclibc strerror.c
[2/7] Compiling TSCclibc process.c
[4/9] Emitting module TSCLibc
[5/9] Compiling TSCLibc libc.swift
[7/11] Wrapping AST for TSCLibc for debugging
[9/51] Emitting module TSCBasic
/host/spi-builder-workspace/Sources/TSCBasic/Condition.swift:16:17: warning: stored property '_condition' of 'Sendable'-conforming struct 'Condition' has non-sendable type 'NSCondition'
private let _condition = NSCondition()
^
Foundation.NSCondition:1:12: note: class 'NSCondition' does not conform to the 'Sendable' protocol
open class NSCondition : NSObject, NSLocking {
^
/host/spi-builder-workspace/Sources/TSCBasic/Condition.swift:11:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/TSCBasic/FileInfo.swift:37:16: warning: stored property 'fileType' of 'Sendable'-conforming struct 'FileInfo' has non-sendable type 'FileAttributeType'
public let fileType: FileAttributeType
^
Foundation.FileAttributeType:1:15: note: struct 'FileAttributeType' does not conform to the 'Sendable' protocol
public struct FileAttributeType : RawRepresentable, Equatable, Hashable {
^
/host/spi-builder-workspace/Sources/TSCBasic/FileInfo.swift:11:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
[10/56] Compiling TSCBasic Await.swift
[11/56] Compiling TSCBasic Base64URL.swift
[12/56] Compiling TSCBasic ByteString.swift
[13/56] Compiling TSCBasic CStringArray.swift
[14/56] Compiling TSCBasic CacheableSequence.swift
[15/56] Compiling TSCBasic Closable.swift
[16/56] Compiling TSCBasic PathShims.swift
/host/spi-builder-workspace/Sources/TSCBasic/Process/Process.swift:388:57: warning: 'loggingHandler' is deprecated: use instance level `loggingHandler` passed via `init` instead of setting one globally.
self.loggingHandler = loggingHandler ?? Process.loggingHandler
^
/host/spi-builder-workspace/Sources/TSCBasic/Process/Process.swift:429:57: warning: 'loggingHandler' is deprecated: use instance level `loggingHandler` passed via `init` instead of setting one globally.
self.loggingHandler = loggingHandler ?? Process.loggingHandler
^
/host/spi-builder-workspace/Sources/TSCBasic/Process/Process.swift:740:32: warning: 'environment' is deprecated: use `environmentBlock` instead
let env = CStringArray(environment.map({ "\($0.0)=\($0.1)" }))
^
[17/56] Compiling TSCBasic Process.swift
/host/spi-builder-workspace/Sources/TSCBasic/Process/Process.swift:388:57: warning: 'loggingHandler' is deprecated: use instance level `loggingHandler` passed via `init` instead of setting one globally.
self.loggingHandler = loggingHandler ?? Process.loggingHandler
^
/host/spi-builder-workspace/Sources/TSCBasic/Process/Process.swift:429:57: warning: 'loggingHandler' is deprecated: use instance level `loggingHandler` passed via `init` instead of setting one globally.
self.loggingHandler = loggingHandler ?? Process.loggingHandler
^
/host/spi-builder-workspace/Sources/TSCBasic/Process/Process.swift:740:32: warning: 'environment' is deprecated: use `environmentBlock` instead
let env = CStringArray(environment.map({ "\($0.0)=\($0.1)" }))
^
[18/56] Compiling TSCBasic ProcessEnv.swift
/host/spi-builder-workspace/Sources/TSCBasic/Process/Process.swift:388:57: warning: 'loggingHandler' is deprecated: use instance level `loggingHandler` passed via `init` instead of setting one globally.
self.loggingHandler = loggingHandler ?? Process.loggingHandler
^
/host/spi-builder-workspace/Sources/TSCBasic/Process/Process.swift:429:57: warning: 'loggingHandler' is deprecated: use instance level `loggingHandler` passed via `init` instead of setting one globally.
self.loggingHandler = loggingHandler ?? Process.loggingHandler
^
/host/spi-builder-workspace/Sources/TSCBasic/Process/Process.swift:740:32: warning: 'environment' is deprecated: use `environmentBlock` instead
let env = CStringArray(environment.map({ "\($0.0)=\($0.1)" }))
^
[19/56] Compiling TSCBasic ProcessSet.swift
/host/spi-builder-workspace/Sources/TSCBasic/Process/Process.swift:388:57: warning: 'loggingHandler' is deprecated: use instance level `loggingHandler` passed via `init` instead of setting one globally.
self.loggingHandler = loggingHandler ?? Process.loggingHandler
^
/host/spi-builder-workspace/Sources/TSCBasic/Process/Process.swift:429:57: warning: 'loggingHandler' is deprecated: use instance level `loggingHandler` passed via `init` instead of setting one globally.
self.loggingHandler = loggingHandler ?? Process.loggingHandler
^
/host/spi-builder-workspace/Sources/TSCBasic/Process/Process.swift:740:32: warning: 'environment' is deprecated: use `environmentBlock` instead
let env = CStringArray(environment.map({ "\($0.0)=\($0.1)" }))
^
[20/56] Compiling TSCBasic RegEx.swift
/host/spi-builder-workspace/Sources/TSCBasic/Process/Process.swift:388:57: warning: 'loggingHandler' is deprecated: use instance level `loggingHandler` passed via `init` instead of setting one globally.
self.loggingHandler = loggingHandler ?? Process.loggingHandler
^
/host/spi-builder-workspace/Sources/TSCBasic/Process/Process.swift:429:57: warning: 'loggingHandler' is deprecated: use instance level `loggingHandler` passed via `init` instead of setting one globally.
self.loggingHandler = loggingHandler ?? Process.loggingHandler
^
/host/spi-builder-workspace/Sources/TSCBasic/Process/Process.swift:740:32: warning: 'environment' is deprecated: use `environmentBlock` instead
let env = CStringArray(environment.map({ "\($0.0)=\($0.1)" }))
^
[21/56] Compiling TSCBasic CodableResult.swift
/host/spi-builder-workspace/Sources/TSCBasic/Condition.swift:16:17: warning: stored property '_condition' of 'Sendable'-conforming struct 'Condition' has non-sendable type 'NSCondition'
private let _condition = NSCondition()
^
Foundation.NSCondition:1:12: note: class 'NSCondition' does not conform to the 'Sendable' protocol
open class NSCondition : NSObject, NSLocking {
^
/host/spi-builder-workspace/Sources/TSCBasic/Condition.swift:11:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
[22/56] Compiling TSCBasic CollectionAlgorithms.swift
/host/spi-builder-workspace/Sources/TSCBasic/Condition.swift:16:17: warning: stored property '_condition' of 'Sendable'-conforming struct 'Condition' has non-sendable type 'NSCondition'
private let _condition = NSCondition()
^
Foundation.NSCondition:1:12: note: class 'NSCondition' does not conform to the 'Sendable' protocol
open class NSCondition : NSObject, NSLocking {
^
/host/spi-builder-workspace/Sources/TSCBasic/Condition.swift:11:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
[23/56] Compiling TSCBasic CollectionExtensions.swift
/host/spi-builder-workspace/Sources/TSCBasic/Condition.swift:16:17: warning: stored property '_condition' of 'Sendable'-conforming struct 'Condition' has non-sendable type 'NSCondition'
private let _condition = NSCondition()
^
Foundation.NSCondition:1:12: note: class 'NSCondition' does not conform to the 'Sendable' protocol
open class NSCondition : NSObject, NSLocking {
^
/host/spi-builder-workspace/Sources/TSCBasic/Condition.swift:11:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
[24/56] Compiling TSCBasic Condition.swift
/host/spi-builder-workspace/Sources/TSCBasic/Condition.swift:16:17: warning: stored property '_condition' of 'Sendable'-conforming struct 'Condition' has non-sendable type 'NSCondition'
private let _condition = NSCondition()
^
Foundation.NSCondition:1:12: note: class 'NSCondition' does not conform to the 'Sendable' protocol
open class NSCondition : NSObject, NSLocking {
^
/host/spi-builder-workspace/Sources/TSCBasic/Condition.swift:11:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
[25/56] Compiling TSCBasic DeltaAlgorithm.swift
/host/spi-builder-workspace/Sources/TSCBasic/Condition.swift:16:17: warning: stored property '_condition' of 'Sendable'-conforming struct 'Condition' has non-sendable type 'NSCondition'
private let _condition = NSCondition()
^
Foundation.NSCondition:1:12: note: class 'NSCondition' does not conform to the 'Sendable' protocol
open class NSCondition : NSObject, NSLocking {
^
/host/spi-builder-workspace/Sources/TSCBasic/Condition.swift:11:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
[26/56] Compiling TSCBasic DiagnosticsEngine.swift
/host/spi-builder-workspace/Sources/TSCBasic/Condition.swift:16:17: warning: stored property '_condition' of 'Sendable'-conforming struct 'Condition' has non-sendable type 'NSCondition'
private let _condition = NSCondition()
^
Foundation.NSCondition:1:12: note: class 'NSCondition' does not conform to the 'Sendable' protocol
open class NSCondition : NSObject, NSLocking {
^
/host/spi-builder-workspace/Sources/TSCBasic/Condition.swift:11:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
[27/56] Compiling TSCBasic Result.swift
[28/56] Compiling TSCBasic SortedArray.swift
[29/56] Compiling TSCBasic StringConversions.swift
[30/56] Compiling TSCBasic SynchronizedQueue.swift
[31/56] Compiling TSCBasic TemporaryFile.swift
[32/56] Compiling TSCBasic OSLog.swift
[33/56] Compiling TSCBasic ObjectIdentifierProtocol.swift
[34/56] Compiling TSCBasic OrderedDictionary.swift
[35/56] Compiling TSCBasic OrderedSet.swift
[36/56] Compiling TSCBasic Path.swift
[37/56] Compiling TSCBasic HashAlgorithms.swift
[38/56] Compiling TSCBasic JSON.swift
[39/56] Compiling TSCBasic JSONMapper.swift
[40/56] Compiling TSCBasic KeyedPair.swift
[41/56] Compiling TSCBasic LazyCache.swift
[42/56] Compiling TSCBasic Lock.swift
[43/56] Compiling TSCBasic DictionaryExtensions.swift
/host/spi-builder-workspace/Sources/TSCBasic/FileInfo.swift:37:16: warning: stored property 'fileType' of 'Sendable'-conforming struct 'FileInfo' has non-sendable type 'FileAttributeType'
public let fileType: FileAttributeType
^
Foundation.FileAttributeType:1:15: note: struct 'FileAttributeType' does not conform to the 'Sendable' protocol
public struct FileAttributeType : RawRepresentable, Equatable, Hashable {
^
/host/spi-builder-workspace/Sources/TSCBasic/FileInfo.swift:11:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/TSCBasic/FileSystem.swift:441:21: warning: 'init(_:)' is deprecated: use throwing `init(validating:)` variant instead
return try? AbsolutePath(String(cString: fsr))
^
/host/spi-builder-workspace/Sources/TSCBasic/FileSystem.swift:441:16: warning: no calls to throwing functions occur within 'try' expression
return try? AbsolutePath(String(cString: fsr))
^
/host/spi-builder-workspace/Sources/TSCBasic/FileSystem.swift:365:84: warning: will never be executed
func hasAttribute(_ name: FileSystemAttribute, _ path: AbsolutePath) -> Bool { false }
^
/host/spi-builder-workspace/Sources/TSCBasic/FileSystem.swift:365:82: note: 'name' is of type 'FileSystemAttribute' which cannot be constructed because it is an enum with no cases
func hasAttribute(_ name: FileSystemAttribute, _ path: AbsolutePath) -> Bool { false }
^
/host/spi-builder-workspace/Sources/TSCBasic/FileSystem.swift:424:9: warning: will never be executed
return false
^
/host/spi-builder-workspace/Sources/TSCBasic/FileSystem.swift:418:82: note: 'name' is of type 'FileSystemAttribute' which cannot be constructed because it is an enum with no cases
func hasAttribute(_ name: FileSystemAttribute, _ path: AbsolutePath) -> Bool {
^
[44/56] Compiling TSCBasic DictionaryLiteralExtensions.swift
/host/spi-builder-workspace/Sources/TSCBasic/FileInfo.swift:37:16: warning: stored property 'fileType' of 'Sendable'-conforming struct 'FileInfo' has non-sendable type 'FileAttributeType'
public let fileType: FileAttributeType
^
Foundation.FileAttributeType:1:15: note: struct 'FileAttributeType' does not conform to the 'Sendable' protocol
public struct FileAttributeType : RawRepresentable, Equatable, Hashable {
^
/host/spi-builder-workspace/Sources/TSCBasic/FileInfo.swift:11:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/TSCBasic/FileSystem.swift:441:21: warning: 'init(_:)' is deprecated: use throwing `init(validating:)` variant instead
return try? AbsolutePath(String(cString: fsr))
^
/host/spi-builder-workspace/Sources/TSCBasic/FileSystem.swift:441:16: warning: no calls to throwing functions occur within 'try' expression
return try? AbsolutePath(String(cString: fsr))
^
/host/spi-builder-workspace/Sources/TSCBasic/FileSystem.swift:365:84: warning: will never be executed
func hasAttribute(_ name: FileSystemAttribute, _ path: AbsolutePath) -> Bool { false }
^
/host/spi-builder-workspace/Sources/TSCBasic/FileSystem.swift:365:82: note: 'name' is of type 'FileSystemAttribute' which cannot be constructed because it is an enum with no cases
func hasAttribute(_ name: FileSystemAttribute, _ path: AbsolutePath) -> Bool { false }
^
/host/spi-builder-workspace/Sources/TSCBasic/FileSystem.swift:424:9: warning: will never be executed
return false
^
/host/spi-builder-workspace/Sources/TSCBasic/FileSystem.swift:418:82: note: 'name' is of type 'FileSystemAttribute' which cannot be constructed because it is an enum with no cases
func hasAttribute(_ name: FileSystemAttribute, _ path: AbsolutePath) -> Bool {
^
[45/56] Compiling TSCBasic EditDistance.swift
/host/spi-builder-workspace/Sources/TSCBasic/FileInfo.swift:37:16: warning: stored property 'fileType' of 'Sendable'-conforming struct 'FileInfo' has non-sendable type 'FileAttributeType'
public let fileType: FileAttributeType
^
Foundation.FileAttributeType:1:15: note: struct 'FileAttributeType' does not conform to the 'Sendable' protocol
public struct FileAttributeType : RawRepresentable, Equatable, Hashable {
^
/host/spi-builder-workspace/Sources/TSCBasic/FileInfo.swift:11:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/TSCBasic/FileSystem.swift:441:21: warning: 'init(_:)' is deprecated: use throwing `init(validating:)` variant instead
return try? AbsolutePath(String(cString: fsr))
^
/host/spi-builder-workspace/Sources/TSCBasic/FileSystem.swift:441:16: warning: no calls to throwing functions occur within 'try' expression
return try? AbsolutePath(String(cString: fsr))
^
/host/spi-builder-workspace/Sources/TSCBasic/FileSystem.swift:365:84: warning: will never be executed
func hasAttribute(_ name: FileSystemAttribute, _ path: AbsolutePath) -> Bool { false }
^
/host/spi-builder-workspace/Sources/TSCBasic/FileSystem.swift:365:82: note: 'name' is of type 'FileSystemAttribute' which cannot be constructed because it is an enum with no cases
func hasAttribute(_ name: FileSystemAttribute, _ path: AbsolutePath) -> Bool { false }
^
/host/spi-builder-workspace/Sources/TSCBasic/FileSystem.swift:424:9: warning: will never be executed
return false
^
/host/spi-builder-workspace/Sources/TSCBasic/FileSystem.swift:418:82: note: 'name' is of type 'FileSystemAttribute' which cannot be constructed because it is an enum with no cases
func hasAttribute(_ name: FileSystemAttribute, _ path: AbsolutePath) -> Bool {
^
[46/56] Compiling TSCBasic FileInfo.swift
/host/spi-builder-workspace/Sources/TSCBasic/FileInfo.swift:37:16: warning: stored property 'fileType' of 'Sendable'-conforming struct 'FileInfo' has non-sendable type 'FileAttributeType'
public let fileType: FileAttributeType
^
Foundation.FileAttributeType:1:15: note: struct 'FileAttributeType' does not conform to the 'Sendable' protocol
public struct FileAttributeType : RawRepresentable, Equatable, Hashable {
^
/host/spi-builder-workspace/Sources/TSCBasic/FileInfo.swift:11:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/TSCBasic/FileSystem.swift:441:21: warning: 'init(_:)' is deprecated: use throwing `init(validating:)` variant instead
return try? AbsolutePath(String(cString: fsr))
^
/host/spi-builder-workspace/Sources/TSCBasic/FileSystem.swift:441:16: warning: no calls to throwing functions occur within 'try' expression
return try? AbsolutePath(String(cString: fsr))
^
/host/spi-builder-workspace/Sources/TSCBasic/FileSystem.swift:365:84: warning: will never be executed
func hasAttribute(_ name: FileSystemAttribute, _ path: AbsolutePath) -> Bool { false }
^
/host/spi-builder-workspace/Sources/TSCBasic/FileSystem.swift:365:82: note: 'name' is of type 'FileSystemAttribute' which cannot be constructed because it is an enum with no cases
func hasAttribute(_ name: FileSystemAttribute, _ path: AbsolutePath) -> Bool { false }
^
/host/spi-builder-workspace/Sources/TSCBasic/FileSystem.swift:424:9: warning: will never be executed
return false
^
/host/spi-builder-workspace/Sources/TSCBasic/FileSystem.swift:418:82: note: 'name' is of type 'FileSystemAttribute' which cannot be constructed because it is an enum with no cases
func hasAttribute(_ name: FileSystemAttribute, _ path: AbsolutePath) -> Bool {
^
[47/56] Compiling TSCBasic FileSystem.swift
/host/spi-builder-workspace/Sources/TSCBasic/FileInfo.swift:37:16: warning: stored property 'fileType' of 'Sendable'-conforming struct 'FileInfo' has non-sendable type 'FileAttributeType'
public let fileType: FileAttributeType
^
Foundation.FileAttributeType:1:15: note: struct 'FileAttributeType' does not conform to the 'Sendable' protocol
public struct FileAttributeType : RawRepresentable, Equatable, Hashable {
^
/host/spi-builder-workspace/Sources/TSCBasic/FileInfo.swift:11:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/TSCBasic/FileSystem.swift:441:21: warning: 'init(_:)' is deprecated: use throwing `init(validating:)` variant instead
return try? AbsolutePath(String(cString: fsr))
^
/host/spi-builder-workspace/Sources/TSCBasic/FileSystem.swift:441:16: warning: no calls to throwing functions occur within 'try' expression
return try? AbsolutePath(String(cString: fsr))
^
/host/spi-builder-workspace/Sources/TSCBasic/FileSystem.swift:365:84: warning: will never be executed
func hasAttribute(_ name: FileSystemAttribute, _ path: AbsolutePath) -> Bool { false }
^
/host/spi-builder-workspace/Sources/TSCBasic/FileSystem.swift:365:82: note: 'name' is of type 'FileSystemAttribute' which cannot be constructed because it is an enum with no cases
func hasAttribute(_ name: FileSystemAttribute, _ path: AbsolutePath) -> Bool { false }
^
/host/spi-builder-workspace/Sources/TSCBasic/FileSystem.swift:424:9: warning: will never be executed
return false
^
/host/spi-builder-workspace/Sources/TSCBasic/FileSystem.swift:418:82: note: 'name' is of type 'FileSystemAttribute' which cannot be constructed because it is an enum with no cases
func hasAttribute(_ name: FileSystemAttribute, _ path: AbsolutePath) -> Bool {
^
[48/56] Compiling TSCBasic GraphAlgorithms.swift
/host/spi-builder-workspace/Sources/TSCBasic/FileInfo.swift:37:16: warning: stored property 'fileType' of 'Sendable'-conforming struct 'FileInfo' has non-sendable type 'FileAttributeType'
public let fileType: FileAttributeType
^
Foundation.FileAttributeType:1:15: note: struct 'FileAttributeType' does not conform to the 'Sendable' protocol
public struct FileAttributeType : RawRepresentable, Equatable, Hashable {
^
/host/spi-builder-workspace/Sources/TSCBasic/FileInfo.swift:11:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/TSCBasic/FileSystem.swift:441:21: warning: 'init(_:)' is deprecated: use throwing `init(validating:)` variant instead
return try? AbsolutePath(String(cString: fsr))
^
/host/spi-builder-workspace/Sources/TSCBasic/FileSystem.swift:441:16: warning: no calls to throwing functions occur within 'try' expression
return try? AbsolutePath(String(cString: fsr))
^
/host/spi-builder-workspace/Sources/TSCBasic/FileSystem.swift:365:84: warning: will never be executed
func hasAttribute(_ name: FileSystemAttribute, _ path: AbsolutePath) -> Bool { false }
^
/host/spi-builder-workspace/Sources/TSCBasic/FileSystem.swift:365:82: note: 'name' is of type 'FileSystemAttribute' which cannot be constructed because it is an enum with no cases
func hasAttribute(_ name: FileSystemAttribute, _ path: AbsolutePath) -> Bool { false }
^
/host/spi-builder-workspace/Sources/TSCBasic/FileSystem.swift:424:9: warning: will never be executed
return false
^
/host/spi-builder-workspace/Sources/TSCBasic/FileSystem.swift:418:82: note: 'name' is of type 'FileSystemAttribute' which cannot be constructed because it is an enum with no cases
func hasAttribute(_ name: FileSystemAttribute, _ path: AbsolutePath) -> Bool {
^
[49/56] Compiling TSCBasic TerminalController.swift
/host/spi-builder-workspace/Sources/TSCBasic/TerminalController.swift:116:23: warning: 'vars' is deprecated: Use `block` instead
if ProcessEnv.vars["TERM"] == "dumb" {
^
/host/spi-builder-workspace/Sources/TSCBasic/TerminalController.swift:138:37: warning: 'vars' is deprecated: Use `block` instead
if let columns = ProcessEnv.vars["COLUMNS"], let width = Int(columns) {
^
[50/56] Compiling TSCBasic Thread.swift
/host/spi-builder-workspace/Sources/TSCBasic/TerminalController.swift:116:23: warning: 'vars' is deprecated: Use `block` instead
if ProcessEnv.vars["TERM"] == "dumb" {
^
/host/spi-builder-workspace/Sources/TSCBasic/TerminalController.swift:138:37: warning: 'vars' is deprecated: Use `block` instead
if let columns = ProcessEnv.vars["COLUMNS"], let width = Int(columns) {
^
[51/56] Compiling TSCBasic Tuple.swift
/host/spi-builder-workspace/Sources/TSCBasic/TerminalController.swift:116:23: warning: 'vars' is deprecated: Use `block` instead
if ProcessEnv.vars["TERM"] == "dumb" {
^
/host/spi-builder-workspace/Sources/TSCBasic/TerminalController.swift:138:37: warning: 'vars' is deprecated: Use `block` instead
if let columns = ProcessEnv.vars["COLUMNS"], let width = Int(columns) {
^
[52/56] Compiling TSCBasic WritableByteStream.swift
/host/spi-builder-workspace/Sources/TSCBasic/TerminalController.swift:116:23: warning: 'vars' is deprecated: Use `block` instead
if ProcessEnv.vars["TERM"] == "dumb" {
^
/host/spi-builder-workspace/Sources/TSCBasic/TerminalController.swift:138:37: warning: 'vars' is deprecated: Use `block` instead
if let columns = ProcessEnv.vars["COLUMNS"], let width = Int(columns) {
^
[53/56] Compiling TSCBasic misc.swift
/host/spi-builder-workspace/Sources/TSCBasic/TerminalController.swift:116:23: warning: 'vars' is deprecated: Use `block` instead
if ProcessEnv.vars["TERM"] == "dumb" {
^
/host/spi-builder-workspace/Sources/TSCBasic/TerminalController.swift:138:37: warning: 'vars' is deprecated: Use `block` instead
if let columns = ProcessEnv.vars["COLUMNS"], let width = Int(columns) {
^
[55/58] Wrapping AST for TSCBasic for debugging
[57/93] Compiling TSCUtility Tracing.swift
[58/93] Compiling TSCUtility Triple.swift
[59/93] Compiling TSCUtility URL.swift
[60/93] Compiling TSCUtility Verbosity.swift
[61/97] Emitting module TSCUtility
[62/97] Compiling TSCUtility OSLog.swift
[63/97] Compiling TSCUtility OrderedZip.swift
[64/97] Compiling TSCUtility PkgConfig.swift
[65/97] Compiling TSCUtility Platform.swift
[66/97] Compiling TSCUtility PolymorphicCodable.swift
[67/97] Compiling TSCUtility Context.swift
[68/97] Compiling TSCUtility Diagnostics.swift
[69/97] Compiling TSCUtility FSWatch.swift
[70/97] Compiling TSCUtility FloatingPointExtensions.swift
[71/97] Compiling TSCUtility Git.swift
[72/97] Compiling TSCUtility Version.swift
[73/97] Compiling TSCUtility Versioning.swift
[74/97] Compiling TSCUtility dlopen.swift
[75/97] Compiling TSCUtility misc.swift
[76/97] Compiling TSCUtility Hex.swift
[77/97] Compiling TSCUtility IndexStore.swift
[78/97] Compiling TSCUtility InterruptHandler.swift
[79/97] Compiling TSCUtility JSONMessageStreamingParser.swift
[80/97] Compiling TSCUtility Netrc.swift
[81/97] Compiling TSCUtility Bitstream.swift
[82/97] Compiling TSCUtility BitstreamReader.swift
[83/97] Compiling TSCUtility BitstreamWriter.swift
[84/97] Compiling TSCUtility BuildFlags.swift
[85/97] Compiling TSCUtility CollectionExtensions.swift
[86/97] Compiling TSCUtility ProgressAnimation.swift
[87/97] Compiling TSCUtility SerializedDiagnostics.swift
[88/97] Compiling TSCUtility SimplePersistence.swift
[89/97] Compiling TSCUtility StringExtensions.swift
[90/97] Compiling TSCUtility StringMangling.swift
[91/97] Compiling TSCUtility Archiver.swift
[92/97] Compiling TSCUtility ArgumentParser.swift
[93/97] Compiling TSCUtility ArgumentParserShellCompletion.swift
[94/97] Compiling TSCUtility Array+Extensions.swift
[95/97] Compiling TSCUtility Bits.swift
[97/99] Wrapping AST for TSCUtility for debugging
[99/108] Compiling TSCTestSupport XCTestCasePerf.swift
[100/109] Compiling TSCTestSupport PseudoTerminal.swift
[101/109] Compiling TSCTestSupport JSONExtensions.swift
[102/109] Compiling TSCTestSupport Product.swift
/host/spi-builder-workspace/Sources/TSCTestSupport/Product.swift:45:16: warning: no calls to throwing functions occur within 'try' expression
return try! AbsolutePath(CommandLine.arguments.first!, relativeTo: localFileSystem.currentWorkingDirectory!)
^
[103/109] Compiling TSCTestSupport XCTAssertHelpers.swift
[103/109] Linking libSwiftToolsSupport.so
[105/109] Compiling TSCTestSupport FileSystemExtensions.swift
[106/109] Emitting module TSCTestSupport
[107/109] Compiling TSCTestSupport AssertMatch.swift
/host/spi-builder-workspace/Sources/TSCTestSupport/AssertMatch.swift:63:22: warning: 'RegEx' is deprecated: Use Swift `Regex` type instead
return try! !RegEx(pattern: pattern).matchGroups(in: value).isEmpty
^
[108/109] Compiling TSCTestSupport DiagnosticsEngine.swift
/host/spi-builder-workspace/Sources/TSCTestSupport/AssertMatch.swift:63:22: warning: 'RegEx' is deprecated: Use Swift `Regex` type instead
return try! !RegEx(pattern: pattern).matchGroups(in: value).isEmpty
^
[109/109] Compiling TSCTestSupport misc.swift
/host/spi-builder-workspace/Sources/TSCTestSupport/misc.swift:69:55: warning: 'vars' is deprecated: Use `block` instead
let state = Array(env.keys).map({ ($0, ProcessEnv.vars[$0]) })
^
Build complete! (11.22s)
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "swift-tools-support-core",
"name" : "swift-tools-support-core",
"path" : "/host/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "10.15"
},
{
"name" : "ios",
"version" : "13.0"
}
],
"products" : [
{
"name" : "TSCBasic",
"targets" : [
"TSCBasic"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "SwiftToolsSupport",
"targets" : [
"TSCBasic",
"TSCUtility"
],
"type" : {
"library" : [
"dynamic"
]
}
},
{
"name" : "SwiftToolsSupport-auto",
"targets" : [
"TSCBasic",
"TSCUtility"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "TSCTestSupport",
"targets" : [
"TSCTestSupport"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "TSCclibc",
"module_type" : "ClangTarget",
"name" : "TSCclibc",
"path" : "Sources/TSCclibc",
"product_memberships" : [
"TSCBasic",
"SwiftToolsSupport",
"SwiftToolsSupport-auto",
"TSCTestSupport"
],
"sources" : [
"libc.c",
"process.c",
"strerror.c"
],
"type" : "library"
},
{
"c99name" : "TSCUtilityTests",
"module_type" : "SwiftTarget",
"name" : "TSCUtilityTests",
"path" : "Tests/TSCUtilityTests",
"sources" : [
"ArchiverTests.swift",
"ArgumentParserTests.swift",
"BitstreamTests.swift",
"CollectionTests.swift",
"ContextTests.swift",
"DiagnosticsUtilityTests.swift",
"HexTests.swift",
"InterruptHandlerTests.swift",
"JSONMessageStreamingParserTests.swift",
"NetrcTests.swift",
"PkgConfigParserTests.swift",
"PlatformTests.swift",
"PolymorphicCodableTests.swift",
"ProgressAnimationTests.swift",
"SendableTests.swift",
"SerializedDiagnosticsTests.swift",
"SimplePersistenceTests.swift",
"StringConversionTests.swift",
"StringTests.swift",
"TracingTests.swift",
"TripleTests.swift",
"VersionTests.swift",
"miscTests.swift"
],
"target_dependencies" : [
"TSCUtility",
"TSCTestSupport"
],
"type" : "test"
},
{
"c99name" : "TSCUtility",
"module_type" : "SwiftTarget",
"name" : "TSCUtility",
"path" : "Sources/TSCUtility",
"product_memberships" : [
"SwiftToolsSupport",
"SwiftToolsSupport-auto",
"TSCTestSupport"
],
"sources" : [
"Archiver.swift",
"ArgumentParser.swift",
"ArgumentParserShellCompletion.swift",
"Array+Extensions.swift",
"Bits.swift",
"Bitstream.swift",
"BitstreamReader.swift",
"BitstreamWriter.swift",
"BuildFlags.swift",
"CollectionExtensions.swift",
"Context.swift",
"Diagnostics.swift",
"FSWatch.swift",
"FloatingPointExtensions.swift",
"Git.swift",
"Hex.swift",
"IndexStore.swift",
"InterruptHandler.swift",
"JSONMessageStreamingParser.swift",
"Netrc.swift",
"OSLog.swift",
"OrderedZip.swift",
"PkgConfig.swift",
"Platform.swift",
"PolymorphicCodable.swift",
"ProgressAnimation.swift",
"SerializedDiagnostics.swift",
"SimplePersistence.swift",
"StringExtensions.swift",
"StringMangling.swift",
"Tracing.swift",
"Triple.swift",
"URL.swift",
"Verbosity.swift",
"Version.swift",
"Versioning.swift",
"dlopen.swift",
"misc.swift"
],
"target_dependencies" : [
"TSCBasic",
"TSCclibc"
],
"type" : "library"
},
{
"c99name" : "TSCTestSupportTests",
"module_type" : "SwiftTarget",
"name" : "TSCTestSupportTests",
"path" : "Tests/TSCTestSupportTests",
"sources" : [
"TestSupportTests.swift"
],
"target_dependencies" : [
"TSCTestSupport"
],
"type" : "test"
},
{
"c99name" : "TSCTestSupport",
"module_type" : "SwiftTarget",
"name" : "TSCTestSupport",
"path" : "Sources/TSCTestSupport",
"product_memberships" : [
"TSCTestSupport"
],
"sources" : [
"AssertMatch.swift",
"DiagnosticsEngine.swift",
"FileSystemExtensions.swift",
"JSONExtensions.swift",
"Product.swift",
"PseudoTerminal.swift",
"XCTAssertHelpers.swift",
"XCTestCasePerf.swift",
"misc.swift"
],
"target_dependencies" : [
"TSCBasic",
"TSCUtility"
],
"type" : "library"
},
{
"c99name" : "TSCLibc",
"module_type" : "SwiftTarget",
"name" : "TSCLibc",
"path" : "Sources/TSCLibc",
"product_memberships" : [
"TSCBasic",
"SwiftToolsSupport",
"SwiftToolsSupport-auto",
"TSCTestSupport"
],
"sources" : [
"libc.swift"
],
"type" : "library"
},
{
"c99name" : "TSCBasicTests",
"module_type" : "SwiftTarget",
"name" : "TSCBasicTests",
"path" : "Tests/TSCBasicTests",
"sources" : [
"AwaitTests.swift",
"Base64URLTests.swift",
"ByteStringTests.swift",
"CStringArrayTests.swift",
"CacheableSequenceTests.swift",
"CollectionAlgorithmsTests.swift",
"CollectionExtensionsTests.swift",
"ConditionTests.swift",
"DeltaAlgorithmTests.swift",
"DiagnosticsEngineTests.swift",
"DictionaryExtensionsTests.swift",
"DictionaryLiteralExtensionsTests.swift",
"EditDistanceTests.swift",
"FileSystemTests.swift",
"GraphAlgorithmsTests.swift",
"JSONMapperTests.swift",
"JSONTests.swift",
"KeyedPairTests.swift",
"LazyCacheTests.swift",
"LockTests.swift",
"ObjectIdentifierProtocolTests.swift",
"OrderedDictionaryTests.swift",
"OrderedSetTests.swift",
"POSIXTests.swift",
"PathShimTests.swift",
"PathTests.swift",
"ProcessEnvTests.swift",
"ProcessSetTests.swift",
"ProcessTests.swift",
"RegExTests.swift",
"ResultTests.swift",
"SHA256Tests.swift",
"SendableTests.swift",
"SortedArrayTests.swift",
"StringConversionsTests.swift",
"SynchronizedQueueTests.swift",
"TemporaryFileTests.swift",
"TerminalControllerTests.swift",
"ThreadTests.swift",
"TupleTests.swift",
"WritableByteStreamTests.swift",
"miscTests.swift"
],
"target_dependencies" : [
"TSCTestSupport",
"TSCclibc"
],
"type" : "test"
},
{
"c99name" : "TSCBasicPerformanceTests",
"module_type" : "SwiftTarget",
"name" : "TSCBasicPerformanceTests",
"path" : "Tests/TSCBasicPerformanceTests",
"sources" : [
"ByteStringPerfTests.swift",
"PathPerfTests.swift",
"SHA256PerfTests.swift",
"SortedArrayPerfTests.swift",
"StringConversionsPerfTests.swift",
"SynchronizedQueuePerfTests.swift",
"WritableByteStreamPerfTests.swift"
],
"target_dependencies" : [
"TSCBasic",
"TSCTestSupport"
],
"type" : "test"
},
{
"c99name" : "TSCBasic",
"module_type" : "SwiftTarget",
"name" : "TSCBasic",
"path" : "Sources/TSCBasic",
"product_memberships" : [
"TSCBasic",
"SwiftToolsSupport",
"SwiftToolsSupport-auto",
"TSCTestSupport"
],
"sources" : [
"Await.swift",
"Base64URL.swift",
"ByteString.swift",
"CStringArray.swift",
"CacheableSequence.swift",
"Closable.swift",
"CodableResult.swift",
"CollectionAlgorithms.swift",
"CollectionExtensions.swift",
"Condition.swift",
"DeltaAlgorithm.swift",
"DiagnosticsEngine.swift",
"DictionaryExtensions.swift",
"DictionaryLiteralExtensions.swift",
"EditDistance.swift",
"FileInfo.swift",
"FileSystem.swift",
"GraphAlgorithms.swift",
"HashAlgorithms.swift",
"JSON.swift",
"JSONMapper.swift",
"KeyedPair.swift",
"LazyCache.swift",
"Lock.swift",
"OSLog.swift",
"ObjectIdentifierProtocol.swift",
"OrderedDictionary.swift",
"OrderedSet.swift",
"Path.swift",
"PathShims.swift",
"Process/Process.swift",
"Process/ProcessEnv.swift",
"Process/ProcessSet.swift",
"RegEx.swift",
"Result.swift",
"SortedArray.swift",
"StringConversions.swift",
"SynchronizedQueue.swift",
"TemporaryFile.swift",
"TerminalController.swift",
"Thread.swift",
"Tuple.swift",
"WritableByteStream.swift",
"misc.swift"
],
"target_dependencies" : [
"TSCLibc",
"TSCclibc"
],
"type" : "library"
}
],
"tools_version" : "5.7"
}
basic-5.9-latest: Pulling from finestructure/spi-images
Digest: sha256:943c57f5f023c04804daf623375860c13f93d33d0cb4f0a89054871e5f11529c
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-5.9-latest
Done.