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

Successful build of TOMLDecoder, reference main (7dd560), with Swift 6.2 (beta) for Linux on 22 Jun 2025 17:17:30 UTC.

Swift 6 data race errors: 0

Build Command

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

Build Log

========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/dduan/TOMLDecoder.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/dduan/TOMLDecoder
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at 7dd5603 Avoid allocating temporary containers during assembly (#65)
Cloned https://github.com/dduan/TOMLDecoder.git
Revision (git rev-parse @):
7dd560352094fe1e9a71c5cf3979572cf284a7ab
SUCCESS checkout https://github.com/dduan/TOMLDecoder.git at main
========================================
Build
========================================
Selected platform:         linux
Swift version:             6.2
Building package at path:  $PWD
https://github.com/dduan/TOMLDecoder.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.2-latest swift build --triple x86_64-unknown-linux-gnu 2>&1
basic-6.2-latest: Pulling from finestructure/spi-images
Digest: sha256:f81a7bd7aa87a0f81848d48c5bcc03f5f78deebd37fa5f9be9913077205d3687
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.2-latest
Building for debugging...
[0/9] Write sources
[3/9] Write swift-version-24593BA9C3E375BF.txt
[5/14] Compiling Deserializer TOMLDeserializer.swift
[6/14] Compiling Deserializer Traced.swift
[7/14] Emitting module Deserializer
[8/14] Compiling Deserializer DeserializationError.swift
[9/14] Compiling Deserializer Parser.swift
[10/15] Wrapping AST for Deserializer for debugging
[12/23] Compiling TOMLDecoder TOMLDecodingStorage.swift
[13/23] Compiling TOMLDecoder TOMLKey.swift
[14/24] Compiling TOMLDecoder TOMLDecoder.swift
[15/24] Compiling TOMLDecoder KeyDecodingStrategy.swift
[16/24] Compiling TOMLDecoder DecodingError+Extensions.swift
[17/24] Emitting module TOMLDecoder
[18/24] Compiling TOMLDecoder TOMLKeyedDecodingContainer.swift
[19/24] Compiling TOMLDecoder TOMLUnkeyedDecodingContainer.swift
[20/24] Compiling TOMLDecoder TOMLDecoderImpl.swift
[21/25] Wrapping AST for TOMLDecoder for debugging
[23/27] Compiling compliance main.swift
/host/spi-builder-workspace/Sources/compliance/main.swift:18:26: warning: cannot convert '@MainActor @Sendable (Any) -> Any' to '@MainActor (Any) -> Any' because crossing of an isolation boundary requires parameter and result types to conform to 'Sendable' protocol; this will be an error in a future Swift language mode
16 |         }
17 |     } else if let array = value as? [Any] {
18 |         return array.map(translate(value:))
   |                          |- warning: cannot convert '@MainActor @Sendable (Any) -> Any' to '@MainActor (Any) -> Any' because crossing of an isolation boundary requires parameter and result types to conform to 'Sendable' protocol; this will be an error in a future Swift language mode
   |                          `- note: type 'Any' does not conform to 'Sendable' protocol
19 |     } else if let value = value as? String {
20 |         return ["type": "string", "value": value]
[24/27] Emitting module compliance
[25/28] Wrapping AST for compliance for debugging
[26/28] Write Objects.LinkFileList
[27/28] Linking compliance
Build complete! (16.59s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "TOMLDecoder",
  "name" : "TOMLDecoder",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "12.0"
    },
    {
      "name" : "tvos",
      "version" : "12.0"
    },
    {
      "name" : "watchos",
      "version" : "4.0"
    },
    {
      "name" : "macos",
      "version" : "13.0"
    }
  ],
  "products" : [
    {
      "name" : "compliance",
      "targets" : [
        "compliance"
      ],
      "type" : {
        "executable" : null
      }
    },
    {
      "name" : "TOMLDecoder",
      "targets" : [
        "TOMLDecoder"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "compliance",
      "module_type" : "SwiftTarget",
      "name" : "compliance",
      "path" : "Sources/compliance",
      "product_memberships" : [
        "compliance"
      ],
      "sources" : [
        "main.swift"
      ],
      "target_dependencies" : [
        "TOMLDecoder"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "TOMLDecoderTests",
      "module_type" : "SwiftTarget",
      "name" : "TOMLDecoderTests",
      "path" : "Tests/TOMLDecoderTests",
      "sources" : [
        "TOMLDecoderTests.swift"
      ],
      "target_dependencies" : [
        "TOMLDecoder"
      ],
      "type" : "test"
    },
    {
      "c99name" : "TOMLDecoder",
      "module_type" : "SwiftTarget",
      "name" : "TOMLDecoder",
      "path" : "Sources/TOMLDecoder",
      "product_memberships" : [
        "compliance",
        "TOMLDecoder"
      ],
      "sources" : [
        "DecodingError+Extensions.swift",
        "KeyDecodingStrategy.swift",
        "TOMLDecoder.swift",
        "TOMLDecoderImpl.swift",
        "TOMLDecodingStorage.swift",
        "TOMLKey.swift",
        "TOMLKeyedDecodingContainer.swift",
        "TOMLUnkeyedDecodingContainer.swift"
      ],
      "target_dependencies" : [
        "Deserializer"
      ],
      "type" : "library"
    },
    {
      "c99name" : "DeserializerTests",
      "module_type" : "SwiftTarget",
      "name" : "DeserializerTests",
      "path" : "Tests/DeserializerTests",
      "sources" : [
        "ErrorTests.swift",
        "ParserTests.swift",
        "TOMLDeserializerTests.swift",
        "TOMLInvalidationTests.swift"
      ],
      "target_dependencies" : [
        "Deserializer"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Deserializer",
      "module_type" : "SwiftTarget",
      "name" : "Deserializer",
      "path" : "Sources/Deserializer",
      "product_memberships" : [
        "compliance",
        "TOMLDecoder"
      ],
      "sources" : [
        "DeserializationError.swift",
        "Parser.swift",
        "TOMLDeserializer.swift",
        "Traced.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "6.0"
}
basic-6.2-latest: Pulling from finestructure/spi-images
Digest: sha256:f81a7bd7aa87a0f81848d48c5bcc03f5f78deebd37fa5f9be9913077205d3687
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.2-latest
Done.