Build Information
Successful build of OpenAISwift, reference 1.4.1 (ca66fb
), with Swift 6.0 for macOS (SPM) on 3 Nov 2024 08:45:32 UTC.
Swift 6 data race errors: 3
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete
Build Log
========================================
RunAll
========================================
Builder version: 4.56.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/adamrushy/OpenAISwift.git
Reference: 1.4.1
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/adamrushy/OpenAISwift
* tag 1.4.1 -> FETCH_HEAD
HEAD is now at ca66fb7 Merge pull request #97 from adamrushy/feature/renaming-implementation
Cloned https://github.com/adamrushy/OpenAISwift.git
Revision (git rev-parse @):
ca66fb720d6ebb657601db5a0852b830ae310a4c
SUCCESS checkout https://github.com/adamrushy/OpenAISwift.git at 1.4.1
========================================
ResolveProductDependencies
========================================
Resolving dependencies ...
{
"identity": ".resolve-product-dependencies",
"name": "resolve-dependencies",
"url": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
"version": "unspecified",
"path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
"dependencies": [
{
"identity": "openaiswift",
"name": "OpenAISwift",
"url": "https://github.com/adamrushy/OpenAISwift.git",
"version": "unspecified",
"path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/OpenAISwift",
"dependencies": [
]
}
]
}
Fetching https://github.com/adamrushy/OpenAISwift.git
[1/1439] Fetching openaiswift
Fetched https://github.com/adamrushy/OpenAISwift.git from cache (0.84s)
Creating working copy for https://github.com/adamrushy/OpenAISwift.git
Working copy of https://github.com/adamrushy/OpenAISwift.git resolved at 1.4.1 (ca66fb7)
warning: '.resolve-product-dependencies': dependency 'openaiswift' is not used by any target
Found 0 product dependencies
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.0
Building package at path: $PWD
https://github.com/adamrushy/OpenAISwift.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version--7754E27361AE5C74.txt
[3/13] Compiling OpenAISwift OpenAIEndpoint.swift
[4/14] Compiling OpenAISwift OpenAI.swift
[5/14] Compiling OpenAISwift OpenAIModelType.swift
[6/14] Compiling OpenAISwift Moderation.swift
[7/14] Compiling OpenAISwift Instruction.swift
[8/14] Compiling OpenAISwift ImageGeneration.swift
[9/14] Compiling OpenAISwift EmbeddingsInput.swift
[10/14] Emitting module OpenAISwift
/Users/admin/builder/spi-builder-workspace/Sources/OpenAISwift/OpenAISwift.swift:10:10: warning: associated value 'chatError(error:)' of 'Sendable'-conforming enum 'OpenAIError' has non-sendable type 'ChatError.Payload'; this is an error in the Swift 6 language mode
8 | case genericError(error: Error)
9 | case decodingError(error: Error)
10 | case chatError(error: ChatError.Payload)
| `- warning: associated value 'chatError(error:)' of 'Sendable'-conforming enum 'OpenAIError' has non-sendable type 'ChatError.Payload'; this is an error in the Swift 6 language mode
11 | }
12 |
/Users/admin/builder/spi-builder-workspace/Sources/OpenAISwift/Models/ChatMessage.swift:95:19: note: consider making struct 'Payload' conform to the 'Sendable' protocol
93 |
94 | public struct ChatError: Codable {
95 | public struct Payload: Codable {
| `- note: consider making struct 'Payload' conform to the 'Sendable' protocol
96 | public let message, type: String
97 | public let param, code: String?
/Users/admin/builder/spi-builder-workspace/Sources/OpenAISwift/ServerSentEventsHandler.swift:10:7: warning: non-final class 'ServerSentEventsHandler' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
8 | import Foundation
9 |
10 | class ServerSentEventsHandler: NSObject {
| `- warning: non-final class 'ServerSentEventsHandler' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
11 |
12 | var onEventReceived: ((Result<OpenAI<StreamMessageResult>, OpenAIError>) -> Void)?
/Users/admin/builder/spi-builder-workspace/Sources/OpenAISwift/ServerSentEventsHandler.swift:12:9: warning: stored property 'onEventReceived' of 'Sendable'-conforming class 'ServerSentEventsHandler' is mutable; this is an error in the Swift 6 language mode
10 | class ServerSentEventsHandler: NSObject {
11 |
12 | var onEventReceived: ((Result<OpenAI<StreamMessageResult>, OpenAIError>) -> Void)?
| `- warning: stored property 'onEventReceived' of 'Sendable'-conforming class 'ServerSentEventsHandler' is mutable; this is an error in the Swift 6 language mode
13 | var onComplete: (() -> Void)?
14 |
[11/14] Compiling OpenAISwift ChatMessage.swift
[12/14] Compiling OpenAISwift Command.swift
[13/14] Compiling OpenAISwift OpenAISwift.swift
/Users/admin/builder/spi-builder-workspace/Sources/OpenAISwift/OpenAISwift.swift:10:10: warning: associated value 'chatError(error:)' of 'Sendable'-conforming enum 'OpenAIError' has non-sendable type 'ChatError.Payload'; this is an error in the Swift 6 language mode
8 | case genericError(error: Error)
9 | case decodingError(error: Error)
10 | case chatError(error: ChatError.Payload)
| `- warning: associated value 'chatError(error:)' of 'Sendable'-conforming enum 'OpenAIError' has non-sendable type 'ChatError.Payload'; this is an error in the Swift 6 language mode
11 | }
12 |
/Users/admin/builder/spi-builder-workspace/Sources/OpenAISwift/Models/ChatMessage.swift:95:19: note: consider making struct 'Payload' conform to the 'Sendable' protocol
93 |
94 | public struct ChatError: Codable {
95 | public struct Payload: Codable {
| `- note: consider making struct 'Payload' conform to the 'Sendable' protocol
96 | public let message, type: String
97 | public let param, code: String?
/Users/admin/builder/spi-builder-workspace/Sources/OpenAISwift/OpenAISwift.swift:296:17: warning: capture of 'completionHandler' with non-sendable type '(Result<Data, any Error>) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
294 | let task = session.dataTask(with: request) { (data, response, error) in
295 | if let error = error {
296 | completionHandler(.failure(error))
| |- warning: capture of 'completionHandler' with non-sendable type '(Result<Data, any Error>) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
297 | } else if let data = data {
298 | completionHandler(.success(data))
/Users/admin/builder/spi-builder-workspace/Sources/OpenAISwift/OpenAISwift.swift:337:30: warning: sending 'result' risks causing data races; this is an error in the Swift 6 language mode
335 | return try await withCheckedThrowingContinuation { continuation in
336 | sendCompletion(with: prompt, model: model, maxTokens: maxTokens, temperature: temperature) { result in
337 | continuation.resume(with: result)
| |- warning: sending 'result' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'result' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
338 | }
339 | }
/Users/admin/builder/spi-builder-workspace/Sources/OpenAISwift/OpenAISwift.swift:353:30: warning: sending 'result' risks causing data races; this is an error in the Swift 6 language mode
351 | return try await withCheckedThrowingContinuation { continuation in
352 | sendEdits(with: instruction, model: model, input: input) { result in
353 | continuation.resume(with: result)
| |- warning: sending 'result' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'result' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
354 | }
355 | }
/Users/admin/builder/spi-builder-workspace/Sources/OpenAISwift/OpenAISwift.swift:398:49: warning: sending 'result' risks causing data races; this is an error in the Swift 6 language mode
396 | logitBias: logitBias) { result in
397 | switch result {
398 | case .success: continuation.resume(with: result)
| |- warning: sending 'result' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'result' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
399 | case .failure(let failure): continuation.resume(throwing: failure)
400 | }
/Users/admin/builder/spi-builder-workspace/Sources/OpenAISwift/OpenAISwift.swift:447:34: warning: sending 'result' risks causing data races; this is an error in the Swift 6 language mode
445 | logitBias: logitBias,
446 | onEventReceived: { result in
447 | continuation.yield(result)
| |- warning: sending 'result' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'result' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
448 | }) {
449 | continuation.finish()
/Users/admin/builder/spi-builder-workspace/Sources/OpenAISwift/OpenAISwift.swift:465:30: warning: sending 'result' risks causing data races; this is an error in the Swift 6 language mode
463 | return try await withCheckedThrowingContinuation { continuation in
464 | sendEmbeddings(with: input) { result in
465 | continuation.resume(with: result)
| |- warning: sending 'result' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'result' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
466 | }
467 | }
/Users/admin/builder/spi-builder-workspace/Sources/OpenAISwift/OpenAISwift.swift:480:30: warning: sending 'result' risks causing data races; this is an error in the Swift 6 language mode
478 | return try await withCheckedThrowingContinuation { continuation in
479 | sendModerations(with: input, model: model) { result in
480 | continuation.resume(with: result)
| |- warning: sending 'result' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'result' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
481 | }
482 | }
/Users/admin/builder/spi-builder-workspace/Sources/OpenAISwift/OpenAISwift.swift:497:30: warning: sending 'result' risks causing data races; this is an error in the Swift 6 language mode
495 | return try await withCheckedThrowingContinuation { continuation in
496 | sendImages(with: prompt, numImages: numImages, size: size, user: user) { result in
497 | continuation.resume(with: result)
| |- warning: sending 'result' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'result' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
498 | }
499 | }
[14/14] Compiling OpenAISwift ServerSentEventsHandler.swift
/Users/admin/builder/spi-builder-workspace/Sources/OpenAISwift/ServerSentEventsHandler.swift:10:7: warning: non-final class 'ServerSentEventsHandler' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
8 | import Foundation
9 |
10 | class ServerSentEventsHandler: NSObject {
| `- warning: non-final class 'ServerSentEventsHandler' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
11 |
12 | var onEventReceived: ((Result<OpenAI<StreamMessageResult>, OpenAIError>) -> Void)?
/Users/admin/builder/spi-builder-workspace/Sources/OpenAISwift/ServerSentEventsHandler.swift:12:9: warning: stored property 'onEventReceived' of 'Sendable'-conforming class 'ServerSentEventsHandler' is mutable; this is an error in the Swift 6 language mode
10 | class ServerSentEventsHandler: NSObject {
11 |
12 | var onEventReceived: ((Result<OpenAI<StreamMessageResult>, OpenAIError>) -> Void)?
| `- warning: stored property 'onEventReceived' of 'Sendable'-conforming class 'ServerSentEventsHandler' is mutable; this is an error in the Swift 6 language mode
13 | var onComplete: (() -> Void)?
14 |
Build complete! (13.58s)
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "OpenAISwift",
"name" : "OpenAISwift",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "ios",
"version" : "15.0"
},
{
"name" : "macos",
"version" : "10.15"
}
],
"products" : [
{
"name" : "OpenAISwift",
"targets" : [
"OpenAISwift"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "OpenAISwiftTests",
"module_type" : "SwiftTarget",
"name" : "OpenAISwiftTests",
"path" : "Tests/OpenAISwiftTests",
"sources" : [
"OpenAISwiftTests.swift"
],
"target_dependencies" : [
"OpenAISwift"
],
"type" : "test"
},
{
"c99name" : "OpenAISwift",
"module_type" : "SwiftTarget",
"name" : "OpenAISwift",
"path" : "Sources/OpenAISwift",
"product_memberships" : [
"OpenAISwift"
],
"sources" : [
"Models/ChatMessage.swift",
"Models/Command.swift",
"Models/EmbeddingsInput.swift",
"Models/ImageGeneration.swift",
"Models/Instruction.swift",
"Models/Moderation.swift",
"Models/OpenAI.swift",
"Models/OpenAIModelType.swift",
"OpenAIEndpoint.swift",
"OpenAISwift.swift",
"ServerSentEventsHandler.swift"
],
"type" : "library"
}
],
"tools_version" : "5.5"
}
Done.