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 SemanticVersion, reference main (466f17), with Swift 6.1 for Wasm on 16 Jun 2025 10:38:45 UTC.

Swift 6 data race errors: 1

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-2":/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

Build Log

========================================
RunAll
========================================
Builder version: 4.63.1
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/SwiftPackageIndex/SemanticVersion.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/SwiftPackageIndex/SemanticVersion
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at 466f17f Merge pull request #24 from SwiftPackageIndex/drop-Foundation-requirement
Cloned https://github.com/SwiftPackageIndex/SemanticVersion.git
Revision (git rev-parse @):
466f17f3c8cb82cf33ee22566918c43e41282d7e
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/SwiftPackageIndex/SemanticVersion.git at main
========================================
Build
========================================
Selected platform:         wasm
Swift version:             6.1
Building package at path:  $PWD
https://github.com/SwiftPackageIndex/SemanticVersion.git
https://github.com/SwiftPackageIndex/SemanticVersion.git
WARNING: environment variable SUPPRESS_SWIFT_6_FLAGS is not set
{
  "dependencies" : [
  ],
  "manifest_display_name" : "SemanticVersion",
  "name" : "SemanticVersion",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "13.0"
    }
  ],
  "products" : [
    {
      "name" : "SemanticVersion",
      "targets" : [
        "SemanticVersion"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "SemanticVersionTests",
      "module_type" : "SwiftTarget",
      "name" : "SemanticVersionTests",
      "path" : "Tests/SemanticVersionTests",
      "sources" : [
        "SemanticVersionCodableTests.swift",
        "SemanticVersionTests.swift"
      ],
      "target_dependencies" : [
        "SemanticVersion"
      ],
      "type" : "test"
    },
    {
      "c99name" : "SemanticVersion",
      "module_type" : "SwiftTarget",
      "name" : "SemanticVersion",
      "path" : "Sources/SemanticVersion",
      "product_memberships" : [
        "SemanticVersion"
      ],
      "resources" : [
        {
          "path" : "/host/spi-builder-workspace/Sources/SemanticVersion/Documentation.docc",
          "rule" : {
            "process" : {
            }
          }
        }
      ],
      "sources" : [
        "SemanticVersion+Codable.swift",
        "SemanticVersion+LosslessStringConvertible.swift",
        "SemanticVersion.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.6"
}
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-2":/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:1d9b2ff10447e71c7331541368dc204699fc22b6bc9ef4efb815c3e4c1ba42e3
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest
Building for debugging...
[0/3] Write sources
[1/3] Copying Documentation.docc
[2/3] Write swift-version-24593BA9C3E375BF.txt
[4/8] Compiling SemanticVersion SemanticVersion.swift
[5/8] Compiling SemanticVersion resource_bundle_accessor.swift
[6/8] Emitting module SemanticVersion
/host/spi-builder-workspace/Sources/SemanticVersion/SemanticVersion+LosslessStringConvertible.swift:42:5: warning: let 'semVerRegex' is not concurrency-safe because non-'Sendable' type 'Regex<(Substring, major: Substring, minor: Substring, patch: Substring, prerelease: Substring?, buildmetadata: Substring?)>' may have shared mutable state; this is an error in the Swift 6 language mode
40 | // Source: https://regex101.com/r/Ly7O1x/3/
41 | // Linked from https://semver.org
42 | let semVerRegex = #/
   |     |- warning: let 'semVerRegex' is not concurrency-safe because non-'Sendable' type 'Regex<(Substring, major: Substring, minor: Substring, patch: Substring, prerelease: Substring?, buildmetadata: Substring?)>' may have shared mutable state; this is an error in the Swift 6 language mode
   |     |- note: add '@MainActor' to make let 'semVerRegex' part of global actor 'MainActor'
   |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 |     ^
44 |     v?                              # SPI extension: allow leading 'v'
_StringProcessing.Regex:2:15: note: generic struct 'Regex' does not conform to the 'Sendable' protocol
1 | @available(macOS 13.0, iOS 16.0, watchOS 9.0, tvOS 16.0, *)
2 | public struct Regex<Output> : RegexComponent {
  |               `- note: generic struct 'Regex' does not conform to the 'Sendable' protocol
3 |     public var regex: Regex<Output> { get }
4 |     public typealias RegexOutput = Output
[7/8] Compiling SemanticVersion SemanticVersion+Codable.swift
[8/8] Compiling SemanticVersion SemanticVersion+LosslessStringConvertible.swift
/host/spi-builder-workspace/Sources/SemanticVersion/SemanticVersion+LosslessStringConvertible.swift:42:5: warning: let 'semVerRegex' is not concurrency-safe because non-'Sendable' type 'Regex<(Substring, major: Substring, minor: Substring, patch: Substring, prerelease: Substring?, buildmetadata: Substring?)>' may have shared mutable state; this is an error in the Swift 6 language mode
40 | // Source: https://regex101.com/r/Ly7O1x/3/
41 | // Linked from https://semver.org
42 | let semVerRegex = #/
   |     |- warning: let 'semVerRegex' is not concurrency-safe because non-'Sendable' type 'Regex<(Substring, major: Substring, minor: Substring, patch: Substring, prerelease: Substring?, buildmetadata: Substring?)>' may have shared mutable state; this is an error in the Swift 6 language mode
   |     |- note: add '@MainActor' to make let 'semVerRegex' part of global actor 'MainActor'
   |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 |     ^
44 |     v?                              # SPI extension: allow leading 'v'
_StringProcessing.Regex:2:15: note: generic struct 'Regex' does not conform to the 'Sendable' protocol
1 | @available(macOS 13.0, iOS 16.0, watchOS 9.0, tvOS 16.0, *)
2 | public struct Regex<Output> : RegexComponent {
  |               `- note: generic struct 'Regex' does not conform to the 'Sendable' protocol
3 |     public var regex: Regex<Output> { get }
4 |     public typealias RegexOutput = Output
Build complete! (8.07s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "SemanticVersion",
  "name" : "SemanticVersion",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "13.0"
    }
  ],
  "products" : [
    {
      "name" : "SemanticVersion",
      "targets" : [
        "SemanticVersion"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "SemanticVersionTests",
      "module_type" : "SwiftTarget",
      "name" : "SemanticVersionTests",
      "path" : "Tests/SemanticVersionTests",
      "sources" : [
        "SemanticVersionCodableTests.swift",
        "SemanticVersionTests.swift"
      ],
      "target_dependencies" : [
        "SemanticVersion"
      ],
      "type" : "test"
    },
    {
      "c99name" : "SemanticVersion",
      "module_type" : "SwiftTarget",
      "name" : "SemanticVersion",
      "path" : "Sources/SemanticVersion",
      "product_memberships" : [
        "SemanticVersion"
      ],
      "resources" : [
        {
          "path" : "/host/spi-builder-workspace/Sources/SemanticVersion/Documentation.docc",
          "rule" : {
            "process" : {
            }
          }
        }
      ],
      "sources" : [
        "SemanticVersion+Codable.swift",
        "SemanticVersion+LosslessStringConvertible.swift",
        "SemanticVersion.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.6"
}
wasm-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:1d9b2ff10447e71c7331541368dc204699fc22b6bc9ef4efb815c3e4c1ba42e3
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest
Done.