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 Elapse, reference master (8584c7), with Swift 6.2 (beta) for Linux on 18 Jun 2025 02:15:41 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: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/yshrkt/Elapse.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/yshrkt/Elapse
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
HEAD is now at 8584c70 Fixes podspec
Cloned https://github.com/yshrkt/Elapse.git
Revision (git rev-parse @):
8584c70cac421b946a6670489ca263d5ee27b118
SUCCESS checkout https://github.com/yshrkt/Elapse.git at master
========================================
Build
========================================
Selected platform:         linux
Swift version:             6.2
Building package at path:  $PWD
https://github.com/yshrkt/Elapse.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-3":/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/5] Write sources
[1/5] Write swift-version-24593BA9C3E375BF.txt
[3/7] Compiling Elapse Elapse.swift
/host/spi-builder-workspace/Sources/Elapse.swift:91:5: warning: 'public' modifier is redundant for property declared in a public extension
 89 |
 90 | public extension Int {
 91 |     public var days: TimeInterval {
    |     `- warning: 'public' modifier is redundant for property declared in a public extension
 92 |         return Elapse.Metric.day.convert(Int64(self))
 93 |     }
/host/spi-builder-workspace/Sources/Elapse.swift:95:5: warning: 'public' modifier is redundant for property declared in a public extension
 93 |     }
 94 |
 95 |     public var hours: TimeInterval {
    |     `- warning: 'public' modifier is redundant for property declared in a public extension
 96 |         return Elapse.Metric.hour.convert(Int64(self))
 97 |     }
/host/spi-builder-workspace/Sources/Elapse.swift:99:5: warning: 'public' modifier is redundant for property declared in a public extension
 97 |     }
 98 |
 99 |     public var minutes: TimeInterval {
    |     `- warning: 'public' modifier is redundant for property declared in a public extension
100 |         return Elapse.Metric.minute.convert(Int64(self))
101 |     }
/host/spi-builder-workspace/Sources/Elapse.swift:103:5: warning: 'public' modifier is redundant for property declared in a public extension
101 |     }
102 |
103 |     public var seconds: TimeInterval {
    |     `- warning: 'public' modifier is redundant for property declared in a public extension
104 |         return Elapse.Metric.second.convert(Int64(self))
105 |     }
/host/spi-builder-workspace/Sources/Elapse.swift:107:5: warning: 'public' modifier is redundant for property declared in a public extension
105 |     }
106 |
107 |     public var milliseconds: TimeInterval {
    |     `- warning: 'public' modifier is redundant for property declared in a public extension
108 |         return Elapse.Metric.millisecond.convert(Int64(self))
109 |     }
/host/spi-builder-workspace/Sources/Elapse.swift:115:5: warning: 'public' modifier is redundant for instance method declared in a public extension
113 | public extension TimeInterval {
114 |
115 |     public func components(of units: Elapse.Units,
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
116 |                            roundingMode: Elapse.RoundingMode = .floor) -> Elapse.Components {
117 |         let time = { (time: TimeInterval) -> TimeInterval in
[4/7] Emitting module Elapse
/host/spi-builder-workspace/Sources/Elapse.swift:91:5: warning: 'public' modifier is redundant for property declared in a public extension
 89 |
 90 | public extension Int {
 91 |     public var days: TimeInterval {
    |     `- warning: 'public' modifier is redundant for property declared in a public extension
 92 |         return Elapse.Metric.day.convert(Int64(self))
 93 |     }
/host/spi-builder-workspace/Sources/Elapse.swift:95:5: warning: 'public' modifier is redundant for property declared in a public extension
 93 |     }
 94 |
 95 |     public var hours: TimeInterval {
    |     `- warning: 'public' modifier is redundant for property declared in a public extension
 96 |         return Elapse.Metric.hour.convert(Int64(self))
 97 |     }
/host/spi-builder-workspace/Sources/Elapse.swift:99:5: warning: 'public' modifier is redundant for property declared in a public extension
 97 |     }
 98 |
 99 |     public var minutes: TimeInterval {
    |     `- warning: 'public' modifier is redundant for property declared in a public extension
100 |         return Elapse.Metric.minute.convert(Int64(self))
101 |     }
/host/spi-builder-workspace/Sources/Elapse.swift:103:5: warning: 'public' modifier is redundant for property declared in a public extension
101 |     }
102 |
103 |     public var seconds: TimeInterval {
    |     `- warning: 'public' modifier is redundant for property declared in a public extension
104 |         return Elapse.Metric.second.convert(Int64(self))
105 |     }
/host/spi-builder-workspace/Sources/Elapse.swift:107:5: warning: 'public' modifier is redundant for property declared in a public extension
105 |     }
106 |
107 |     public var milliseconds: TimeInterval {
    |     `- warning: 'public' modifier is redundant for property declared in a public extension
108 |         return Elapse.Metric.millisecond.convert(Int64(self))
109 |     }
/host/spi-builder-workspace/Sources/Elapse.swift:115:5: warning: 'public' modifier is redundant for instance method declared in a public extension
113 | public extension TimeInterval {
114 |
115 |     public func components(of units: Elapse.Units,
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
116 |                            roundingMode: Elapse.RoundingMode = .floor) -> Elapse.Components {
117 |         let time = { (time: TimeInterval) -> TimeInterval in
[5/8] Wrapping AST for Elapse for debugging
[6/8] Write Objects.LinkFileList
[7/8] Linking libElapse.so
Build complete! (10.83s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "Elapse",
  "name" : "Elapse",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "Elapse",
      "targets" : [
        "Elapse"
      ],
      "type" : {
        "library" : [
          "dynamic"
        ]
      }
    }
  ],
  "swift_languages_versions" : [
    "4",
    "4.2"
  ],
  "targets" : [
    {
      "c99name" : "ElapseTests",
      "module_type" : "SwiftTarget",
      "name" : "ElapseTests",
      "path" : "Tests",
      "sources" : [
        "ElapseTests/ElapseTests.swift",
        "LinuxMain.swift"
      ],
      "target_dependencies" : [
        "Elapse"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Elapse",
      "module_type" : "SwiftTarget",
      "name" : "Elapse",
      "path" : "Sources",
      "product_memberships" : [
        "Elapse"
      ],
      "sources" : [
        "Elapse.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "4.2"
}
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.