The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Failed to build SwiftKnex, reference master (665734), with Swift 6.1 for Wasm on 27 May 2025 16:27:06 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.63.1
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/noppoman/swiftknex.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/noppoman/swiftknex
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
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 master
========================================
Build
========================================
Selected platform:         wasm
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-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi -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
wasm-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:7e37457820e5f17452a98118754f345f2619722c485f2db0d8b666940a83afd2
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest
Fetching https://github.com/noppoMan/Prorsum.git
[1/835] Fetching prorsum
Fetched https://github.com/noppoMan/Prorsum.git from cache (0.24s)
Computing version for https://github.com/noppoMan/Prorsum.git
Computed https://github.com/noppoMan/Prorsum.git at 0.3.3 (1.14s)
Fetching https://github.com/Zewo/CHTTPParser.git
Fetching https://github.com/noppoman/ProrsumNet.git
[1/174] Fetching prorsumnet
[35/238] Fetching prorsumnet, chttpparser
Fetched https://github.com/Zewo/CHTTPParser.git from cache (0.63s)
Fetched https://github.com/noppoman/ProrsumNet.git from cache (0.63s)
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-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi 2>&1
wasm-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:7e37457820e5f17452a98118754f345f2619722c485f2db0d8b666940a83afd2
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest
Updating https://github.com/noppoMan/Prorsum.git
Updated https://github.com/noppoMan/Prorsum.git (0.14s)
Computing version for https://github.com/noppoMan/Prorsum.git
Computed https://github.com/noppoMan/Prorsum.git at 0.3.3 (0.69s)
Updating https://github.com/noppoman/ProrsumNet.git
Updating https://github.com/Zewo/CHTTPParser.git
Updated https://github.com/noppoman/ProrsumNet.git (0.14s)
Updated https://github.com/Zewo/CHTTPParser.git (0.18s)
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 wasm