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 TinyCSV, reference main (a27a0b), with Swift 6.0 for Linux on 1 Dec 2024 19:50:44 UTC.

Swift 6 data race errors: 1

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/host -w "$PWD" 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 -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

Build Log

========================================
RunAll
========================================
Builder version: 4.58.1
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/dagronf/TinyCSV.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/dagronf/TinyCSV
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at a27a0ba update version
Cloned https://github.com/dagronf/TinyCSV.git
Revision (git rev-parse @):
a27a0baa6766e44eb27a2a8c6b2e15541056b3de
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/dagronf/TinyCSV.git at main
========================================
Build
========================================
Selected platform:         linux
Swift version:             6.0
Building package at path:  $PWD
https://github.com/dagronf/TinyCSV.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/host -w "$PWD" 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 -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.0-latest: Pulling from finestructure/spi-images
Digest: sha256:47d26c99ca4f1ac0a332c85fd5b13ff4390e72115219984a57a68fe9d1063a05
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.0-latest
Building for debugging...
[0/3] Write sources
[1/3] Copying PrivacyInfo.xcprivacy
[2/3] Write swift-version-24593BA9C3E375BF.txt
[4/12] Compiling TinyCSV TinyCSV+Encode.swift
[5/12] Compiling TinyCSV TinyCSV.swift
[6/13] Compiling TinyCSV TinyCSV+Decoder.swift
[7/13] Compiling TinyCSV TinyCSV+Decode.swift
/host/spi-builder-workspace/Sources/TinyCSV/TinyCSV+Delimiter.swift:35:13: warning: static property 'allKnownDelimiters' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
33 | 	static let tab: TinyCSV.Delimiter = "\t"
34 | 	/// All the default delimiters
35 | 	static var allKnownDelimiters: [TinyCSV.Delimiter] = [
   |             |- warning: static property 'allKnownDelimiters' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'allKnownDelimiters' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'allKnownDelimiters' 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
36 | 		TinyCSV.Delimiter.comma,
37 | 		TinyCSV.Delimiter.semicolon,
[8/13] Compiling TinyCSV TinyCSV+Delimiter.swift
/host/spi-builder-workspace/Sources/TinyCSV/TinyCSV+Delimiter.swift:35:13: warning: static property 'allKnownDelimiters' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
33 | 	static let tab: TinyCSV.Delimiter = "\t"
34 | 	/// All the default delimiters
35 | 	static var allKnownDelimiters: [TinyCSV.Delimiter] = [
   |             |- warning: static property 'allKnownDelimiters' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'allKnownDelimiters' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'allKnownDelimiters' 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
36 | 		TinyCSV.Delimiter.comma,
37 | 		TinyCSV.Delimiter.semicolon,
[9/13] Compiling TinyCSV TinyCSVData.swift
[10/13] Emitting module TinyCSV
/host/spi-builder-workspace/Sources/TinyCSV/TinyCSV+Delimiter.swift:35:13: warning: static property 'allKnownDelimiters' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
33 | 	static let tab: TinyCSV.Delimiter = "\t"
34 | 	/// All the default delimiters
35 | 	static var allKnownDelimiters: [TinyCSV.Delimiter] = [
   |             |- warning: static property 'allKnownDelimiters' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'allKnownDelimiters' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'allKnownDelimiters' 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
36 | 		TinyCSV.Delimiter.comma,
37 | 		TinyCSV.Delimiter.semicolon,
[11/13] Compiling TinyCSV resource_bundle_accessor.swift
[12/13] Compiling TinyCSV TinyCSV+EventDrivenDecoder.swift
[13/13] Compiling TinyCSV TinyCSV+Parsing.swift
Build complete! (13.18s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "TinyCSV",
  "name" : "TinyCSV",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "TinyCSV",
      "targets" : [
        "TinyCSV"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "TinyCSVTests",
      "module_type" : "SwiftTarget",
      "name" : "TinyCSVTests",
      "path" : "Tests/TinyCSVTests",
      "resources" : [
        {
          "path" : "/host/spi-builder-workspace/Tests/TinyCSVTests/resources/2747.csv",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/TinyCSVTests/resources/classification.csv",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/TinyCSVTests/resources/imdb_line65.csv",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/TinyCSVTests/resources/imdb_top_1000.csv",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/TinyCSVTests/resources/organizations-1000.csv",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/TinyCSVTests/resources/orig.csv",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/TinyCSVTests/resources/sample-5.tsv",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/TinyCSVTests/resources/single-row-oddness.csv",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/TinyCSVTests/resources/stby.csv",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/TinyCSVTests/resources/testNewlineInUnquotedField.tsv",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/TinyCSVTests/resources/wonderland.csv",
          "rule" : {
            "process" : {
            }
          }
        }
      ],
      "sources" : [
        "BugsTests.swift",
        "PerformanceTests.swift",
        "TinyCSVEncoderTests.swift",
        "TinyCSVEventDrivenTests.swift",
        "TinyCSVTests.swift"
      ],
      "target_dependencies" : [
        "TinyCSV"
      ],
      "type" : "test"
    },
    {
      "c99name" : "TinyCSV",
      "module_type" : "SwiftTarget",
      "name" : "TinyCSV",
      "path" : "Sources/TinyCSV",
      "product_memberships" : [
        "TinyCSV"
      ],
      "resources" : [
        {
          "path" : "/host/spi-builder-workspace/Sources/TinyCSV/PrivacyInfo.xcprivacy",
          "rule" : {
            "copy" : {
            }
          }
        }
      ],
      "sources" : [
        "TinyCSV+Decode.swift",
        "TinyCSV+Delimiter.swift",
        "TinyCSV+Encode.swift",
        "TinyCSV.swift",
        "TinyCSVData.swift",
        "private/TinyCSV+Decoder.swift",
        "private/TinyCSV+EventDrivenDecoder.swift",
        "private/TinyCSV+Parsing.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.4"
}
basic-6.0-latest: Pulling from finestructure/spi-images
Digest: sha256:47d26c99ca4f1ac0a332c85fd5b13ff4390e72115219984a57a68fe9d1063a05
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.0-latest
Done.