The Swift Package Index logo.Swift Package Index

Build Information

Successful build of Bouncer, reference master (afc6b0), with Swift 6.2 for Linux on 20 Feb 2026 06:56:06 UTC.

Swift 6 data race errors: 0

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4606859-3":/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.2-latest swift build --triple x86_64-unknown-linux-gnu 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.68.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/flint-engine/Bouncer.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/flint-engine/Bouncer
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
HEAD is now at afc6b0c Merge branch 'develop'
Cloned https://github.com/flint-engine/Bouncer.git
Revision (git rev-parse @):
afc6b0cd73ec2e965fc0336fc65b5ca57686dba0
SUCCESS checkout https://github.com/flint-engine/Bouncer.git at master
========================================
Build
========================================
Selected platform:         linux
Swift version:             6.2
Building package at path:  $PWD
https://github.com/flint-engine/Bouncer.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-3":/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.2-latest swift build --triple x86_64-unknown-linux-gnu 2>&1
basic-6.2-latest: Pulling from finestructure/spi-images
Digest: sha256:257b0ae9749b4eea8553a58f7bf60a672611c061e9b845ccfee371e7c1138ce8
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/21] Emitting module Bouncer
/host/spi-builder-workspace/Sources/Bouncer/Option/String+Option.swift:34:5: warning: 'public' modifier is redundant for property declared in a public extension
32 |     /// the string is option name or not by
33 |     /// matching with short and long option name regex.
34 |     public var isOptionName: Bool {
   |     `- warning: 'public' modifier is redundant for property declared in a public extension
35 |         return match(withRegex: shortOptionNameRegex)
36 |             || match(withRegex: longOptionNameRegex)
/host/spi-builder-workspace/Sources/Bouncer/Option/String+Option.swift:42:5: warning: 'public' modifier is redundant for property declared in a public extension
40 |     /// is option name with value or not by matching
41 |     /// with short and long option name with value regex.
42 |     public var isOptionNameWithValue: Bool {
   |     `- warning: 'public' modifier is redundant for property declared in a public extension
43 |         return match(withRegex: shortOptionNameWithValueRegex)
44 |             || match(withRegex: longOptionNameWithValueRegex)
/host/spi-builder-workspace/Sources/Bouncer/Option/String+Option.swift:50:5: warning: 'public' modifier is redundant for instance method declared in a public extension
48 |     ///
49 |     /// - Returns: Option name argument and value if it is in correct format.
50 |     public func optionNameArgumentAndValue() -> (String, String)? {
   |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
51 |         if match(withRegex: shortOptionNameWithValueRegex) {
52 |             let separatorIndex = index(startIndex, offsetBy: 2)
/host/spi-builder-workspace/Sources/Bouncer/Option/String+Regex.swift:36:5: warning: 'public' modifier is redundant for instance method declared in a public extension
34 |     /// - Parameter regex: Regex to test against this string.
35 |     /// - Returns: True if the string matches with regex; otherwise, false.
36 |     public func match(withRegex regex: String) -> Bool {
   |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
37 |         return range(of: regex, options: .regularExpression) == startIndex ..< endIndex
38 |     }
/host/spi-builder-workspace/Sources/Bouncer/OptionValue/OptionValue+Array.swift:35:5: warning: 'public' modifier is redundant for instance method declared in a public extension
33 |     /// - Parameter option: Option to test against this array.
34 |     /// - Returns: Argument value for option.
35 |     public func findArgument(for option: Option) -> String {
   |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
36 |         return findOptionValue(for: option.name)!.value!
37 |     }
/host/spi-builder-workspace/Sources/Bouncer/OptionValue/OptionValue+Array.swift:43:5: warning: 'public' modifier is redundant for instance method declared in a public extension
41 |     /// - Parameter option: Option to test against this array.
42 |     /// - Returns: Argument value for option if the array has; otherwise, nil.
43 |     public func findOptionalArgument(for option: Option) -> String? {
   |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
44 |         return findOptionValue(for: option.name)?.value
45 |     }
/host/spi-builder-workspace/Sources/Bouncer/OptionValue/OptionValue+Array.swift:51:5: warning: 'public' modifier is redundant for instance method declared in a public extension
49 |     /// - Parameter option: Option to test against this array.
50 |     /// - Returns: True if the array has option value for option; otherwise, false.
51 |     public func have(_ option: Option) -> Bool {
   |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
52 |         return findOptionValue(for: option.name) != nil
53 |     }
[5/21] Compiling Bouncer String+Option.swift
/host/spi-builder-workspace/Sources/Bouncer/Option/String+Option.swift:34:5: warning: 'public' modifier is redundant for property declared in a public extension
32 |     /// the string is option name or not by
33 |     /// matching with short and long option name regex.
34 |     public var isOptionName: Bool {
   |     `- warning: 'public' modifier is redundant for property declared in a public extension
35 |         return match(withRegex: shortOptionNameRegex)
36 |             || match(withRegex: longOptionNameRegex)
/host/spi-builder-workspace/Sources/Bouncer/Option/String+Option.swift:42:5: warning: 'public' modifier is redundant for property declared in a public extension
40 |     /// is option name with value or not by matching
41 |     /// with short and long option name with value regex.
42 |     public var isOptionNameWithValue: Bool {
   |     `- warning: 'public' modifier is redundant for property declared in a public extension
43 |         return match(withRegex: shortOptionNameWithValueRegex)
44 |             || match(withRegex: longOptionNameWithValueRegex)
/host/spi-builder-workspace/Sources/Bouncer/Option/String+Option.swift:50:5: warning: 'public' modifier is redundant for instance method declared in a public extension
48 |     ///
49 |     /// - Returns: Option name argument and value if it is in correct format.
50 |     public func optionNameArgumentAndValue() -> (String, String)? {
   |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
51 |         if match(withRegex: shortOptionNameWithValueRegex) {
52 |             let separatorIndex = index(startIndex, offsetBy: 2)
/host/spi-builder-workspace/Sources/Bouncer/Option/String+Regex.swift:36:5: warning: 'public' modifier is redundant for instance method declared in a public extension
34 |     /// - Parameter regex: Regex to test against this string.
35 |     /// - Returns: True if the string matches with regex; otherwise, false.
36 |     public func match(withRegex regex: String) -> Bool {
   |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
37 |         return range(of: regex, options: .regularExpression) == startIndex ..< endIndex
38 |     }
[6/21] Compiling Bouncer String+Regex.swift
/host/spi-builder-workspace/Sources/Bouncer/Option/String+Option.swift:34:5: warning: 'public' modifier is redundant for property declared in a public extension
32 |     /// the string is option name or not by
33 |     /// matching with short and long option name regex.
34 |     public var isOptionName: Bool {
   |     `- warning: 'public' modifier is redundant for property declared in a public extension
35 |         return match(withRegex: shortOptionNameRegex)
36 |             || match(withRegex: longOptionNameRegex)
/host/spi-builder-workspace/Sources/Bouncer/Option/String+Option.swift:42:5: warning: 'public' modifier is redundant for property declared in a public extension
40 |     /// is option name with value or not by matching
41 |     /// with short and long option name with value regex.
42 |     public var isOptionNameWithValue: Bool {
   |     `- warning: 'public' modifier is redundant for property declared in a public extension
43 |         return match(withRegex: shortOptionNameWithValueRegex)
44 |             || match(withRegex: longOptionNameWithValueRegex)
/host/spi-builder-workspace/Sources/Bouncer/Option/String+Option.swift:50:5: warning: 'public' modifier is redundant for instance method declared in a public extension
48 |     ///
49 |     /// - Returns: Option name argument and value if it is in correct format.
50 |     public func optionNameArgumentAndValue() -> (String, String)? {
   |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
51 |         if match(withRegex: shortOptionNameWithValueRegex) {
52 |             let separatorIndex = index(startIndex, offsetBy: 2)
/host/spi-builder-workspace/Sources/Bouncer/Option/String+Regex.swift:36:5: warning: 'public' modifier is redundant for instance method declared in a public extension
34 |     /// - Parameter regex: Regex to test against this string.
35 |     /// - Returns: True if the string matches with regex; otherwise, false.
36 |     public func match(withRegex regex: String) -> Bool {
   |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
37 |         return range(of: regex, options: .regularExpression) == startIndex ..< endIndex
38 |     }
[7/22] Compiling Bouncer Program.swift
[8/22] Compiling Bouncer CommandParsingError.swift
[9/22] Compiling Bouncer OptionArgumentType.swift
[10/22] Compiling Bouncer OptionNameRegex.swift
[11/22] Compiling Bouncer OperandValue+Array.swift
[12/22] Compiling Bouncer Option.swift
[13/22] Compiling Bouncer OptionValue+Array.swift
/host/spi-builder-workspace/Sources/Bouncer/OptionValue/OptionValue+Array.swift:35:5: warning: 'public' modifier is redundant for instance method declared in a public extension
33 |     /// - Parameter option: Option to test against this array.
34 |     /// - Returns: Argument value for option.
35 |     public func findArgument(for option: Option) -> String {
   |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
36 |         return findOptionValue(for: option.name)!.value!
37 |     }
/host/spi-builder-workspace/Sources/Bouncer/OptionValue/OptionValue+Array.swift:43:5: warning: 'public' modifier is redundant for instance method declared in a public extension
41 |     /// - Parameter option: Option to test against this array.
42 |     /// - Returns: Argument value for option if the array has; otherwise, nil.
43 |     public func findOptionalArgument(for option: Option) -> String? {
   |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
44 |         return findOptionValue(for: option.name)?.value
45 |     }
/host/spi-builder-workspace/Sources/Bouncer/OptionValue/OptionValue+Array.swift:51:5: warning: 'public' modifier is redundant for instance method declared in a public extension
49 |     /// - Parameter option: Option to test against this array.
50 |     /// - Returns: True if the array has option value for option; otherwise, false.
51 |     public func have(_ option: Option) -> Bool {
   |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
52 |         return findOptionValue(for: option.name) != nil
53 |     }
[14/22] Compiling Bouncer OptionValue.swift
/host/spi-builder-workspace/Sources/Bouncer/OptionValue/OptionValue+Array.swift:35:5: warning: 'public' modifier is redundant for instance method declared in a public extension
33 |     /// - Parameter option: Option to test against this array.
34 |     /// - Returns: Argument value for option.
35 |     public func findArgument(for option: Option) -> String {
   |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
36 |         return findOptionValue(for: option.name)!.value!
37 |     }
/host/spi-builder-workspace/Sources/Bouncer/OptionValue/OptionValue+Array.swift:43:5: warning: 'public' modifier is redundant for instance method declared in a public extension
41 |     /// - Parameter option: Option to test against this array.
42 |     /// - Returns: Argument value for option if the array has; otherwise, nil.
43 |     public func findOptionalArgument(for option: Option) -> String? {
   |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
44 |         return findOptionValue(for: option.name)?.value
45 |     }
/host/spi-builder-workspace/Sources/Bouncer/OptionValue/OptionValue+Array.swift:51:5: warning: 'public' modifier is redundant for instance method declared in a public extension
49 |     /// - Parameter option: Option to test against this array.
50 |     /// - Returns: True if the array has option value for option; otherwise, false.
51 |     public func have(_ option: Option) -> Bool {
   |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
52 |         return findOptionValue(for: option.name) != nil
53 |     }
[15/22] Compiling Bouncer Command.swift
[16/22] Compiling Bouncer OperandParsingError.swift
[17/22] Compiling Bouncer OperandType.swift
[18/22] Compiling Bouncer OptionParsingError.swift
[19/23] Wrapping AST for Bouncer for debugging
[21/26] Emitting module git_mock
[22/26] Compiling git_mock Init.swift
[23/26] Compiling git_mock main.swift
[24/27] Wrapping AST for git-mock for debugging
[25/27] Write Objects.LinkFileList
[26/27] Linking git-mock
Build complete! (15.94s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "Bouncer",
  "name" : "Bouncer",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "Bouncer",
      "targets" : [
        "Bouncer"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "git-mock",
      "targets" : [
        "git-mock"
      ],
      "type" : {
        "executable" : null
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "git_mock",
      "module_type" : "SwiftTarget",
      "name" : "git-mock",
      "path" : "Sources/git-mock",
      "product_memberships" : [
        "git-mock"
      ],
      "sources" : [
        "init/Init.swift",
        "main.swift"
      ],
      "target_dependencies" : [
        "Bouncer"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "BouncerTests",
      "module_type" : "SwiftTarget",
      "name" : "BouncerTests",
      "path" : "Tests/BouncerTests",
      "sources" : [
        "Command/CommandFindOptionTests.swift",
        "Command/CommandParseArgumentsTests.swift",
        "Command/CommandValidateOperandsTests.swift",
        "Command/CommandValidateOptionValuesTests.swift",
        "Extension/Command+Init.swift",
        "Extension/OperandParsingError+Equatable.swift",
        "Extension/OperandType+Equatable.swift",
        "Extension/Option+Equatable.swift",
        "Extension/OptionParsingError+Equatable.swift",
        "OperandValue/OperandValueArrayTests.swift",
        "Option/OptionCompareWithArgumentTests.swift",
        "Option/OptionNameValidationTests.swift",
        "Option/OptionNameWithValueValidationTests.swift",
        "Option/ParseOptionNameAndValueTests.swift",
        "OptionValue/OptionValueArrayIterateTests.swift",
        "Program/ProgramFindCommandTests.swift",
        "Program/ProgramRunTests.swift",
        "XCTestManifests.swift"
      ],
      "target_dependencies" : [
        "Bouncer"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Bouncer",
      "module_type" : "SwiftTarget",
      "name" : "Bouncer",
      "path" : "Sources/Bouncer",
      "product_memberships" : [
        "Bouncer",
        "git-mock"
      ],
      "sources" : [
        "Command/Command.swift",
        "Command/OperandParsingError.swift",
        "Command/OperandType.swift",
        "Command/OptionParsingError.swift",
        "OperandValue/OperandValue+Array.swift",
        "Option/Option.swift",
        "Option/OptionArgumentType.swift",
        "Option/OptionNameRegex.swift",
        "Option/String+Option.swift",
        "Option/String+Regex.swift",
        "OptionValue/OptionValue+Array.swift",
        "OptionValue/OptionValue.swift",
        "Program/CommandParsingError.swift",
        "Program/Program.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "4.0"
}
basic-6.2-latest: Pulling from finestructure/spi-images
Digest: sha256:257b0ae9749b4eea8553a58f7bf60a672611c061e9b845ccfee371e7c1138ce8
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.2-latest
Done.