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

Failed to build LLMChatOpenAI, reference 1.1.0 (7f5473), with Swift 5.9 for Linux on 15 Oct 2024 02:48:52 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4606859-1":/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.55.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/kevinhermawan/swift-llm-chat-openai.git
Reference: 1.1.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/kevinhermawan/swift-llm-chat-openai
 * tag               1.1.0      -> FETCH_HEAD
HEAD is now at 7f54739 release: 1.1.0
Cloned https://github.com/kevinhermawan/swift-llm-chat-openai.git
Revision (git rev-parse @):
7f54739d4fa44decb09c3e13f561db1b0dc27d3c
SUCCESS checkout https://github.com/kevinhermawan/swift-llm-chat-openai.git at 1.1.0
========================================
Build
========================================
Selected platform:         linux
Swift version:             5.9
Building package at path:  $PWD
https://github.com/kevinhermawan/swift-llm-chat-openai.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-1":/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:9f9025114c0603ac6ea1951d396f9bc1cd3a7c1b5aa8548b3ea2615c8c5705ce
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-5.9-latest
Fetching https://github.com/swiftlang/swift-docc-symbolkit
Fetching https://github.com/kevinhermawan/swift-json-schema.git
Fetching https://github.com/apple/swift-docc-plugin.git
[1/88] Fetching swift-json-schema
[89/2126] Fetching swift-json-schema, swift-docc-plugin
[314/5267] Fetching swift-json-schema, swift-docc-plugin, swift-docc-symbolkit
Fetched https://github.com/swiftlang/swift-docc-symbolkit (0.49s)
Fetched https://github.com/kevinhermawan/swift-json-schema.git (0.51s)
Fetched https://github.com/apple/swift-docc-plugin.git (0.52s)
Computing version for https://github.com/apple/swift-docc-plugin.git
Computed https://github.com/apple/swift-docc-plugin.git at 1.4.3 (1.82s)
Computing version for https://github.com/kevinhermawan/swift-json-schema.git
Computed https://github.com/kevinhermawan/swift-json-schema.git at 1.0.3 (0.35s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (1.34s)
Creating working copy for https://github.com/apple/swift-docc-plugin.git
Working copy of https://github.com/apple/swift-docc-plugin.git resolved at 1.4.3
Creating working copy for https://github.com/swiftlang/swift-docc-symbolkit
Working copy of https://github.com/swiftlang/swift-docc-symbolkit resolved at 1.0.0
Creating working copy for https://github.com/kevinhermawan/swift-json-schema.git
Working copy of https://github.com/kevinhermawan/swift-json-schema.git resolved at 1.0.3
[1/1] Compiling plugin Swift-DocC
[2/2] Compiling plugin Swift-DocC Preview
Building for debugging...
[3/11] Emitting module JSONSchema
[4/12] Compiling JSONSchema JSONSchema+Array.swift
[5/12] Compiling JSONSchema JSONSchema+Boolean.swift
[6/12] Compiling JSONSchema JSONSchema+Null.swift
[7/12] Compiling JSONSchema JSONSchema+Integer.swift
[8/12] Compiling JSONSchema JSONSchema+Number.swift
[9/12] Compiling JSONSchema JSONSchema+Enum.swift
[10/12] Compiling JSONSchema JSONSchema+String.swift
[11/12] Compiling JSONSchema JSONSchema+Object.swift
[12/12] Compiling JSONSchema JSONSchema.swift
[15/20] Compiling LLMChatOpenAI LLMChatOpenAI.swift
/host/spi-builder-workspace/Sources/LLMChatOpenAI/LLMChatOpenAI.swift:111:72: error: cannot find type 'URLRequest' in scope
    func createRequest(for url: URL, with body: RequestBody) throws -> URLRequest {
                                                                       ^~~~~~~~~~
/host/spi-builder-workspace/Sources/LLMChatOpenAI/LLMChatOpenAI.swift:120:43: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
    func validateHTTPResponse(_ response: URLResponse) throws {
                                          ^~~~~~~~~~~
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
public typealias URLResponse = AnyObject
                 ^
/host/spi-builder-workspace/Sources/LLMChatOpenAI/LLMChatOpenAI.swift:44:53: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
        let (data, response) = try await URLSession.shared.data(for: request)
                                         ~~~~~~~~~~ ^~~~~~
/host/spi-builder-workspace/Sources/LLMChatOpenAI/LLMChatOpenAI.swift:112:23: error: cannot find 'URLRequest' in scope
        var request = URLRequest(url: url)
                      ^~~~~~~~~~
/host/spi-builder-workspace/Sources/LLMChatOpenAI/LLMChatOpenAI.swift:121:43: warning: conditional cast from 'URLResponse' (aka 'AnyObject') to 'HTTPURLResponse' (aka 'AnyObject') always succeeds
        guard let httpResponse = response as? HTTPURLResponse, 200...299 ~= httpResponse.statusCode else {
                                          ^
/host/spi-builder-workspace/Sources/LLMChatOpenAI/LLMChatOpenAI.swift:121:47: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
        guard let httpResponse = response as? HTTPURLResponse, 200...299 ~= httpResponse.statusCode else {
                                              ^~~~~~~~~~~~~~~
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
public typealias HTTPURLResponse = AnyObject
                 ^
/host/spi-builder-workspace/Sources/LLMChatOpenAI/LLMChatOpenAI.swift:121:90: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
        guard let httpResponse = response as? HTTPURLResponse, 200...299 ~= httpResponse.statusCode else {
                                                                            ~~~~~~~~~~~~ ^~~~~~~~~~
/host/spi-builder-workspace/Sources/LLMChatOpenAI/LLMChatOpenAI.swift:65:66: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
                    let (bytes, response) = try await URLSession.shared.bytes(for: request)
                                                      ~~~~~~~~~~ ^~~~~~
/host/spi-builder-workspace/Sources/LLMChatOpenAI/LLMChatOpenAI.swift:76:67: error: cannot infer contextual base in reference to member 'utf8'
                            if let data = jsonString.data(using: .utf8) {
                                                                 ~^~~~
[16/20] Compiling LLMChatOpenAI ChatMessage.swift
[17/20] Compiling LLMChatOpenAI ChatOptions.swift
error: emit-module command failed with exit code 1 (use -v to see invocation)
[18/20] Emitting module LLMChatOpenAI
/host/spi-builder-workspace/Sources/LLMChatOpenAI/LLMChatOpenAI.swift:111:72: error: cannot find type 'URLRequest' in scope
    func createRequest(for url: URL, with body: RequestBody) throws -> URLRequest {
                                                                       ^~~~~~~~~~
/host/spi-builder-workspace/Sources/LLMChatOpenAI/LLMChatOpenAI.swift:120:43: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
    func validateHTTPResponse(_ response: URLResponse) throws {
                                          ^~~~~~~~~~~
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
public typealias URLResponse = AnyObject
                 ^
[19/20] Compiling LLMChatOpenAI ChatCompletionChunk.swift
[20/20] Compiling LLMChatOpenAI ChatCompletion.swift
error: fatalError
BUILD FAILURE 5.9 linux