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 swift-lambda-runtime, reference v0.6.0 (def35b), with Swift 6.1 for Linux on 25 Apr 2025 15:01:16 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4606859-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/fabianfett/swift-lambda-runtime.git
Reference: v0.6.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/fabianfett/swift-lambda-runtime
 * tag               v0.6.0     -> FETCH_HEAD
HEAD is now at def35b2 Use Swift 5.2 (#30)
Cloned https://github.com/fabianfett/swift-lambda-runtime.git
Revision (git rev-parse @):
def35b2e37c14ee403d248fb612ccc761a14e50a
SUCCESS checkout https://github.com/fabianfett/swift-lambda-runtime.git at v0.6.0
========================================
Build
========================================
Selected platform:         linux
Swift version:             6.1
Building package at path:  $PWD
https://github.com/fabianfett/swift-lambda-runtime.git
https://github.com/fabianfett/swift-lambda-runtime.git
WARNING: environment variable SUPPRESS_SWIFT_6_FLAGS is not set
{
  "dependencies" : [
    {
      "identity" : "swift-nio",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "2.9.0",
            "upper_bound" : "3.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-nio.git"
    },
    {
      "identity" : "swift-log",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.1.1",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-log.git"
    },
    {
      "identity" : "async-http-client",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/swift-server/async-http-client.git"
    },
    {
      "identity" : "swift-base64-kit",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.2.0",
            "upper_bound" : "1.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/fabianfett/swift-base64-kit.git"
    }
  ],
  "manifest_display_name" : "swift-lambda-runtime",
  "name" : "swift-lambda-runtime",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "LambdaRuntime",
      "targets" : [
        "LambdaRuntime"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "LambdaEvents",
      "targets" : [
        "LambdaEvents"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "LambdaRuntimeTestUtils",
      "targets" : [
        "LambdaRuntimeTestUtils"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "LambdaRuntimeTests",
      "module_type" : "SwiftTarget",
      "name" : "LambdaRuntimeTests",
      "path" : "Tests/LambdaRuntimeTests",
      "product_dependencies" : [
        "NIO",
        "NIOTestUtils",
        "Logging"
      ],
      "sources" : [
        "AWSNumberTests.swift",
        "ContextTests.swift",
        "Events/ALBTests.swift",
        "Events/APIGatewayTests.swift",
        "Events/CloudwatchTests.swift",
        "Events/DecodableBodyTests.swift",
        "Events/DynamoDB+AttributeValueTests.swift",
        "Events/DynamoDBTests.swift",
        "Events/S3Tests.swift",
        "Events/SNSTests.swift",
        "Events/SQSTests.swift",
        "Runtime+CodableTests.swift",
        "RuntimeAPIClientTests.swift",
        "RuntimeTests.swift",
        "Utils/MockLambdaRuntimeAPI.swift"
      ],
      "target_dependencies" : [
        "LambdaEvents",
        "LambdaRuntime",
        "LambdaRuntimeTestUtils"
      ],
      "type" : "test"
    },
    {
      "c99name" : "LambdaRuntimeTestUtils",
      "module_type" : "SwiftTarget",
      "name" : "LambdaRuntimeTestUtils",
      "path" : "Sources/LambdaRuntimeTestUtils",
      "product_dependencies" : [
        "NIOHTTP1"
      ],
      "product_memberships" : [
        "LambdaRuntimeTestUtils"
      ],
      "sources" : [
        "Environment+TestUtils.swift",
        "Invocation+TestUtils.swift"
      ],
      "target_dependencies" : [
        "LambdaRuntime"
      ],
      "type" : "library"
    },
    {
      "c99name" : "LambdaRuntime",
      "module_type" : "SwiftTarget",
      "name" : "LambdaRuntime",
      "path" : "Sources/LambdaRuntime",
      "product_dependencies" : [
        "AsyncHTTPClient",
        "NIO",
        "NIOHTTP1",
        "NIOFoundationCompat",
        "Logging"
      ],
      "product_memberships" : [
        "LambdaRuntime",
        "LambdaRuntimeTestUtils"
      ],
      "sources" : [
        "Context.swift",
        "Environment.swift",
        "Runtime+ALB.swift",
        "Runtime+APIGateway.swift",
        "Runtime+Codable.swift",
        "Runtime.swift",
        "RuntimeAPIClient.swift",
        "RuntimeError.swift"
      ],
      "target_dependencies" : [
        "LambdaEvents"
      ],
      "type" : "library"
    },
    {
      "c99name" : "LambdaEvents",
      "module_type" : "SwiftTarget",
      "name" : "LambdaEvents",
      "path" : "Sources/LambdaEvents",
      "product_dependencies" : [
        "NIO",
        "NIOHTTP1",
        "NIOFoundationCompat",
        "Base64Kit"
      ],
      "product_memberships" : [
        "LambdaRuntime",
        "LambdaEvents",
        "LambdaRuntimeTestUtils"
      ],
      "sources" : [
        "ALB.swift",
        "APIGateway.swift",
        "AWSNumber.swift",
        "Cloudwatch.swift",
        "DynamoDB+AttributeValue.swift",
        "DynamoDB.swift",
        "S3.swift",
        "SNS.swift",
        "SQS.swift",
        "Utils/DecodableBody.swift",
        "Utils/HTTPHeaders+Codable.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.1"
}
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-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/swift-server/async-http-client.git
Fetching https://github.com/apple/swift-nio.git
Fetching https://github.com/apple/swift-log.git
Fetching https://github.com/fabianfett/swift-base64-kit.git
[1/3836] Fetching swift-log
[960/4669] Fetching swift-log, swift-base64-kit
[4670/18452] Fetching swift-log, swift-base64-kit, async-http-client
Fetched https://github.com/fabianfett/swift-base64-kit.git from cache (0.40s)
[5491/93050] Fetching swift-log, async-http-client, swift-nio
Fetched https://github.com/swift-server/async-http-client.git from cache (1.11s)
[33255/79267] Fetching swift-log, swift-nio
Fetched https://github.com/apple/swift-log.git from cache (4.84s)
Fetched https://github.com/apple/swift-nio.git from cache (4.97s)
Computing version for https://github.com/fabianfett/swift-base64-kit.git
Computed https://github.com/fabianfett/swift-base64-kit.git at 0.7.0 (5.59s)
Computing version for https://github.com/apple/swift-log.git
Computed https://github.com/apple/swift-log.git at 1.6.3 (0.56s)
Computing version for https://github.com/swift-server/async-http-client.git
Computed https://github.com/swift-server/async-http-client.git at 1.25.2 (0.82s)
Fetching https://github.com/apple/swift-nio-ssl.git
Fetching https://github.com/apple/swift-nio-http2.git
Fetching https://github.com/apple/swift-nio-transport-services.git
Fetching https://github.com/apple/swift-nio-extras.git
Fetching https://github.com/apple/swift-algorithms.git
Fetching https://github.com/apple/swift-atomics.git
[1/2604] Fetching swift-nio-transport-services
[600/4309] Fetching swift-nio-transport-services, swift-atomics
[749/10212] Fetching swift-nio-transport-services, swift-atomics, swift-algorithms
[937/21704] Fetching swift-nio-transport-services, swift-atomics, swift-algorithms, swift-nio-http2
[1082/27366] Fetching swift-nio-transport-services, swift-atomics, swift-algorithms, swift-nio-http2, swift-nio-extras
[14041/42159] Fetching swift-nio-transport-services, swift-atomics, swift-algorithms, swift-nio-http2, swift-nio-extras, swift-nio-ssl
Fetched https://github.com/apple/swift-nio-transport-services.git from cache (0.82s)
[17427/39555] Fetching swift-atomics, swift-algorithms, swift-nio-http2, swift-nio-extras, swift-nio-ssl
Fetched https://github.com/apple/swift-atomics.git from cache (1.02s)
Fetched https://github.com/apple/swift-algorithms.git from cache (1.02s)
[10082/31947] Fetching swift-nio-http2, swift-nio-extras, swift-nio-ssl
Fetched https://github.com/apple/swift-nio-extras.git from cache (1.07s)
[4683/26285] Fetching swift-nio-http2, swift-nio-ssl
Fetched https://github.com/apple/swift-nio-http2.git from cache (2.06s)
Fetched https://github.com/apple/swift-nio-ssl.git from cache (2.66s)
Computing version for https://github.com/apple/swift-algorithms.git
Computed https://github.com/apple/swift-algorithms.git at 1.2.1 (4.53s)
Fetching https://github.com/apple/swift-numerics.git
[1/5674] Fetching swift-numerics
Fetched https://github.com/apple/swift-numerics.git from cache (0.44s)
Computing version for https://github.com/apple/swift-atomics.git
Computed https://github.com/apple/swift-atomics.git at 1.2.0 (1.02s)
Computing version for https://github.com/apple/swift-numerics.git
Computed https://github.com/apple/swift-numerics.git at 1.0.3 (0.66s)
Computing version for https://github.com/apple/swift-nio.git
Computed https://github.com/apple/swift-nio.git at 2.82.0 (0.88s)
Fetching https://github.com/apple/swift-collections.git
Fetching https://github.com/apple/swift-system.git
[1/4353] Fetching swift-system
[4267/20595] Fetching swift-system, swift-collections
Fetched https://github.com/apple/swift-system.git from cache (1.09s)
[4386/16242] Fetching swift-collections
Fetched https://github.com/apple/swift-collections.git from cache (2.26s)
Computing version for https://github.com/apple/swift-system.git
Computed https://github.com/apple/swift-system.git at 1.4.2 (2.89s)
Computing version for https://github.com/apple/swift-collections.git
Computed https://github.com/apple/swift-collections.git at 1.1.4 (1.33s)
Computing version for https://github.com/apple/swift-nio-transport-services.git
Computed https://github.com/apple/swift-nio-transport-services.git at 1.24.0 (1.20s)
Computing version for https://github.com/apple/swift-nio-ssl.git
Computed https://github.com/apple/swift-nio-ssl.git at 2.30.0 (0.91s)
Computing version for https://github.com/apple/swift-nio-extras.git
Computed https://github.com/apple/swift-nio-extras.git at 1.26.0 (0.70s)
Fetching https://github.com/apple/swift-http-types.git
Fetching https://github.com/apple/swift-http-structured-headers.git
[1/1127] Fetching swift-http-structured-headers
[1128/2031] Fetching swift-http-structured-headers, swift-http-types
Fetched https://github.com/apple/swift-http-structured-headers.git from cache (0.33s)
Fetched https://github.com/apple/swift-http-types.git from cache (0.34s)
Computing version for https://github.com/apple/swift-http-structured-headers.git
Computed https://github.com/apple/swift-http-structured-headers.git at 1.2.2 (1.80s)
Computing version for https://github.com/apple/swift-http-types.git
Computed https://github.com/apple/swift-http-types.git at 1.4.0 (1.23s)
Computing version for https://github.com/apple/swift-nio-http2.git
Computed https://github.com/apple/swift-nio-http2.git at 1.36.0 (1.26s)
Creating working copy for https://github.com/apple/swift-collections.git
Working copy of https://github.com/apple/swift-collections.git resolved at 1.1.4
Creating working copy for https://github.com/apple/swift-nio-http2.git
Working copy of https://github.com/apple/swift-nio-http2.git resolved at 1.36.0
Creating working copy for https://github.com/apple/swift-nio.git
Working copy of https://github.com/apple/swift-nio.git resolved at 2.82.0
Creating working copy for https://github.com/apple/swift-algorithms.git
Working copy of https://github.com/apple/swift-algorithms.git resolved at 1.2.1
Creating working copy for https://github.com/fabianfett/swift-base64-kit.git
Working copy of https://github.com/fabianfett/swift-base64-kit.git resolved at 0.7.0
Creating working copy for https://github.com/swift-server/async-http-client.git
Working copy of https://github.com/swift-server/async-http-client.git resolved at 1.25.2
Creating working copy for https://github.com/apple/swift-nio-transport-services.git
Working copy of https://github.com/apple/swift-nio-transport-services.git resolved at 1.24.0
Creating working copy for https://github.com/apple/swift-numerics.git
Working copy of https://github.com/apple/swift-numerics.git resolved at 1.0.3
Creating working copy for https://github.com/apple/swift-http-structured-headers.git
Working copy of https://github.com/apple/swift-http-structured-headers.git resolved at 1.2.2
Creating working copy for https://github.com/apple/swift-nio-extras.git
Working copy of https://github.com/apple/swift-nio-extras.git resolved at 1.26.0
Creating working copy for https://github.com/apple/swift-http-types.git
Working copy of https://github.com/apple/swift-http-types.git resolved at 1.4.0
Creating working copy for https://github.com/apple/swift-log.git
Working copy of https://github.com/apple/swift-log.git resolved at 1.6.3
Creating working copy for https://github.com/apple/swift-nio-ssl.git
Working copy of https://github.com/apple/swift-nio-ssl.git resolved at 2.30.0
Creating working copy for https://github.com/apple/swift-atomics.git
Working copy of https://github.com/apple/swift-atomics.git resolved at 1.2.0
Creating working copy for https://github.com/apple/swift-system.git
Working copy of https://github.com/apple/swift-system.git resolved at 1.4.2
error: 'spi-builder-workspace': product 'Base64Kit' required by package 'spi-builder-workspace' target 'LambdaEvents' not found in package 'swift-base64-kit'. Did you mean '_NIOBase64'?
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-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
error: 'spi-builder-workspace': product 'Base64Kit' required by package 'spi-builder-workspace' target 'LambdaEvents' not found in package 'swift-base64-kit'. Did you mean '_NIOBase64'?
BUILD FAILURE 6.1 linux