The Swift Package Index logo.Swift Package Index

Track the adoption of Swift 6 strict concurrency checks for data race safety. How many packages are Ready for Swift 6?

Build Information

Failed to build ZodiacKit, reference 3.0.2 (85c008), with Swift 5.10 for Linux on 15 Apr 2025 04:13:55 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4606859-2":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-5.10-latest swift build --triple x86_64-unknown-linux-gnu 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.60.1
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/markbattistella/ZodiacKit.git
Reference: 3.0.2
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/markbattistella/ZodiacKit
 * tag               3.0.2      -> FETCH_HEAD
HEAD is now at 85c0084 2025-04-15 - README fix
Cloned https://github.com/markbattistella/ZodiacKit.git
Revision (git rev-parse @):
85c0084adbd7fbd1e902656380bbc28e4daecd4a
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/markbattistella/ZodiacKit.git at 3.0.2
========================================
Build
========================================
Selected platform:         linux
Swift version:             5.10
Building package at path:  $PWD
https://github.com/markbattistella/ZodiacKit.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-2":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-5.10-latest swift build --triple x86_64-unknown-linux-gnu 2>&1
basic-5.10-latest: Pulling from finestructure/spi-images
Digest: sha256:616ef225d0085997f26355ad9695b1159b91f6187a43f9ff135cb59d096bc97d
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-5.10-latest
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-24593BA9C3E375BF.txt
error: emit-module command failed with exit code 1 (use -v to see invocation)
[3/23] Emitting module ZodiacKit
/host/spi-builder-workspace/Sources/ZodiacKit/Extensions/AgnosticColor+Ext.swift:20:11: error: cannot find type 'AgnosticColor' in scope
extension AgnosticColor {
          ^~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/ZodiacKit/Extensions/AgnosticColor+Ext.swift:48:16: error: cannot find type 'CGFloat' in scope
    let alpha: CGFloat
               ^~~~~~~
/host/spi-builder-workspace/Sources/ZodiacKit/Extensions/AgnosticColor+Ext.swift:51:14: error: cannot find type 'CGFloat' in scope
    let red: CGFloat
             ^~~~~~~
/host/spi-builder-workspace/Sources/ZodiacKit/Extensions/AgnosticColor+Ext.swift:54:16: error: cannot find type 'CGFloat' in scope
    let green: CGFloat
               ^~~~~~~
/host/spi-builder-workspace/Sources/ZodiacKit/Extensions/AgnosticColor+Ext.swift:57:15: error: cannot find type 'CGFloat' in scope
    let blue: CGFloat
              ^~~~~~~
/host/spi-builder-workspace/Sources/ZodiacKit/Extensions/Calendar+Ext.swift:15:16: warning: static property 'gregorian' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let gregorian = Calendar(identifier: .gregorian).settingGMT()
               ^
/host/spi-builder-workspace/Sources/ZodiacKit/Services/ZodiacService.swift:18:6: error: unknown attribute 'Published'
    @Published public private(set) var zodiacs: [Zodiac] = []
     ^
/host/spi-builder-workspace/Sources/ZodiacKit/Services/ZodiacService.swift:21:6: error: unknown attribute 'Published'
    @Published public private(set) var validationError: ZodiacError? = nil
     ^
/host/spi-builder-workspace/Sources/ZodiacKit/Services/ZodiacService.swift:15:35: error: cannot find type 'ObservableObject' in scope
public final class ZodiacService: ObservableObject {
                                  ^~~~~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/ZodiacKit/Zodiacs/Chinese.swift:76:23: error: cannot find type 'AgnosticColor' in scope
    public var color: AgnosticColor { .init(hex: colorHEX) ?? .clear }
                      ^~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/ZodiacKit/Zodiacs/Western.swift:102:23: error: cannot find type 'AgnosticColor' in scope
    public var color: AgnosticColor { .init(hex: colorHEX) ?? .clear }
                      ^~~~~~~~~~~~~
[4/25] Compiling ZodiacKit AgnosticColor+Ext.swift
/host/spi-builder-workspace/Sources/ZodiacKit/Extensions/AgnosticColor+Ext.swift:20:11: error: cannot find type 'AgnosticColor' in scope
extension AgnosticColor {
          ^~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/ZodiacKit/Extensions/AgnosticColor+Ext.swift:48:16: error: cannot find type 'CGFloat' in scope
    let alpha: CGFloat
               ^~~~~~~
/host/spi-builder-workspace/Sources/ZodiacKit/Extensions/AgnosticColor+Ext.swift:51:14: error: cannot find type 'CGFloat' in scope
    let red: CGFloat
             ^~~~~~~
/host/spi-builder-workspace/Sources/ZodiacKit/Extensions/AgnosticColor+Ext.swift:54:16: error: cannot find type 'CGFloat' in scope
    let green: CGFloat
               ^~~~~~~
/host/spi-builder-workspace/Sources/ZodiacKit/Extensions/AgnosticColor+Ext.swift:57:15: error: cannot find type 'CGFloat' in scope
    let blue: CGFloat
              ^~~~~~~
/host/spi-builder-workspace/Sources/ZodiacKit/Extensions/AgnosticColor+Ext.swift:80:23: error: cannot find 'Scanner' in scope
        let scanner = Scanner(string: hexString)
                      ^~~~~~~
/host/spi-builder-workspace/Sources/ZodiacKit/Extensions/AgnosticColor+Ext.swift:84:62: error: cannot find type 'CGFloat' in scope
        func normalizeColorComponent(_ component: UInt64) -> CGFloat {
                                                             ^~~~~~~
/host/spi-builder-workspace/Sources/ZodiacKit/Extensions/Calendar+Ext.swift:15:16: warning: static property 'gregorian' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let gregorian = Calendar(identifier: .gregorian).settingGMT()
               ^
[5/25] Compiling ZodiacKit Calendar+Ext.swift
/host/spi-builder-workspace/Sources/ZodiacKit/Extensions/AgnosticColor+Ext.swift:20:11: error: cannot find type 'AgnosticColor' in scope
extension AgnosticColor {
          ^~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/ZodiacKit/Extensions/AgnosticColor+Ext.swift:48:16: error: cannot find type 'CGFloat' in scope
    let alpha: CGFloat
               ^~~~~~~
/host/spi-builder-workspace/Sources/ZodiacKit/Extensions/AgnosticColor+Ext.swift:51:14: error: cannot find type 'CGFloat' in scope
    let red: CGFloat
             ^~~~~~~
/host/spi-builder-workspace/Sources/ZodiacKit/Extensions/AgnosticColor+Ext.swift:54:16: error: cannot find type 'CGFloat' in scope
    let green: CGFloat
               ^~~~~~~
/host/spi-builder-workspace/Sources/ZodiacKit/Extensions/AgnosticColor+Ext.swift:57:15: error: cannot find type 'CGFloat' in scope
    let blue: CGFloat
              ^~~~~~~
/host/spi-builder-workspace/Sources/ZodiacKit/Extensions/AgnosticColor+Ext.swift:80:23: error: cannot find 'Scanner' in scope
        let scanner = Scanner(string: hexString)
                      ^~~~~~~
/host/spi-builder-workspace/Sources/ZodiacKit/Extensions/AgnosticColor+Ext.swift:84:62: error: cannot find type 'CGFloat' in scope
        func normalizeColorComponent(_ component: UInt64) -> CGFloat {
                                                             ^~~~~~~
/host/spi-builder-workspace/Sources/ZodiacKit/Extensions/Calendar+Ext.swift:15:16: warning: static property 'gregorian' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let gregorian = Calendar(identifier: .gregorian).settingGMT()
               ^
[6/25] Compiling ZodiacKit Date+Ext.swift
/host/spi-builder-workspace/Sources/ZodiacKit/Extensions/AgnosticColor+Ext.swift:20:11: error: cannot find type 'AgnosticColor' in scope
extension AgnosticColor {
          ^~~~~~~~~~~~~
/host/spi-builder-workspace/Sources/ZodiacKit/Extensions/AgnosticColor+Ext.swift:48:16: error: cannot find type 'CGFloat' in scope
    let alpha: CGFloat
               ^~~~~~~
/host/spi-builder-workspace/Sources/ZodiacKit/Extensions/AgnosticColor+Ext.swift:51:14: error: cannot find type 'CGFloat' in scope
    let red: CGFloat
             ^~~~~~~
/host/spi-builder-workspace/Sources/ZodiacKit/Extensions/AgnosticColor+Ext.swift:54:16: error: cannot find type 'CGFloat' in scope
    let green: CGFloat
               ^~~~~~~
/host/spi-builder-workspace/Sources/ZodiacKit/Extensions/AgnosticColor+Ext.swift:57:15: error: cannot find type 'CGFloat' in scope
    let blue: CGFloat
              ^~~~~~~
/host/spi-builder-workspace/Sources/ZodiacKit/Extensions/AgnosticColor+Ext.swift:80:23: error: cannot find 'Scanner' in scope
        let scanner = Scanner(string: hexString)
                      ^~~~~~~
/host/spi-builder-workspace/Sources/ZodiacKit/Extensions/AgnosticColor+Ext.swift:84:62: error: cannot find type 'CGFloat' in scope
        func normalizeColorComponent(_ component: UInt64) -> CGFloat {
                                                             ^~~~~~~
/host/spi-builder-workspace/Sources/ZodiacKit/Extensions/Calendar+Ext.swift:15:16: warning: static property 'gregorian' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let gregorian = Calendar(identifier: .gregorian).settingGMT()
               ^
[7/25] Compiling ZodiacKit Western.swift
/host/spi-builder-workspace/Sources/ZodiacKit/Zodiacs/Western.swift:102:23: error: cannot find type 'AgnosticColor' in scope
    public var color: AgnosticColor { .init(hex: colorHEX) ?? .clear }
                      ^~~~~~~~~~~~~
[8/25] Compiling ZodiacKit ZodiacPresets.swift
/host/spi-builder-workspace/Sources/ZodiacKit/Zodiacs/Western.swift:102:23: error: cannot find type 'AgnosticColor' in scope
    public var color: AgnosticColor { .init(hex: colorHEX) ?? .clear }
                      ^~~~~~~~~~~~~
[9/25] Compiling ZodiacKit ZodiacError.swift
/host/spi-builder-workspace/Sources/ZodiacKit/Extensions/Calendar+Ext.swift:15:16: warning: static property 'gregorian' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let gregorian = Calendar(identifier: .gregorian).settingGMT()
               ^
[10/25] Compiling ZodiacKit ZodiacMetadata.swift
/host/spi-builder-workspace/Sources/ZodiacKit/Extensions/Calendar+Ext.swift:15:16: warning: static property 'gregorian' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let gregorian = Calendar(identifier: .gregorian).settingGMT()
               ^
[11/25] Compiling ZodiacKit ZodiacOverview.swift
/host/spi-builder-workspace/Sources/ZodiacKit/Extensions/Calendar+Ext.swift:15:16: warning: static property 'gregorian' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let gregorian = Calendar(identifier: .gregorian).settingGMT()
               ^
[12/25] Compiling ZodiacKit Chinese.swift
/host/spi-builder-workspace/Sources/ZodiacKit/Zodiacs/Chinese.swift:76:23: error: cannot find type 'AgnosticColor' in scope
    public var color: AgnosticColor { .init(hex: colorHEX) ?? .clear }
                      ^~~~~~~~~~~~~
[13/25] Compiling ZodiacKit AstronomicalIAU.swift
/host/spi-builder-workspace/Sources/ZodiacKit/Zodiacs/Chinese.swift:76:23: error: cannot find type 'AgnosticColor' in scope
    public var color: AgnosticColor { .init(hex: colorHEX) ?? .clear }
                      ^~~~~~~~~~~~~
[14/25] Compiling ZodiacKit EqualLength.swift
/host/spi-builder-workspace/Sources/ZodiacKit/Zodiacs/Chinese.swift:76:23: error: cannot find type 'AgnosticColor' in scope
    public var color: AgnosticColor { .init(hex: colorHEX) ?? .clear }
                      ^~~~~~~~~~~~~
[15/25] Compiling ZodiacKit SideReal.swift
[16/25] Compiling ZodiacKit Tropical.swift
[17/25] Compiling ZodiacKit ZodiacMetadataRepresentable.swift
[18/25] Compiling ZodiacKit ZodiacSign.swift
[19/25] Compiling ZodiacKit ZodiacLoader.swift
[20/25] Compiling ZodiacKit Int+Ext.swift
/host/spi-builder-workspace/Sources/ZodiacKit/Extensions/Calendar+Ext.swift:15:16: warning: static property 'gregorian' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let gregorian = Calendar(identifier: .gregorian).settingGMT()
               ^
[21/25] Compiling ZodiacKit WesternZodiacSystem.swift
/host/spi-builder-workspace/Sources/ZodiacKit/Extensions/Calendar+Ext.swift:15:16: warning: static property 'gregorian' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let gregorian = Calendar(identifier: .gregorian).settingGMT()
               ^
[22/25] Compiling ZodiacKit Zodiac.swift
/host/spi-builder-workspace/Sources/ZodiacKit/Extensions/Calendar+Ext.swift:15:16: warning: static property 'gregorian' is not concurrency-safe because it is not either conforming to 'Sendable' or isolated to a global actor; this is an error in Swift 6
    static let gregorian = Calendar(identifier: .gregorian).settingGMT()
               ^
[23/25] Compiling ZodiacKit ZodiacService.swift
/host/spi-builder-workspace/Sources/ZodiacKit/Services/ZodiacService.swift:18:6: error: unknown attribute 'Published'
    @Published public private(set) var zodiacs: [Zodiac] = []
     ^
/host/spi-builder-workspace/Sources/ZodiacKit/Services/ZodiacService.swift:21:6: error: unknown attribute 'Published'
    @Published public private(set) var validationError: ZodiacError? = nil
     ^
/host/spi-builder-workspace/Sources/ZodiacKit/Services/ZodiacService.swift:15:35: error: cannot find type 'ObservableObject' in scope
public final class ZodiacService: ObservableObject {
                                  ^~~~~~~~~~~~~~~~
[24/25] Compiling ZodiacKit ZodiacValidator.swift
/host/spi-builder-workspace/Sources/ZodiacKit/Services/ZodiacService.swift:18:6: error: unknown attribute 'Published'
    @Published public private(set) var zodiacs: [Zodiac] = []
     ^
/host/spi-builder-workspace/Sources/ZodiacKit/Services/ZodiacService.swift:21:6: error: unknown attribute 'Published'
    @Published public private(set) var validationError: ZodiacError? = nil
     ^
/host/spi-builder-workspace/Sources/ZodiacKit/Services/ZodiacService.swift:15:35: error: cannot find type 'ObservableObject' in scope
public final class ZodiacService: ObservableObject {
                                  ^~~~~~~~~~~~~~~~
[25/25] Compiling ZodiacKit DateUtils.swift
/host/spi-builder-workspace/Sources/ZodiacKit/Services/ZodiacService.swift:18:6: error: unknown attribute 'Published'
    @Published public private(set) var zodiacs: [Zodiac] = []
     ^
/host/spi-builder-workspace/Sources/ZodiacKit/Services/ZodiacService.swift:21:6: error: unknown attribute 'Published'
    @Published public private(set) var validationError: ZodiacError? = nil
     ^
/host/spi-builder-workspace/Sources/ZodiacKit/Services/ZodiacService.swift:15:35: error: cannot find type 'ObservableObject' in scope
public final class ZodiacService: ObservableObject {
                                  ^~~~~~~~~~~~~~~~
error: fatalError
BUILD FAILURE 5.10 linux