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 TimeZones, reference main (03bb9f), with Swift 6.2 (beta) for Android on 18 Jun 2025 04:55:01 UTC.

Swift 6 data race errors: 0

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4606859-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:android-6.2-latest swift build --swift-sdk aarch64-unknown-linux-android28 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/binarybirds/timezones.git
Reference: main
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/binarybirds/timezones
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at 03bb9fb license
Cloned https://github.com/binarybirds/timezones.git
Revision (git rev-parse @):
03bb9fbc72df1be9d6611cb8215db09711ebd378
SUCCESS checkout https://github.com/binarybirds/timezones.git at main
========================================
Build
========================================
Selected platform:         android
Swift version:             6.2
Building package at path:  $PWD
https://github.com/binarybirds/timezones.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:android-6.2-latest swift build --swift-sdk aarch64-unknown-linux-android28 2>&1
android-6.2-latest: Pulling from finestructure/spi-images
Digest: sha256:b7c4a6b4153ff40ef9277e2157e708f835b8eb011095d53bd8db4594eb2b7798
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:android-6.2-latest
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-8C5A4AE7A8CE2BA.txt
[3/6] Compiling TimeZones TimeZone+Abbrevation.swift
/host/spi-builder-workspace/Sources/TimeZone+Abbrevation.swift:13:5: warning: 'public' modifier is redundant for enum declared in a public extension
11 |
12 |     //created from: TimeZone.abbreviationDictionary.keys
13 |     public enum Abbrevation: String {
   |     `- warning: 'public' modifier is redundant for enum declared in a public extension
14 |         case adt
15 |         case akdt
/host/spi-builder-workspace/Sources/TimeZone+Abbrevation.swift:67:5: warning: 'public' modifier is redundant for initializer declared in a public extension
65 |     }
66 |
67 |     public init(abbrevation: TimeZone.Abbrevation) {
   |     `- warning: 'public' modifier is redundant for initializer declared in a public extension
68 |         self.init(abbreviation: abbrevation.rawValue.uppercased())!
69 |     }
[4/6] Emitting module TimeZones
/host/spi-builder-workspace/Sources/TimeZone+Abbrevation.swift:13:5: warning: 'public' modifier is redundant for enum declared in a public extension
11 |
12 |     //created from: TimeZone.abbreviationDictionary.keys
13 |     public enum Abbrevation: String {
   |     `- warning: 'public' modifier is redundant for enum declared in a public extension
14 |         case adt
15 |         case akdt
/host/spi-builder-workspace/Sources/TimeZone+Abbrevation.swift:67:5: warning: 'public' modifier is redundant for initializer declared in a public extension
65 |     }
66 |
67 |     public init(abbrevation: TimeZone.Abbrevation) {
   |     `- warning: 'public' modifier is redundant for initializer declared in a public extension
68 |         self.init(abbreviation: abbrevation.rawValue.uppercased())!
69 |     }
/host/spi-builder-workspace/Sources/TimeZone+Location.swift:24:5: warning: 'public' modifier is redundant for static property declared in a public extension
 22 | public extension TimeZone {
 23 |
 24 |     public static var local: TimeZone {
    |     `- warning: 'public' modifier is redundant for static property declared in a public extension
 25 |         return TimeZone(identifier: NSTimeZone.local.identifier)!
 26 |     }
/host/spi-builder-workspace/Sources/TimeZone+Location.swift:28:5: warning: 'public' modifier is redundant for static property declared in a public extension
 26 |     }
 27 |
 28 |     public static var system: TimeZone {
    |     `- warning: 'public' modifier is redundant for static property declared in a public extension
 29 |         return TimeZone(identifier: NSTimeZone.system.identifier)!
 30 |     }
/host/spi-builder-workspace/Sources/TimeZone+Location.swift:33:5: warning: 'public' modifier is redundant for static property declared in a public extension
 31 |
 32 |     //created from TimeZone.knownTimeZoneIdentifiers
 33 |     public static var knownTimeZoneCoordinates: [String: Coordinate] = [
    |     `- warning: 'public' modifier is redundant for static property declared in a public extension
 34 |         "GMT": Coordinate(latitude: -15.706_518_6, longitude: -47.905_952_3),
 35 |
/host/spi-builder-workspace/Sources/TimeZone+Location.swift:492:5: warning: 'public' modifier is redundant for static property declared in a public extension
490 |
491 |
492 |     public static let GMT: (identifier: String, coordinate: Coordinate) =
    |     `- warning: 'public' modifier is redundant for static property declared in a public extension
493 |             (identifier: "GMT", coordinate: TimeZone.knownTimeZoneCoordinates["GMT"]!)
494 |
[5/6] Compiling TimeZones Coordinate.swift
[6/6] Compiling TimeZones TimeZone+Location.swift
/host/spi-builder-workspace/Sources/TimeZone+Location.swift:24:5: warning: 'public' modifier is redundant for static property declared in a public extension
 22 | public extension TimeZone {
 23 |
 24 |     public static var local: TimeZone {
    |     `- warning: 'public' modifier is redundant for static property declared in a public extension
 25 |         return TimeZone(identifier: NSTimeZone.local.identifier)!
 26 |     }
/host/spi-builder-workspace/Sources/TimeZone+Location.swift:28:5: warning: 'public' modifier is redundant for static property declared in a public extension
 26 |     }
 27 |
 28 |     public static var system: TimeZone {
    |     `- warning: 'public' modifier is redundant for static property declared in a public extension
 29 |         return TimeZone(identifier: NSTimeZone.system.identifier)!
 30 |     }
/host/spi-builder-workspace/Sources/TimeZone+Location.swift:33:5: warning: 'public' modifier is redundant for static property declared in a public extension
 31 |
 32 |     //created from TimeZone.knownTimeZoneIdentifiers
 33 |     public static var knownTimeZoneCoordinates: [String: Coordinate] = [
    |     `- warning: 'public' modifier is redundant for static property declared in a public extension
 34 |         "GMT": Coordinate(latitude: -15.706_518_6, longitude: -47.905_952_3),
 35 |
/host/spi-builder-workspace/Sources/TimeZone+Location.swift:492:5: warning: 'public' modifier is redundant for static property declared in a public extension
490 |
491 |
492 |     public static let GMT: (identifier: String, coordinate: Coordinate) =
    |     `- warning: 'public' modifier is redundant for static property declared in a public extension
493 |             (identifier: "GMT", coordinate: TimeZone.knownTimeZoneCoordinates["GMT"]!)
494 |
Build complete! (14.27s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "TimeZones",
  "name" : "TimeZones",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "TimeZones",
      "targets" : [
        "TimeZones"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "TimeZonesTests",
      "module_type" : "SwiftTarget",
      "name" : "TimeZonesTests",
      "path" : "Tests/TimeZonesTests",
      "sources" : [
        "TimeZonesTests.swift",
        "XCTestManifests.swift"
      ],
      "target_dependencies" : [
        "TimeZones"
      ],
      "type" : "test"
    },
    {
      "c99name" : "TimeZones",
      "module_type" : "SwiftTarget",
      "name" : "TimeZones",
      "path" : "Sources",
      "product_memberships" : [
        "TimeZones"
      ],
      "sources" : [
        "Coordinate.swift",
        "TimeZone+Abbrevation.swift",
        "TimeZone+Location.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "4.2"
}
android-6.2-latest: Pulling from finestructure/spi-images
Digest: sha256:b7c4a6b4153ff40ef9277e2157e708f835b8eb011095d53bd8db4594eb2b7798
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:android-6.2-latest
Done.