The Swift Package Index logo.Swift Package Index

Build Information

Successful build of CommandCougar, reference master (2f209d), with Swift 6.3 for Wasm on 21 Apr 2026 07:42:46 UTC.

Swift 6 data race errors: 0

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:wasm-6.3-latest swift build --swift-sdk swift-6.3-RELEASE_wasm 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/hypertalk/CommandCougar.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/hypertalk/CommandCougar
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
HEAD is now at 2f209d1 Merge pull request #7 from mrlynn/master
Cloned https://github.com/hypertalk/CommandCougar.git
Revision (git rev-parse @):
2f209d174f07f9c19e80413d53e952a67b4c40eb
SUCCESS checkout https://github.com/hypertalk/CommandCougar.git at master
========================================
Build
========================================
Selected platform:         wasm
Swift version:             6.3
Building package at path:  $PWD
https://github.com/hypertalk/CommandCougar.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:wasm-6.3-latest swift build --swift-sdk swift-6.3-RELEASE_wasm 2>&1
wasm-6.3-latest: Pulling from swiftpackageindex/spi-images
Digest: sha256:d69f4e7582c319245442d62a08b2d7c7fd5a0c0c69f5d2ef11d1530cd8d3329b
Status: Image is up to date for registry.gitlab.com/swiftpackageindex/spi-images:wasm-6.3-latest
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-24593BA9C3E375BF.txt
[3/13] Compiling CommandCougar FlagIndexable.swift
/host/spi-builder-workspace/Sources/CommandCougar/FlagIndexable.swift:42:2: warning: 'public' modifier is redundant for subscript declared in a public extension
40 | 	///
41 | 	/// - Parameter flagName: The flagName
42 | 	public subscript (flagName: String) -> Element? {
   |  `- warning: 'public' modifier is redundant for subscript declared in a public extension
43 | 		get {
44 | 			return first(where: { $0.flag == flagName })
/host/spi-builder-workspace/Sources/CommandCougar/FlagIndexable.swift:60:2: warning: 'public' modifier is redundant for subscript declared in a public extension
58 | 	///
59 | 	/// - Parameter flag: The flag
60 | 	public subscript (flag: Option.Flag) -> Element? {
   |  `- warning: 'public' modifier is redundant for subscript declared in a public extension
61 | 		get {
62 | 			return first(where: { $0.flag == flag })
/host/spi-builder-workspace/Sources/CommandCougar/FlagIndexable.swift:77:2: warning: 'public' modifier is redundant for subscript declared in a public extension
75 | 	///
76 | 	/// - Parameter flag: The flag
77 | 	public subscript (option: FlagIndexable) -> Element? {
   |  `- warning: 'public' modifier is redundant for subscript declared in a public extension
78 | 		get {
79 | 			return first(where: { $0.flag == option.flag })
/host/spi-builder-workspace/Sources/CommandCougar/FlagIndexable.swift:88:2: warning: 'public' modifier is redundant for instance method declared in a public extension
86 | 	/// - Parameter element: The FlagIndexable we are looking for
87 | 	/// - Returns: True if found
88 | 	public func contains(_ element: FlagIndexable) -> Bool {
   |  `- warning: 'public' modifier is redundant for instance method declared in a public extension
89 | 		return contains(where: { $0.flag == element.flag })
90 | 	}
[4/14] Compiling CommandCougar OptionEvaluation.swift
[5/14] Compiling CommandCougar CommandEvaluation.swift
/host/spi-builder-workspace/Sources/CommandCougar/CommandIndexable.swift:34:2: warning: 'public' modifier is redundant for subscript declared in a public extension
32 |
33 | public extension Array where Element: CommandIndexable {
34 | 	public subscript(commandName: String) -> Element? {
   |  `- warning: 'public' modifier is redundant for subscript declared in a public extension
35 | 		get {
36 | 			return first(where: { $0.name == commandName })
[6/14] Compiling CommandCougar CommandIndexable.swift
/host/spi-builder-workspace/Sources/CommandCougar/CommandIndexable.swift:34:2: warning: 'public' modifier is redundant for subscript declared in a public extension
32 |
33 | public extension Array where Element: CommandIndexable {
34 | 	public subscript(commandName: String) -> Element? {
   |  `- warning: 'public' modifier is redundant for subscript declared in a public extension
35 | 		get {
36 | 			return first(where: { $0.name == commandName })
[7/14] Compiling CommandCougar Command.swift
[8/14] Compiling CommandCougar CommandCougar.swift
[9/14] Emitting module CommandCougar
/host/spi-builder-workspace/Sources/CommandCougar/CommandIndexable.swift:34:2: warning: 'public' modifier is redundant for subscript declared in a public extension
32 |
33 | public extension Array where Element: CommandIndexable {
34 | 	public subscript(commandName: String) -> Element? {
   |  `- warning: 'public' modifier is redundant for subscript declared in a public extension
35 | 		get {
36 | 			return first(where: { $0.name == commandName })
/host/spi-builder-workspace/Sources/CommandCougar/Extensions.swift:31:2: warning: 'internal' modifier is redundant for property declared in an internal extension
29 |
30 | 	/// The string value of self
31 | 	internal var asString: String {
   |  `- warning: 'internal' modifier is redundant for property declared in an internal extension
32 | 		return String(self)
33 | 	}
/host/spi-builder-workspace/Sources/CommandCougar/Extensions.swift:39:2: warning: 'internal' modifier is redundant for property declared in an internal extension
37 |
38 | 	/// The string value of self
39 | 	internal var asString: String {
   |  `- warning: 'internal' modifier is redundant for property declared in an internal extension
40 | 		return String(self)
41 | 	}
/host/spi-builder-workspace/Sources/CommandCougar/Extensions.swift:47:2: warning: 'internal' modifier is redundant for property declared in an internal extension
45 |
46 | 	/// The second element in the Collection
47 | 	internal var second: Self.Iterator.Element? {
   |  `- warning: 'internal' modifier is redundant for property declared in an internal extension
48 | 		var a = self.makeIterator()
49 | 		let _ = a.next()
/host/spi-builder-workspace/Sources/CommandCougar/Extensions.swift:54:2: warning: 'internal' modifier is redundant for property declared in an internal extension
52 |
53 | 	/// The third element in the Collection
54 | 	internal var third: Self.Iterator.Element? {
   |  `- warning: 'internal' modifier is redundant for property declared in an internal extension
55 | 		var a = self.makeIterator()
56 | 		let _ = a.next()
/host/spi-builder-workspace/Sources/CommandCougar/Flag.swift:35:2: warning: 'public' modifier is redundant for enum declared in a public extension
33 | 	/// - long: A long entry would be --verbose
34 | 	/// - both: Both flags are allowed
35 | 	public enum Flag: Equatable, CustomStringConvertible {
   |  `- warning: 'public' modifier is redundant for enum declared in a public extension
36 | 		case short(String)
37 | 		case long(String)
/host/spi-builder-workspace/Sources/CommandCougar/FlagIndexable.swift:42:2: warning: 'public' modifier is redundant for subscript declared in a public extension
40 | 	///
41 | 	/// - Parameter flagName: The flagName
42 | 	public subscript (flagName: String) -> Element? {
   |  `- warning: 'public' modifier is redundant for subscript declared in a public extension
43 | 		get {
44 | 			return first(where: { $0.flag == flagName })
/host/spi-builder-workspace/Sources/CommandCougar/FlagIndexable.swift:60:2: warning: 'public' modifier is redundant for subscript declared in a public extension
58 | 	///
59 | 	/// - Parameter flag: The flag
60 | 	public subscript (flag: Option.Flag) -> Element? {
   |  `- warning: 'public' modifier is redundant for subscript declared in a public extension
61 | 		get {
62 | 			return first(where: { $0.flag == flag })
/host/spi-builder-workspace/Sources/CommandCougar/FlagIndexable.swift:77:2: warning: 'public' modifier is redundant for subscript declared in a public extension
75 | 	///
76 | 	/// - Parameter flag: The flag
77 | 	public subscript (option: FlagIndexable) -> Element? {
   |  `- warning: 'public' modifier is redundant for subscript declared in a public extension
78 | 		get {
79 | 			return first(where: { $0.flag == option.flag })
/host/spi-builder-workspace/Sources/CommandCougar/FlagIndexable.swift:88:2: warning: 'public' modifier is redundant for instance method declared in a public extension
86 | 	/// - Parameter element: The FlagIndexable we are looking for
87 | 	/// - Returns: True if found
88 | 	public func contains(_ element: FlagIndexable) -> Bool {
   |  `- warning: 'public' modifier is redundant for instance method declared in a public extension
89 | 		return contains(where: { $0.flag == element.flag })
90 | 	}
[10/14] Compiling CommandCougar Extensions.swift
/host/spi-builder-workspace/Sources/CommandCougar/Extensions.swift:31:2: warning: 'internal' modifier is redundant for property declared in an internal extension
29 |
30 | 	/// The string value of self
31 | 	internal var asString: String {
   |  `- warning: 'internal' modifier is redundant for property declared in an internal extension
32 | 		return String(self)
33 | 	}
/host/spi-builder-workspace/Sources/CommandCougar/Extensions.swift:39:2: warning: 'internal' modifier is redundant for property declared in an internal extension
37 |
38 | 	/// The string value of self
39 | 	internal var asString: String {
   |  `- warning: 'internal' modifier is redundant for property declared in an internal extension
40 | 		return String(self)
41 | 	}
/host/spi-builder-workspace/Sources/CommandCougar/Extensions.swift:47:2: warning: 'internal' modifier is redundant for property declared in an internal extension
45 |
46 | 	/// The second element in the Collection
47 | 	internal var second: Self.Iterator.Element? {
   |  `- warning: 'internal' modifier is redundant for property declared in an internal extension
48 | 		var a = self.makeIterator()
49 | 		let _ = a.next()
/host/spi-builder-workspace/Sources/CommandCougar/Extensions.swift:54:2: warning: 'internal' modifier is redundant for property declared in an internal extension
52 |
53 | 	/// The third element in the Collection
54 | 	internal var third: Self.Iterator.Element? {
   |  `- warning: 'internal' modifier is redundant for property declared in an internal extension
55 | 		var a = self.makeIterator()
56 | 		let _ = a.next()
/host/spi-builder-workspace/Sources/CommandCougar/Flag.swift:35:2: warning: 'public' modifier is redundant for enum declared in a public extension
33 | 	/// - long: A long entry would be --verbose
34 | 	/// - both: Both flags are allowed
35 | 	public enum Flag: Equatable, CustomStringConvertible {
   |  `- warning: 'public' modifier is redundant for enum declared in a public extension
36 | 		case short(String)
37 | 		case long(String)
[11/14] Compiling CommandCougar Flag.swift
/host/spi-builder-workspace/Sources/CommandCougar/Extensions.swift:31:2: warning: 'internal' modifier is redundant for property declared in an internal extension
29 |
30 | 	/// The string value of self
31 | 	internal var asString: String {
   |  `- warning: 'internal' modifier is redundant for property declared in an internal extension
32 | 		return String(self)
33 | 	}
/host/spi-builder-workspace/Sources/CommandCougar/Extensions.swift:39:2: warning: 'internal' modifier is redundant for property declared in an internal extension
37 |
38 | 	/// The string value of self
39 | 	internal var asString: String {
   |  `- warning: 'internal' modifier is redundant for property declared in an internal extension
40 | 		return String(self)
41 | 	}
/host/spi-builder-workspace/Sources/CommandCougar/Extensions.swift:47:2: warning: 'internal' modifier is redundant for property declared in an internal extension
45 |
46 | 	/// The second element in the Collection
47 | 	internal var second: Self.Iterator.Element? {
   |  `- warning: 'internal' modifier is redundant for property declared in an internal extension
48 | 		var a = self.makeIterator()
49 | 		let _ = a.next()
/host/spi-builder-workspace/Sources/CommandCougar/Extensions.swift:54:2: warning: 'internal' modifier is redundant for property declared in an internal extension
52 |
53 | 	/// The third element in the Collection
54 | 	internal var third: Self.Iterator.Element? {
   |  `- warning: 'internal' modifier is redundant for property declared in an internal extension
55 | 		var a = self.makeIterator()
56 | 		let _ = a.next()
/host/spi-builder-workspace/Sources/CommandCougar/Flag.swift:35:2: warning: 'public' modifier is redundant for enum declared in a public extension
33 | 	/// - long: A long entry would be --verbose
34 | 	/// - both: Both flags are allowed
35 | 	public enum Flag: Equatable, CustomStringConvertible {
   |  `- warning: 'public' modifier is redundant for enum declared in a public extension
36 | 		case short(String)
37 | 		case long(String)
[12/14] Compiling CommandCougar ParameterEvaluation.swift
[13/14] Compiling CommandCougar Parameter.swift
[14/14] Compiling CommandCougar Option.swift
Build complete! (8.34s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "CommandCougar",
  "name" : "CommandCougar",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "CommandCougar",
      "targets" : [
        "CommandCougar"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "CommandCougarTests",
      "module_type" : "SwiftTarget",
      "name" : "CommandCougarTests",
      "path" : "Tests/CommandCougarTests",
      "sources" : [
        "CommandCougarTests.swift"
      ],
      "target_dependencies" : [
        "CommandCougar"
      ],
      "type" : "test"
    },
    {
      "c99name" : "CommandCougar",
      "module_type" : "SwiftTarget",
      "name" : "CommandCougar",
      "path" : "Sources/CommandCougar",
      "product_memberships" : [
        "CommandCougar"
      ],
      "sources" : [
        "Command.swift",
        "CommandCougar.swift",
        "CommandEvaluation.swift",
        "CommandIndexable.swift",
        "Extensions.swift",
        "Flag.swift",
        "FlagIndexable.swift",
        "Option.swift",
        "OptionEvaluation.swift",
        "Parameter.swift",
        "ParameterEvaluation.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "4.0"
}
wasm-6.3-latest: Pulling from swiftpackageindex/spi-images
Digest: sha256:d69f4e7582c319245442d62a08b2d7c7fd5a0c0c69f5d2ef11d1530cd8d3329b
Status: Image is up to date for registry.gitlab.com/swiftpackageindex/spi-images:wasm-6.3-latest
Done.