This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.

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

Successful build of PerfectSQLite with Swift 6.0 for Linux.

Swift 6 data race errors: 0

Build Command

bash -c docker run --rm -v "checkouts-4609320-1":/host -w "$workDir" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.40.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/perfectlysoft/perfect-sqlite.git
Reference: master
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/perfectlysoft/perfect-sqlite
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
HEAD is now at 43c0e16 spacing
Cloned https://github.com/perfectlysoft/perfect-sqlite.git
Revision (git rev-parse @):
43c0e16cfce1dada7914d8334e43ffa887e66f8e
SUCCESS checkout https://github.com/perfectlysoft/perfect-sqlite.git at master
========================================
Build
========================================
Selected platform:         linux
Swift version:             6.0
Building package at path:  $workDir
https://github.com/perfectlysoft/perfect-sqlite.git
Running build ...
bash -c docker run --rm -v "checkouts-4609320-1":/host -w "$workDir" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete 2>&1
Fetching https://github.com/PerfectlySoft/Perfect-sqlite3-support.git
Fetching https://github.com/PerfectlySoft/Perfect-CRUD.git
[1/1190] Fetching perfect-crud
[216/1248] Fetching perfect-crud, perfect-sqlite3-support
Fetched https://github.com/PerfectlySoft/Perfect-sqlite3-support.git from cache (0.27s)
Fetched https://github.com/PerfectlySoft/Perfect-CRUD.git from cache (0.27s)
Computing version for https://github.com/PerfectlySoft/Perfect-CRUD.git
Computed https://github.com/PerfectlySoft/Perfect-CRUD.git at 2.0.0 (0.52s)
Computing version for https://github.com/PerfectlySoft/Perfect-sqlite3-support.git
Computed https://github.com/PerfectlySoft/Perfect-sqlite3-support.git at 3.1.1 (2.83s)
Creating working copy for https://github.com/PerfectlySoft/Perfect-sqlite3-support.git
Working copy of https://github.com/PerfectlySoft/Perfect-sqlite3-support.git resolved at 3.1.1
Creating working copy for https://github.com/PerfectlySoft/Perfect-CRUD.git
Working copy of https://github.com/PerfectlySoft/Perfect-CRUD.git resolved at 2.0.0
warning: 'perfect-sqlite3-support': ignoring declared target(s) 'PerfectCSQLite3' in the system package
warning: 'spi-builder-workspace': dependency 'perfect-sqlite3-support' is not used by any target
Building for debugging...
[0/3] Write sources
[2/3] Write swift-version-24593BA9C3E375BF.txt
[4/27] Emitting module PerfectCRUD
[5/30] Compiling PerfectCRUD Delete.swift
[6/30] Compiling PerfectCRUD Comparison.swift
[7/30] Compiling PerfectCRUD ComparisonInts.swift
[8/30] Compiling PerfectCRUD Table.swift
[9/30] Compiling PerfectCRUD Update.swift
[10/30] Compiling PerfectCRUD Where.swift
[11/30] Compiling PerfectCRUD In.swift
[12/30] Compiling PerfectCRUD InInts.swift
[13/30] Compiling PerfectCRUD Like.swift
[14/30] Compiling PerfectCRUD Equality.swift
[15/30] Compiling PerfectCRUD EqualityInts.swift
[16/30] Compiling PerfectCRUD Expression.swift
[17/30] Compiling PerfectCRUD CodingNames.swift
[18/30] Compiling PerfectCRUD CodingRows.swift
[19/30] Compiling PerfectCRUD Create.swift
[20/30] Compiling PerfectCRUD Database.swift
[21/30] Compiling PerfectCRUD Logical.swift
[22/30] Compiling PerfectCRUD Insert.swift
[23/30] Compiling PerfectCRUD Join.swift
[24/30] Compiling PerfectCRUD Coding.swift
[25/30] Compiling PerfectCRUD CodingBindings.swift
[26/30] Compiling PerfectCRUD CodingJoins.swift
[27/30] Compiling PerfectCRUD CodingKeyPaths.swift
[28/30] Compiling PerfectCRUD Logging.swift
[29/30] Compiling PerfectCRUD PerfectCRUD.swift
[30/30] Compiling PerfectCRUD Select.swift
[32/34] Emitting module PerfectSQLite
[33/34] Compiling PerfectSQLite SQLite.swift
[34/34] Compiling PerfectSQLite SQLiteCRUD.swift
/host/spi-builder-workspace/.build/checkouts/Perfect-CRUD/Sources/PerfectCRUD/Create.swift:14:20: warning: static property 'dropTable' is not concurrency-safe because non-'Sendable' type 'TableCreatePolicy' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import Foundation
  9 |
 10 | public struct TableCreatePolicy: OptionSet {
    |               `- note: consider making struct 'TableCreatePolicy' conform to the 'Sendable' protocol
 11 | 	public let rawValue: Int
 12 | 	public init(rawValue r: Int) { rawValue = r }
 13 | 	public static let shallow = TableCreatePolicy(rawValue: 1)
 14 | 	public static let dropTable = TableCreatePolicy(rawValue: 2)
    |                    |- warning: static property 'dropTable' is not concurrency-safe because non-'Sendable' type 'TableCreatePolicy' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'dropTable' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 15 | 	public static let reconcileTable = TableCreatePolicy(rawValue: 4)
 16 |
/host/spi-builder-workspace/.build/checkouts/Perfect-CRUD/Sources/PerfectCRUD/Create.swift:15:20: warning: static property 'reconcileTable' is not concurrency-safe because non-'Sendable' type 'TableCreatePolicy' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import Foundation
  9 |
 10 | public struct TableCreatePolicy: OptionSet {
    |               `- note: consider making struct 'TableCreatePolicy' conform to the 'Sendable' protocol
 11 | 	public let rawValue: Int
 12 | 	public init(rawValue r: Int) { rawValue = r }
 13 | 	public static let shallow = TableCreatePolicy(rawValue: 1)
 14 | 	public static let dropTable = TableCreatePolicy(rawValue: 2)
 15 | 	public static let reconcileTable = TableCreatePolicy(rawValue: 4)
    |                    |- warning: static property 'reconcileTable' is not concurrency-safe because non-'Sendable' type 'TableCreatePolicy' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'reconcileTable' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 16 |
 17 | 	public static let defaultPolicy: TableCreatePolicy = []
/host/spi-builder-workspace/.build/checkouts/Perfect-CRUD/Sources/PerfectCRUD/Create.swift:13:20: warning: static property 'shallow' is not concurrency-safe because non-'Sendable' type 'TableCreatePolicy' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import Foundation
  9 |
 10 | public struct TableCreatePolicy: OptionSet {
    |               `- note: consider making struct 'TableCreatePolicy' conform to the 'Sendable' protocol
 11 | 	public let rawValue: Int
 12 | 	public init(rawValue r: Int) { rawValue = r }
 13 | 	public static let shallow = TableCreatePolicy(rawValue: 1)
    |                    |- warning: static property 'shallow' is not concurrency-safe because non-'Sendable' type 'TableCreatePolicy' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'shallow' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 14 | 	public static let dropTable = TableCreatePolicy(rawValue: 2)
 15 | 	public static let reconcileTable = TableCreatePolicy(rawValue: 4)
Build complete! (22.73s)
Build complete.
{
  "dependencies" : [
    {
      "identity" : "perfect-crud",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "2.0.0",
            "upper_bound" : "3.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/PerfectlySoft/Perfect-CRUD.git"
    },
    {
      "identity" : "perfect-sqlite3-support",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "3.0.0",
            "upper_bound" : "4.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/PerfectlySoft/Perfect-sqlite3-support.git"
    }
  ],
  "manifest_display_name" : "PerfectSQLite",
  "name" : "PerfectSQLite",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "PerfectSQLite",
      "targets" : [
        "PerfectSQLite"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "PerfectSQLiteTests",
      "module_type" : "SwiftTarget",
      "name" : "PerfectSQLiteTests",
      "path" : "Tests/PerfectSQLiteTests",
      "sources" : [
        "PerfectSQLiteTests.swift",
        "XCTestManifests.swift"
      ],
      "target_dependencies" : [
        "PerfectSQLite"
      ],
      "type" : "test"
    },
    {
      "c99name" : "PerfectSQLite",
      "module_type" : "SwiftTarget",
      "name" : "PerfectSQLite",
      "path" : "Sources/PerfectSQLite",
      "product_dependencies" : [
        "PerfectCRUD"
      ],
      "product_memberships" : [
        "PerfectSQLite"
      ],
      "sources" : [
        "SQLite.swift",
        "SQLiteCRUD.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.1"
}
Done.
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.