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 main (24fdaf), with Swift 5.9 for Linux on 16 Oct 2024 02:44:18 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4606859-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.55.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/kevinhermawan/swift-llm-chat-openai.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/kevinhermawan/swift-llm-chat-openai
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at 24fdaf3 docs: adds more information in advanced usage (#8)
Cloned https://github.com/kevinhermawan/swift-llm-chat-openai.git
Revision (git rev-parse @):
24fdaf35e802dea7507916ead8381eea8613c1d5
SUCCESS checkout https://github.com/kevinhermawan/swift-llm-chat-openai.git at main
========================================
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-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:9f9025114c0603ac6ea1951d396f9bc1cd3a7c1b5aa8548b3ea2615c8c5705ce
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-5.9-latest
Fetching https://github.com/apple/swift-docc-plugin.git
Fetching https://github.com/swiftlang/swift-docc-symbolkit
Fetching https://github.com/kevinhermawan/swift-json-schema.git
[1/88] Fetching swift-json-schema
[89/2126] Fetching swift-json-schema, swift-docc-plugin
Fetched https://github.com/kevinhermawan/swift-json-schema.git (0.20s)
[245/2038] Fetching swift-docc-plugin
[246/5181] Fetching swift-docc-plugin, swift-docc-symbolkit
Fetched https://github.com/apple/swift-docc-plugin.git (0.38s)
Computing version for https://github.com/apple/swift-docc-plugin.git
Fetched https://github.com/swiftlang/swift-docc-symbolkit (0.40s)
Computed https://github.com/apple/swift-docc-plugin.git at 1.4.3 (1.32s)
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.38s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (0.48s)
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
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
[1/1] Compiling plugin Swift-DocC
[2/2] Compiling plugin Swift-DocC Preview
Building for debugging...
[3/11] Compiling JSONSchema JSONSchema+String.swift
[4/12] Compiling JSONSchema JSONSchema+Integer.swift
[5/12] Compiling JSONSchema JSONSchema+Null.swift
[6/12] Emitting module JSONSchema
[7/12] Compiling JSONSchema JSONSchema+Array.swift
[8/12] Compiling JSONSchema JSONSchema+Boolean.swift
[9/12] Compiling JSONSchema JSONSchema+Enum.swift
[10/12] Compiling JSONSchema JSONSchema+Number.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 ChatOptions.swift
[17/20] Compiling LLMChatOpenAI ChatMessage.swift
[18/20] Compiling LLMChatOpenAI ChatCompletionChunk.swift
error: emit-module command failed with exit code 1 (use -v to see invocation)
[19/20] Compiling LLMChatOpenAI ChatCompletion.swift
[20/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
                 ^
error: fatalError
BUILD FAILURE 5.9 linux