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 Vaux, reference master (d6446f), with Swift 6.1 for Wasm on 27 May 2025 15:14:26 UTC.

Swift 6 data race errors: 0

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-3":/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/dokun1/vaux.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/dokun1/vaux
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
HEAD is now at d6446fe Merge pull request #23 from dokun1/public_init
Cloned https://github.com/dokun1/vaux.git
Revision (git rev-parse @):
d6446fe44b301400e3bb789efd6e35ab1b571409
SUCCESS checkout https://github.com/dokun1/vaux.git at master
========================================
Build
========================================
Selected platform:         wasm
Swift version:             6.1
Building package at path:  $PWD
https://github.com/dokun1/vaux.git
https://github.com/dokun1/vaux.git
WARNING: environment variable SUPPRESS_SWIFT_6_FLAGS is not set
{
  "dependencies" : [
  ],
  "manifest_display_name" : "Vaux",
  "name" : "Vaux",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "Vaux",
      "targets" : [
        "Vaux"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "VauxTests",
      "module_type" : "SwiftTarget",
      "name" : "VauxTests",
      "path" : "Tests/VauxTests",
      "sources" : [
        "VauxTableTests.swift",
        "VauxTests.swift",
        "XCTestManifests.swift"
      ],
      "target_dependencies" : [
        "Vaux"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Vaux",
      "module_type" : "SwiftTarget",
      "name" : "Vaux",
      "path" : "Sources/Vaux",
      "product_memberships" : [
        "Vaux"
      ],
      "sources" : [
        "Attributes.swift",
        "Builders.swift",
        "Enums.swift",
        "Errors.swift",
        "FileHelper.swift",
        "HTML/HTML.swift",
        "HTML/HTMLBuilder.swift",
        "HTML/HTMLExtensions.swift",
        "HTML/HTMLNode.swift",
        "HTML/HTMLOutputStream.swift",
        "SVG/SVG.swift",
        "SVG/SVGBuilder.swift",
        "SVG/SVGExtensions.swift",
        "SVG/SVGNode.swift",
        "Vaux.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.1"
}
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-3":/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:7e37457820e5f17452a98118754f345f2619722c485f2db0d8b666940a83afd2
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-24593BA9C3E375BF.txt
[3/17] Compiling Vaux SVGExtensions.swift
[4/17] Compiling Vaux SVGNode.swift
[5/18] Compiling Vaux FileHelper.swift
/host/spi-builder-workspace/Sources/Vaux/FileHelper.swift:24:13: warning: result of call to 'createFile(atPath:contents:attributes:)' is unused
22 |   public class func createFile(_ file: Filepath) -> URL? {
23 |     let manager = FileManager()
24 |     manager.createFile(atPath: "\(file.path)\(file.name).html", contents: nil, attributes: nil)
   |             `- warning: result of call to 'createFile(atPath:contents:attributes:)' is unused
25 |     return URL(fileURLWithPath: "\(file.path)\(file.name).html")
26 |   }
[6/18] Compiling Vaux HTML.swift
/host/spi-builder-workspace/Sources/Vaux/FileHelper.swift:24:13: warning: result of call to 'createFile(atPath:contents:attributes:)' is unused
22 |   public class func createFile(_ file: Filepath) -> URL? {
23 |     let manager = FileManager()
24 |     manager.createFile(atPath: "\(file.path)\(file.name).html", contents: nil, attributes: nil)
   |             `- warning: result of call to 'createFile(atPath:contents:attributes:)' is unused
25 |     return URL(fileURLWithPath: "\(file.path)\(file.name).html")
26 |   }
[7/18] Compiling Vaux SVG.swift
/host/spi-builder-workspace/Sources/Vaux/SVG/SVGBuilder.swift:12:2: warning: '@_functionBuilder' has been renamed to '@resultBuilder'
10 | // MARK: - SVGBuilder
11 | /// A function builder that provides transformations for control flow concepts into SVG components.
12 | @_functionBuilder
   |  `- warning: '@_functionBuilder' has been renamed to '@resultBuilder'
13 | public struct SVGBuilder {
14 |
[8/18] Compiling Vaux SVGBuilder.swift
/host/spi-builder-workspace/Sources/Vaux/SVG/SVGBuilder.swift:12:2: warning: '@_functionBuilder' has been renamed to '@resultBuilder'
10 | // MARK: - SVGBuilder
11 | /// A function builder that provides transformations for control flow concepts into SVG components.
12 | @_functionBuilder
   |  `- warning: '@_functionBuilder' has been renamed to '@resultBuilder'
13 | public struct SVGBuilder {
14 |
[9/18] Compiling Vaux HTMLNode.swift
/host/spi-builder-workspace/Sources/Vaux/HTML/HTMLOutputStream.swift:126:1: warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
124 | }
125 |
126 | extension FileHandle: TextOutputStream {
    | |- warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
127 |   public func write(_ string: String) {
128 |     write(Data(string.utf8))
[10/18] Compiling Vaux HTMLOutputStream.swift
/host/spi-builder-workspace/Sources/Vaux/HTML/HTMLOutputStream.swift:126:1: warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
124 | }
125 |
126 | extension FileHandle: TextOutputStream {
    | |- warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
127 |   public func write(_ string: String) {
128 |     write(Data(string.utf8))
[11/18] Compiling Vaux HTMLBuilder.swift
/host/spi-builder-workspace/Sources/Vaux/HTML/HTMLBuilder.swift:12:2: warning: '@_functionBuilder' has been renamed to '@resultBuilder'
10 | // MARK: - HTMLBuilder
11 | /// A function builder that provides transformations for control flow concepts into HTML components.
12 | @_functionBuilder
   |  `- warning: '@_functionBuilder' has been renamed to '@resultBuilder'
13 | public struct HTMLBuilder {
14 |
[12/18] Compiling Vaux HTMLExtensions.swift
/host/spi-builder-workspace/Sources/Vaux/HTML/HTMLBuilder.swift:12:2: warning: '@_functionBuilder' has been renamed to '@resultBuilder'
10 | // MARK: - HTMLBuilder
11 | /// A function builder that provides transformations for control flow concepts into HTML components.
12 | @_functionBuilder
   |  `- warning: '@_functionBuilder' has been renamed to '@resultBuilder'
13 | public struct HTMLBuilder {
14 |
[13/18] Emitting module Vaux
/host/spi-builder-workspace/Sources/Vaux/HTML/HTMLBuilder.swift:12:2: warning: '@_functionBuilder' has been renamed to '@resultBuilder'
10 | // MARK: - HTMLBuilder
11 | /// A function builder that provides transformations for control flow concepts into HTML components.
12 | @_functionBuilder
   |  `- warning: '@_functionBuilder' has been renamed to '@resultBuilder'
13 | public struct HTMLBuilder {
14 |
/host/spi-builder-workspace/Sources/Vaux/SVG/SVGBuilder.swift:12:2: warning: '@_functionBuilder' has been renamed to '@resultBuilder'
10 | // MARK: - SVGBuilder
11 | /// A function builder that provides transformations for control flow concepts into SVG components.
12 | @_functionBuilder
   |  `- warning: '@_functionBuilder' has been renamed to '@resultBuilder'
13 | public struct SVGBuilder {
14 |
/host/spi-builder-workspace/Sources/Vaux/HTML/HTMLOutputStream.swift:126:1: warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
124 | }
125 |
126 | extension FileHandle: TextOutputStream {
    | |- warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
127 |   public func write(_ string: String) {
128 |     write(Data(string.utf8))
[14/18] Compiling Vaux Enums.swift
[15/18] Compiling Vaux Errors.swift
[16/18] Compiling Vaux Attributes.swift
[17/18] Compiling Vaux Builders.swift
[18/18] Compiling Vaux Vaux.swift
Build complete! (6.92s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "Vaux",
  "name" : "Vaux",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "Vaux",
      "targets" : [
        "Vaux"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "VauxTests",
      "module_type" : "SwiftTarget",
      "name" : "VauxTests",
      "path" : "Tests/VauxTests",
      "sources" : [
        "VauxTableTests.swift",
        "VauxTests.swift",
        "XCTestManifests.swift"
      ],
      "target_dependencies" : [
        "Vaux"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Vaux",
      "module_type" : "SwiftTarget",
      "name" : "Vaux",
      "path" : "Sources/Vaux",
      "product_memberships" : [
        "Vaux"
      ],
      "sources" : [
        "Attributes.swift",
        "Builders.swift",
        "Enums.swift",
        "Errors.swift",
        "FileHelper.swift",
        "HTML/HTML.swift",
        "HTML/HTMLBuilder.swift",
        "HTML/HTMLExtensions.swift",
        "HTML/HTMLNode.swift",
        "HTML/HTMLOutputStream.swift",
        "SVG/SVG.swift",
        "SVG/SVGBuilder.swift",
        "SVG/SVGExtensions.swift",
        "SVG/SVGNode.swift",
        "Vaux.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.1"
}
wasm-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:7e37457820e5f17452a98118754f345f2619722c485f2db0d8b666940a83afd2
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest
Done.