The Swift Package Index logo.Swift Package Index

Build Information

Successful build of WOWSQL, reference main (3b00eb), with Swift 6.1 for Android on 21 Apr 2026 23:56:23 UTC.

Swift 6 data race errors: 9

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:android-6.1-latest swift build --swift-sdk aarch64-unknown-linux-android24 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/WowSQL/wowsql-swift.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/WowSQL/wowsql-swift
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at 3b00eb1 Release v3.1.0
Cloned https://github.com/WowSQL/wowsql-swift.git
Revision (git rev-parse @):
3b00eb1f58d4557abc9e7d9591295a2d3915e522
SUCCESS checkout https://github.com/WowSQL/wowsql-swift.git at main
========================================
Build
========================================
Selected platform:         android
Swift version:             6.1
Building package at path:  $PWD
https://github.com/WowSQL/wowsql-swift.git
https://github.com/WowSQL/wowsql-swift.git
WARNING: environment variable SUPPRESS_SWIFT_6_FLAGS is not set
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:android-6.1-latest swift build --swift-sdk aarch64-unknown-linux-android24 -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
android-6.1-latest: Pulling from swiftpackageindex/spi-images
Digest: sha256:d37fe7b8fba27dae59fb1d9d7dfa86b38b41ffb3975924aad6f05cb4cc3de131
Status: Image is up to date for registry.gitlab.com/swiftpackageindex/spi-images:android-6.1-latest
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-24593BA9C3E375BF.txt
[3/10] Compiling WOWSQL Models.swift
[4/11] Compiling WOWSQL Schema.swift
[5/11] Compiling WOWSQL Exceptions.swift
/host/spi-builder-workspace/Sources/WOWSQL/Exceptions.swift:12:14: warning: non-final class 'WOWSQLError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
10 |
11 | /// Base error for WOWSQL SDK
12 | public class WOWSQLError: Error, LocalizedError {
   |              `- warning: non-final class 'WOWSQLError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
13 |     public let message: String
14 |     public let statusCode: Int?
/host/spi-builder-workspace/Sources/WOWSQL/Exceptions.swift:15:16: warning: stored property 'response' of 'Sendable'-conforming class 'WOWSQLError' has non-sendable type '[String : Any]?'; this is an error in the Swift 6 language mode
13 |     public let message: String
14 |     public let statusCode: Int?
15 |     public let response: [String: Any]?
   |                `- warning: stored property 'response' of 'Sendable'-conforming class 'WOWSQLError' has non-sendable type '[String : Any]?'; this is an error in the Swift 6 language mode
16 |
17 |     public var errorDescription: String? {
/host/spi-builder-workspace/Sources/WOWSQL/Exceptions.swift:32:14: warning: non-final class 'AuthenticationError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
30 |
31 | /// Authentication error (401/403)
32 | public class AuthenticationError: WOWSQLError {
   |              `- warning: non-final class 'AuthenticationError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
33 |     public override init(_ message: String, statusCode: Int? = nil, response: [String: Any]? = nil) {
34 |         super.init(message, statusCode: statusCode, response: response)
/host/spi-builder-workspace/Sources/WOWSQL/Exceptions.swift:41:14: warning: non-final class 'NotFoundError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
39 |
40 | /// Not found error (404)
41 | public class NotFoundError: WOWSQLError {
   |              `- warning: non-final class 'NotFoundError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
42 |     public init(_ message: String, response: [String: Any]? = nil) {
43 |         super.init(message, statusCode: 404, response: response)
/host/spi-builder-workspace/Sources/WOWSQL/Exceptions.swift:50:14: warning: non-final class 'RateLimitError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
48 |
49 | /// Rate limit error (429)
50 | public class RateLimitError: WOWSQLError {
   |              `- warning: non-final class 'RateLimitError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
51 |     public init(_ message: String, response: [String: Any]? = nil) {
52 |         super.init(message, statusCode: 429, response: response)
/host/spi-builder-workspace/Sources/WOWSQL/Exceptions.swift:59:14: warning: non-final class 'NetworkError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
57 |
58 | /// Network error
59 | public class NetworkError: WOWSQLError {
   |              `- warning: non-final class 'NetworkError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
60 |     public init(_ message: String, underlyingError: Error? = nil) {
61 |         super.init(message)
/host/spi-builder-workspace/Sources/WOWSQL/Exceptions.swift:68:14: warning: non-final class 'StorageError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
66 |
67 | /// Storage error
68 | public class StorageError: WOWSQLError {
   |              `- warning: non-final class 'StorageError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
69 |     public override init(_ message: String, statusCode: Int? = nil, response: [String: Any]? = nil) {
70 |         super.init(message, statusCode: statusCode, response: response)
/host/spi-builder-workspace/Sources/WOWSQL/Exceptions.swift:77:14: warning: non-final class 'StorageLimitExceededError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
75 |
76 | /// Storage limit exceeded error (413)
77 | public class StorageLimitExceededError: StorageError {
   |              `- warning: non-final class 'StorageLimitExceededError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
78 |     public let requiredBytes: Int64
79 |     public let availableBytes: Int64
/host/spi-builder-workspace/Sources/WOWSQL/Exceptions.swift:91:14: warning: non-final class 'SchemaPermissionError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
89 |
90 | /// Schema permission error (403) - requires service role key
91 | public class SchemaPermissionError: WOWSQLError {
   |              `- warning: non-final class 'SchemaPermissionError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
92 |     public init(_ message: String = "Schema operations require a SERVICE ROLE key.", response: [String: Any]? = nil) {
93 |         super.init(message, statusCode: 403, response: response)
[6/11] Compiling WOWSQL QueryBuilder.swift
/host/spi-builder-workspace/Sources/WOWSQL/QueryBuilder.swift:240:20: error: type of expression is ambiguous without a type annotation
238 |     /// Get first result.
239 |     public func first<T: Codable>() async throws -> T? {
240 |         return try await limit(1).execute().data.first
    |                    `- error: type of expression is ambiguous without a type annotation
241 |     }
242 |
/host/spi-builder-workspace/Sources/WOWSQL/QueryBuilder.swift:240:20: warning: no 'async' operations occur within 'await' expression
238 |     /// Get first result.
239 |     public func first<T: Codable>() async throws -> T? {
240 |         return try await limit(1).execute().data.first
    |                    `- warning: no 'async' operations occur within 'await' expression
241 |     }
242 |
/host/spi-builder-workspace/Sources/WOWSQL/QueryBuilder.swift:240:16: warning: no calls to throwing functions occur within 'try' expression
238 |     /// Get first result.
239 |     public func first<T: Codable>() async throws -> T? {
240 |         return try await limit(1).execute().data.first
    |                `- warning: no calls to throwing functions occur within 'try' expression
241 |     }
242 |
[7/11] Emitting module WOWSQL
/host/spi-builder-workspace/Sources/WOWSQL/Exceptions.swift:12:14: warning: non-final class 'WOWSQLError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
10 |
11 | /// Base error for WOWSQL SDK
12 | public class WOWSQLError: Error, LocalizedError {
   |              `- warning: non-final class 'WOWSQLError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
13 |     public let message: String
14 |     public let statusCode: Int?
/host/spi-builder-workspace/Sources/WOWSQL/Exceptions.swift:15:16: warning: stored property 'response' of 'Sendable'-conforming class 'WOWSQLError' has non-sendable type '[String : Any]?'; this is an error in the Swift 6 language mode
13 |     public let message: String
14 |     public let statusCode: Int?
15 |     public let response: [String: Any]?
   |                `- warning: stored property 'response' of 'Sendable'-conforming class 'WOWSQLError' has non-sendable type '[String : Any]?'; this is an error in the Swift 6 language mode
16 |
17 |     public var errorDescription: String? {
/host/spi-builder-workspace/Sources/WOWSQL/Exceptions.swift:32:14: warning: non-final class 'AuthenticationError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
30 |
31 | /// Authentication error (401/403)
32 | public class AuthenticationError: WOWSQLError {
   |              `- warning: non-final class 'AuthenticationError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
33 |     public override init(_ message: String, statusCode: Int? = nil, response: [String: Any]? = nil) {
34 |         super.init(message, statusCode: statusCode, response: response)
/host/spi-builder-workspace/Sources/WOWSQL/Exceptions.swift:41:14: warning: non-final class 'NotFoundError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
39 |
40 | /// Not found error (404)
41 | public class NotFoundError: WOWSQLError {
   |              `- warning: non-final class 'NotFoundError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
42 |     public init(_ message: String, response: [String: Any]? = nil) {
43 |         super.init(message, statusCode: 404, response: response)
/host/spi-builder-workspace/Sources/WOWSQL/Exceptions.swift:50:14: warning: non-final class 'RateLimitError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
48 |
49 | /// Rate limit error (429)
50 | public class RateLimitError: WOWSQLError {
   |              `- warning: non-final class 'RateLimitError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
51 |     public init(_ message: String, response: [String: Any]? = nil) {
52 |         super.init(message, statusCode: 429, response: response)
/host/spi-builder-workspace/Sources/WOWSQL/Exceptions.swift:59:14: warning: non-final class 'NetworkError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
57 |
58 | /// Network error
59 | public class NetworkError: WOWSQLError {
   |              `- warning: non-final class 'NetworkError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
60 |     public init(_ message: String, underlyingError: Error? = nil) {
61 |         super.init(message)
/host/spi-builder-workspace/Sources/WOWSQL/Exceptions.swift:68:14: warning: non-final class 'StorageError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
66 |
67 | /// Storage error
68 | public class StorageError: WOWSQLError {
   |              `- warning: non-final class 'StorageError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
69 |     public override init(_ message: String, statusCode: Int? = nil, response: [String: Any]? = nil) {
70 |         super.init(message, statusCode: statusCode, response: response)
/host/spi-builder-workspace/Sources/WOWSQL/Exceptions.swift:77:14: warning: non-final class 'StorageLimitExceededError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
75 |
76 | /// Storage limit exceeded error (413)
77 | public class StorageLimitExceededError: StorageError {
   |              `- warning: non-final class 'StorageLimitExceededError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
78 |     public let requiredBytes: Int64
79 |     public let availableBytes: Int64
/host/spi-builder-workspace/Sources/WOWSQL/Exceptions.swift:91:14: warning: non-final class 'SchemaPermissionError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
89 |
90 | /// Schema permission error (403) - requires service role key
91 | public class SchemaPermissionError: WOWSQLError {
   |              `- warning: non-final class 'SchemaPermissionError' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
92 |     public init(_ message: String = "Schema operations require a SERVICE ROLE key.", response: [String: Any]? = nil) {
93 |         super.init(message, statusCode: 403, response: response)
[8/11] Compiling WOWSQL Client.swift
[9/11] Compiling WOWSQL ProjectAuthClient.swift
[10/11] Compiling WOWSQL Storage.swift
[11/11] Compiling WOWSQL WOWSQL.swift
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:android-6.1-latest swift build --swift-sdk aarch64-unknown-linux-android24 2>&1
android-6.1-latest: Pulling from swiftpackageindex/spi-images
Digest: sha256:d37fe7b8fba27dae59fb1d9d7dfa86b38b41ffb3975924aad6f05cb4cc3de131
Status: Image is up to date for registry.gitlab.com/swiftpackageindex/spi-images:android-6.1-latest
[0/1] Planning build
Building for debugging...
[0/1] Write swift-version-24593BA9C3E375BF.txt
[2/9] Emitting module WOWSQL
[3/9] Compiling WOWSQL Client.swift
[4/10] Compiling WOWSQL Storage.swift
[5/10] Compiling WOWSQL Schema.swift
[6/10] Compiling WOWSQL ProjectAuthClient.swift
[7/10] Compiling WOWSQL QueryBuilder.swift
[8/10] Compiling WOWSQL WOWSQL.swift
[9/10] Compiling WOWSQL Exceptions.swift
[10/10] Compiling WOWSQL Models.swift
Build complete! (3.65s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "WOWSQL",
  "name" : "WOWSQL",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "13.0"
    },
    {
      "name" : "macos",
      "version" : "10.15"
    },
    {
      "name" : "watchos",
      "version" : "6.0"
    },
    {
      "name" : "tvos",
      "version" : "13.0"
    }
  ],
  "products" : [
    {
      "name" : "WOWSQL",
      "targets" : [
        "WOWSQL"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "WOWSQLTests",
      "module_type" : "SwiftTarget",
      "name" : "WOWSQLTests",
      "path" : "Tests/WOWSQLTests",
      "sources" : [
        "WOWSQLTests.swift"
      ],
      "target_dependencies" : [
        "WOWSQL"
      ],
      "type" : "test"
    },
    {
      "c99name" : "WOWSQL",
      "module_type" : "SwiftTarget",
      "name" : "WOWSQL",
      "path" : "Sources/WOWSQL",
      "product_memberships" : [
        "WOWSQL"
      ],
      "sources" : [
        "Client.swift",
        "Exceptions.swift",
        "Models.swift",
        "ProjectAuthClient.swift",
        "QueryBuilder.swift",
        "Schema.swift",
        "Storage.swift",
        "WOWSQL.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.9"
}
android-6.1-latest: Pulling from swiftpackageindex/spi-images
Digest: sha256:d37fe7b8fba27dae59fb1d9d7dfa86b38b41ffb3975924aad6f05cb4cc3de131
Status: Image is up to date for registry.gitlab.com/swiftpackageindex/spi-images:android-6.1-latest
Done.