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 SwiftKnex, reference 0.3.0 (665734), with Swift 6.1 for Linux on 25 Apr 2025 17:39:21 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-2":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.1-latest swift build --triple x86_64-unknown-linux-gnu 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.61.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/noppoman/swiftknex.git
Reference: 0.3.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/noppoman/swiftknex
 * tag               0.3.0      -> FETCH_HEAD
HEAD is now at 6657349 Merge pull request #43 from tuken/swift4
Cloned https://github.com/noppoman/swiftknex.git
Revision (git rev-parse @):
665734942c260ea01ff16138f232506bfca485b7
SUCCESS checkout https://github.com/noppoman/swiftknex.git at 0.3.0
========================================
Build
========================================
Selected platform:         linux
Swift version:             6.1
Building package at path:  $PWD
https://github.com/noppoman/swiftknex.git
https://github.com/noppoman/swiftknex.git
WARNING: environment variable SUPPRESS_SWIFT_6_FLAGS is not set
{
  "dependencies" : [
    {
      "identity" : "prorsum",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.3.0",
            "upper_bound" : "1.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/noppoMan/Prorsum.git"
    }
  ],
  "manifest_display_name" : "SwiftKnex",
  "name" : "SwiftKnex",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "SwiftKnex",
      "targets" : [
        "SwiftKnex"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "SwiftKnexMigration",
      "targets" : [
        "SwiftKnexMigration"
      ],
      "type" : {
        "executable" : null
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "SwiftKnexTests",
      "module_type" : "SwiftTarget",
      "name" : "SwiftKnexTests",
      "path" : "Tests/SwiftKnexTests",
      "sources" : [
        "DDLTests.swift",
        "InsertTests.swift",
        "JSONDataTypeTests.swift",
        "JoinTests.swift",
        "MigrationTests.swift",
        "MysqlTests.swift",
        "SelectTests.swift",
        "TransactionTests.swift",
        "UpdateTests.swift",
        "Util.swift"
      ],
      "target_dependencies" : [
        "SwiftKnex",
        "Mysql"
      ],
      "type" : "test"
    },
    {
      "c99name" : "SwiftKnexMigration",
      "module_type" : "SwiftTarget",
      "name" : "SwiftKnexMigration",
      "path" : "Sources/SwiftKnexMigration",
      "product_memberships" : [
        "SwiftKnexMigration"
      ],
      "sources" : [
        "main.swift"
      ],
      "target_dependencies" : [
        "SwiftKnex",
        "Mysql"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "SwiftKnex",
      "module_type" : "SwiftTarget",
      "name" : "SwiftKnex",
      "path" : "Sources/SwiftKnex",
      "product_memberships" : [
        "SwiftKnex",
        "SwiftKnexMigration"
      ],
      "sources" : [
        "Clauses/Buildable.swift",
        "Clauses/ConditionalFilter.swift",
        "Clauses/GroupBy.swift",
        "Clauses/Having.swift",
        "Clauses/Join.swift",
        "Clauses/Limit.swift",
        "Clauses/OrderBy.swift",
        "Clauses/Table.swift",
        "Column.swift",
        "DDL/Create.swift",
        "DDL/DDLBuildable.swift",
        "DDL/Drop.swift",
        "DDL/Raw.swift",
        "Field.swift",
        "Functions/AggregateColumnExpression.swift",
        "Functions/RawExpression.swift",
        "Knex+Query.swift",
        "Knex+Transaction.swift",
        "KnexConfig.swift",
        "Migration/Migrator.swift",
        "Protocols/Collection.swift",
        "Protocols/Entity.swift",
        "QueryBuilder/BasicQueryBuilder.swift",
        "QueryBuilder/BatchInsertQueryBuilder.swift",
        "QueryBuilder/InsertQueryBuilder.swift",
        "QueryBuilder/QueryBuilder.swift",
        "QueryBuilder/UpdateQueryBuilder.swift",
        "Schema/Schema.swift",
        "SwiftKnex.swift"
      ],
      "target_dependencies" : [
        "Mysql"
      ],
      "type" : "library"
    },
    {
      "c99name" : "Mysql",
      "module_type" : "SwiftTarget",
      "name" : "Mysql",
      "path" : "Sources/Mysql",
      "product_dependencies" : [
        "Prorsum"
      ],
      "product_memberships" : [
        "SwiftKnex",
        "SwiftKnexMigration"
      ],
      "sources" : [
        "Connection.swift",
        "ConnectionPool.swift",
        "ConnectionType.swift",
        "Extensions/Bytes.swift",
        "Extensions/Date.swift",
        "Mysql.swift",
        "PacketStream.swift",
        "Protocol/Constants.swift",
        "Protocol/Packet/BinaryRowDataPacket.swift",
        "Protocol/Packet/Field.swift",
        "Protocol/Packet/HandShakePacket.swift",
        "Protocol/Packet/OKPacket.swift",
        "Protocol/Packet/PrepareResultPacket.swift",
        "Protocol/Packet/RowDataPacket.swift",
        "Protocol/Packet/RowDataParsable.swift",
        "Query.swift",
        "QueryResult.swift",
        "QueryStatus.swift",
        "Row.swift",
        "Statement.swift",
        "Transaction.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "4.0"
}
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-2":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.1-latest swift build --triple x86_64-unknown-linux-gnu -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
basic-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:3bdcac04179f4ed3e5b8e9dbd6e74bbf5ebc0f4fde48bbaad7d1e5c757e65bcb
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.1-latest
Fetching https://github.com/noppoMan/Prorsum.git
[1/835] Fetching prorsum
Fetched https://github.com/noppoMan/Prorsum.git from cache (0.21s)
Computing version for https://github.com/noppoMan/Prorsum.git
Computed https://github.com/noppoMan/Prorsum.git at 0.3.3 (1.23s)
Fetching https://github.com/Zewo/CHTTPParser.git
Fetching https://github.com/noppoman/ProrsumNet.git
[1/174] Fetching prorsumnet
[175/238] Fetching prorsumnet, chttpparser
Fetched https://github.com/Zewo/CHTTPParser.git from cache (0.36s)
Fetched https://github.com/noppoman/ProrsumNet.git from cache (0.36s)
Computing version for https://github.com/Zewo/CHTTPParser.git
error: package 'package.swift' is using Swift tools version 3.1.0 which is no longer supported; consider using '// swift-tools-version: 6.1' to specify the current tools version
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-2":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.1-latest swift build --triple x86_64-unknown-linux-gnu 2>&1
basic-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:3bdcac04179f4ed3e5b8e9dbd6e74bbf5ebc0f4fde48bbaad7d1e5c757e65bcb
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.1-latest
Updating https://github.com/noppoMan/Prorsum.git
Updated https://github.com/noppoMan/Prorsum.git (0.12s)
Computing version for https://github.com/noppoMan/Prorsum.git
Computed https://github.com/noppoMan/Prorsum.git at 0.3.3 (0.59s)
Updating https://github.com/Zewo/CHTTPParser.git
Updating https://github.com/noppoman/ProrsumNet.git
Updated https://github.com/noppoman/ProrsumNet.git (0.14s)
Updated https://github.com/Zewo/CHTTPParser.git (0.21s)
Computing version for https://github.com/Zewo/CHTTPParser.git
error: package 'package.swift' is using Swift tools version 3.1.0 which is no longer supported; consider using '// swift-tools-version: 6.1' to specify the current tools version
BUILD FAILURE 6.1 linux