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 ZEGBot, reference 4.2.8 (139ac6), with Swift 6.2 (beta) for Linux on 19 Jun 2025 21:23:35 UTC.

Swift 6 data race errors: 0

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-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/shaneqi/zegbot.git
Reference: 4.2.8
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/shaneqi/zegbot
 * tag               4.2.8      -> FETCH_HEAD
HEAD is now at 139ac62 Lower swift requirement to 5.0.
Cloned https://github.com/shaneqi/zegbot.git
Revision (git rev-parse @):
139ac628fc415ae44edb5f36df218097e63e8113
SUCCESS checkout https://github.com/shaneqi/zegbot.git at 4.2.8
========================================
Build
========================================
Selected platform:         linux
Swift version:             6.2
Building package at path:  $PWD
https://github.com/shaneqi/zegbot.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-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/7] Write sources
[2/7] Write swift-version-24593BA9C3E375BF.txt
[4/16] Compiling ZEGBot Utilities.swift
[5/16] Compiling ZEGBot Updating.swift
[6/17] Emitting module ZEGBot
[7/17] Compiling ZEGBot Methods.swift
[8/17] Compiling ZEGBot Extensions.swift
[9/17] Compiling ZEGBot HelperTypes.swift
[10/17] Compiling ZEGBot ZEGBot.swift
/host/spi-builder-workspace/Sources/ZEGBot.swift:37:6: warning: mutation of captured var 'encounterError' in concurrently-executing code; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
35 | 			with: URL(string: urlPrefix + "getupdates?timeout=60&offset=\(offset)")!) { data, _, error in
36 | 				guard let data = data else {
37 | 					encounterError = error!
   |      `- warning: mutation of captured var 'encounterError' in concurrently-executing code; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
38 | 					semaphore.signal()
39 | 					return
/host/spi-builder-workspace/Sources/ZEGBot.swift:50:8: warning: mutation of captured var 'offset' in concurrently-executing code; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
48 | 								.callbackQuery(updateId: let updateId, _),
49 | 								.unimplemented(updateId: let updateId):
50 | 							offset = updateId + 1
   |        `- warning: mutation of captured var 'offset' in concurrently-executing code; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
51 | 						}
52 | 					}
/host/spi-builder-workspace/Sources/ZEGBot.swift:55:6: warning: mutation of captured var 'encounterError' in concurrently-executing code; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
53 | 					handler(updates, self)
54 | 				case .failure(let error):
55 | 					encounterError = error
   |      `- warning: mutation of captured var 'encounterError' in concurrently-executing code; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
56 | 				}
57 | 				semaphore.signal()
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
[11/17] Compiling ZEGBot Sending.swift
[12/17] Compiling ZEGBot Network.swift
/host/spi-builder-workspace/Sources/Network.swift:49:5: warning: capture of non-Sendable type 'Output.Type' in an isolated closure; this is an error in the Swift 6 language mode
 47 | 		let task = URLSession(configuration: .default).dataTask(with: request) { data, _, error in
 48 | 			if let data = data {
 49 | 				result = Result<Output>.decode(from: data)
    |     `- warning: capture of non-Sendable type 'Output.Type' in an isolated closure; this is an error in the Swift 6 language mode
 50 | 			} else {
 51 | 				result = .failure(error!)
/host/spi-builder-workspace/Sources/Network.swift:46:7: warning: capture of non-Sendable type 'Output.Type' in an isolated closure; this is an error in the Swift 6 language mode
 44 | 		// Perform the request.
 45 | 		let semaphore = DispatchSemaphore(value: 0)
 46 | 		var result: Result<Output>?
    |       `- warning: capture of non-Sendable type 'Output.Type' in an isolated closure; this is an error in the Swift 6 language mode
 47 | 		let task = URLSession(configuration: .default).dataTask(with: request) { data, _, error in
 48 | 			if let data = data {
/host/spi-builder-workspace/Sources/Network.swift:49:5: warning: mutation of captured var 'result' in concurrently-executing code; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
 47 | 		let task = URLSession(configuration: .default).dataTask(with: request) { data, _, error in
 48 | 			if let data = data {
 49 | 				result = Result<Output>.decode(from: data)
    |     `- warning: mutation of captured var 'result' in concurrently-executing code; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
 50 | 			} else {
 51 | 				result = .failure(error!)
/host/spi-builder-workspace/Sources/Network.swift:51:5: warning: mutation of captured var 'result' in concurrently-executing code; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
 49 | 				result = Result<Output>.decode(from: data)
 50 | 			} else {
 51 | 				result = .failure(error!)
    |     `- warning: mutation of captured var 'result' in concurrently-executing code; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
 52 | 			}
 53 | 			semaphore.signal()
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
[13/17] Compiling ZEGBot Types.swift
[14/18] Wrapping AST for ZEGBot for debugging
[16/20] Compiling ZEGBotExample main.swift
[17/20] Emitting module ZEGBotExample
[18/21] Wrapping AST for ZEGBotExample for debugging
[19/21] Write Objects.LinkFileList
[20/21] Linking ZEGBotExample
Build complete! (18.25s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "ZEGBot",
  "name" : "ZEGBot",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "ZEGBot",
      "targets" : [
        "ZEGBot"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "ZEGBotExample",
      "targets" : [
        "ZEGBotExample"
      ],
      "type" : {
        "executable" : null
      }
    }
  ],
  "swift_languages_versions" : [
    "5"
  ],
  "targets" : [
    {
      "c99name" : "ZEGBotTests",
      "module_type" : "SwiftTarget",
      "name" : "ZEGBotTests",
      "path" : "Tests/ZEGBotTests",
      "sources" : [
        "ZEGBotTests.swift"
      ],
      "target_dependencies" : [
        "ZEGBot"
      ],
      "type" : "test"
    },
    {
      "c99name" : "ZEGBotExample",
      "module_type" : "SwiftTarget",
      "name" : "ZEGBotExample",
      "path" : "Example",
      "product_memberships" : [
        "ZEGBotExample"
      ],
      "sources" : [
        "main.swift"
      ],
      "target_dependencies" : [
        "ZEGBot"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "ZEGBot",
      "module_type" : "SwiftTarget",
      "name" : "ZEGBot",
      "path" : "Sources",
      "product_memberships" : [
        "ZEGBot",
        "ZEGBotExample"
      ],
      "sources" : [
        "Extensions.swift",
        "HelperTypes.swift",
        "Methods.swift",
        "Network.swift",
        "Sending.swift",
        "Types.swift",
        "Updating.swift",
        "Utilities.swift",
        "ZEGBot.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.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.