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 EventLimiter, reference master (4222f0), with Swift 6.1 for Linux on 4 Oct 2025 07:36:34 UTC.

Swift 6 data race errors: 0

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4606859-2":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" 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

Build Log

========================================
RunAll
========================================
Builder version: 4.68.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/baekteun/EventLimiter.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/baekteun/EventLimiter
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
HEAD is now at 4222f0b README 오탈자 수정
Cloned https://github.com/baekteun/EventLimiter.git
Revision (git rev-parse @):
4222f0b55777272dd21de899a7e82177fbcebaca
SUCCESS checkout https://github.com/baekteun/EventLimiter.git at master
========================================
Build
========================================
Selected platform:         linux
Swift version:             6.1
Building package at path:  $PWD
https://github.com/baekteun/EventLimiter.git
https://github.com/baekteun/EventLimiter.git
WARNING: environment variable SUPPRESS_SWIFT_6_FLAGS is not set
{
  "dependencies" : [
  ],
  "manifest_display_name" : "EventLimiter",
  "name" : "EventLimiter",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "13.0"
    },
    {
      "name" : "tvos",
      "version" : "13.0"
    },
    {
      "name" : "macos",
      "version" : "10.15"
    },
    {
      "name" : "watchos",
      "version" : "6.0"
    }
  ],
  "products" : [
    {
      "name" : "EventLimiter",
      "targets" : [
        "EventLimiter"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "EventLimiterTests",
      "module_type" : "SwiftTarget",
      "name" : "EventLimiterTests",
      "path" : "Tests/EventLimiterTests",
      "sources" : [
        "DebouncerTests.swift",
        "ThrottlerTests.swift"
      ],
      "target_dependencies" : [
        "EventLimiter"
      ],
      "type" : "test"
    },
    {
      "c99name" : "EventLimiter",
      "module_type" : "SwiftTarget",
      "name" : "EventLimiter",
      "path" : "Sources/EventLimiter",
      "product_memberships" : [
        "EventLimiter"
      ],
      "sources" : [
        "Debouncer.swift",
        "Throttler.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.7"
}
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-2":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" 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:808cb2b2a6cec76654a3acbd283c6c2205bc60d2b29562c95b9f5147612f6d32
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.1-latest
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-24593BA9C3E375BF.txt
[3/5] Compiling EventLimiter Debouncer.swift
/host/spi-builder-workspace/Sources/EventLimiter/Debouncer.swift:28:26: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
26 |     func execute(action: @escaping () async -> Void) {
27 |         self.task?.cancel()
28 |         self.task = Task { [dueTime] in
   |                          `- warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
29 |             do {
30 |                 try await Task.sleep(nanoseconds: dueTime)
   :
33 |             }
34 |             guard !Task.isCancelled else { return }
35 |             await action()
   |                   `- note: closure captures 'action' which is accessible to code in the current task
36 |         }
37 |     }
[4/5] Emitting module EventLimiter
[5/5] Compiling EventLimiter Throttler.swift
/host/spi-builder-workspace/Sources/EventLimiter/Throttler.swift:40:14: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
38 |         guard self.task?.isCancelled ?? true else { return }
39 |
40 |         Task {
   |              `- warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
41 |             await action()
   |                   `- note: closure captures 'action' which is accessible to code in the current task
42 |         }
43 |         self.action = nil
/host/spi-builder-workspace/Sources/EventLimiter/Throttler.swift:45:26: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
43 |         self.action = nil
44 |
45 |         self.task = Task { [weak self] in
   |                          `- warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
46 |             guard let self else { return }
   |                       `- note: closure captures 'self' which is accessible to code in the current task
47 |             defer {
48 |                 self.action = nil
Build complete! (8.02s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "EventLimiter",
  "name" : "EventLimiter",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "13.0"
    },
    {
      "name" : "tvos",
      "version" : "13.0"
    },
    {
      "name" : "macos",
      "version" : "10.15"
    },
    {
      "name" : "watchos",
      "version" : "6.0"
    }
  ],
  "products" : [
    {
      "name" : "EventLimiter",
      "targets" : [
        "EventLimiter"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "EventLimiterTests",
      "module_type" : "SwiftTarget",
      "name" : "EventLimiterTests",
      "path" : "Tests/EventLimiterTests",
      "sources" : [
        "DebouncerTests.swift",
        "ThrottlerTests.swift"
      ],
      "target_dependencies" : [
        "EventLimiter"
      ],
      "type" : "test"
    },
    {
      "c99name" : "EventLimiter",
      "module_type" : "SwiftTarget",
      "name" : "EventLimiter",
      "path" : "Sources/EventLimiter",
      "product_memberships" : [
        "EventLimiter"
      ],
      "sources" : [
        "Debouncer.swift",
        "Throttler.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.7"
}
basic-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:808cb2b2a6cec76654a3acbd283c6c2205bc60d2b29562c95b9f5147612f6d32
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.1-latest
Done.