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 OhMyLog, reference v1.1.0 (844c80), with Swift 6.0 for Linux on 28 Nov 2024 09:43:42 UTC.

Swift 6 data race errors: 2

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu -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.58.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/forkercat/OhMyLog.git
Reference: v1.1.0
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/forkercat/OhMyLog
 * tag               v1.1.0     -> FETCH_HEAD
HEAD is now at 844c80a Update workflow and add platform/swift version indicators
Cloned https://github.com/forkercat/OhMyLog.git
Revision (git rev-parse @):
844c80af4b867fa693f1bdde7c1df80064e770be
SUCCESS checkout https://github.com/forkercat/OhMyLog.git at v1.1.0
========================================
Build
========================================
Selected platform:         linux
Swift version:             6.0
Building package at path:  $PWD
https://github.com/forkercat/OhMyLog.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu -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
basic-6.0-latest: Pulling from finestructure/spi-images
Digest: sha256:47d26c99ca4f1ac0a332c85fd5b13ff4390e72115219984a57a68fe9d1063a05
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.0-latest
Building for debugging...
[0/7] Write sources
[2/7] Write swift-version-24593BA9C3E375BF.txt
[4/12] Compiling OhMyLog Logger.swift
/host/spi-builder-workspace/Sources/OhMyLog/Logger.swift:13:27: warning: static property 'logLevel' is not concurrency-safe because non-'Sendable' type 'Logger.Level' may have shared mutable state; this is an error in the Swift 6 language mode
11 |     public enum Defaults {
12 |         public static let loggerName = "Default"
13 |         public static let logLevel = Logger.Level.debug
   |                           |- warning: static property 'logLevel' is not concurrency-safe because non-'Sendable' type 'Logger.Level' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: annotate 'logLevel' with '@MainActor' if property should only be accessed from the main actor
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |         public static let showLevelIcon = false
15 |         public static let showContext = true
16 |     }
17 |
18 |     public enum Level: Int {
   |                 `- note: consider making enum 'Level' conform to the 'Sendable' protocol
19 |         case trace
20 |         case debug
[5/12] Compiling OhMyLog Logger+String.swift
[6/12] Compiling OhMyLog Log.swift
/host/spi-builder-workspace/Sources/OhMyLog/Log.swift:11:24: warning: static property 'logger' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | public enum Log {
11 |     private static var logger = Logger(name: Logger.Defaults.loggerName, level: Logger.Defaults.logLevel)
   |                        |- warning: static property 'logger' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'logger' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: annotate 'logger' with '@MainActor' if property should only be accessed from the main actor
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 |
13 |     @inline(__always)
/host/spi-builder-workspace/Sources/OhMyLog/Logger.swift:13:27: warning: static property 'logLevel' is not concurrency-safe because non-'Sendable' type 'Logger.Level' may have shared mutable state; this is an error in the Swift 6 language mode
11 |     public enum Defaults {
12 |         public static let loggerName = "Default"
13 |         public static let logLevel = Logger.Level.debug
   |                           |- warning: static property 'logLevel' is not concurrency-safe because non-'Sendable' type 'Logger.Level' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: annotate 'logLevel' with '@MainActor' if property should only be accessed from the main actor
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |         public static let showLevelIcon = false
15 |         public static let showContext = true
16 |     }
17 |
18 |     public enum Level: Int {
   |                 `- note: consider making enum 'Level' conform to the 'Sendable' protocol
19 |         case trace
20 |         case debug
[7/12] Compiling OhMyLog Logger+Any.swift
[8/12] Emitting module OhMyLog
/host/spi-builder-workspace/Sources/OhMyLog/Log.swift:11:24: warning: static property 'logger' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | public enum Log {
11 |     private static var logger = Logger(name: Logger.Defaults.loggerName, level: Logger.Defaults.logLevel)
   |                        |- warning: static property 'logger' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'logger' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: annotate 'logger' with '@MainActor' if property should only be accessed from the main actor
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 |
13 |     @inline(__always)
/host/spi-builder-workspace/Sources/OhMyLog/Logger.swift:13:27: warning: static property 'logLevel' is not concurrency-safe because non-'Sendable' type 'Logger.Level' may have shared mutable state; this is an error in the Swift 6 language mode
11 |     public enum Defaults {
12 |         public static let loggerName = "Default"
13 |         public static let logLevel = Logger.Level.debug
   |                           |- warning: static property 'logLevel' is not concurrency-safe because non-'Sendable' type 'Logger.Level' may have shared mutable state; this is an error in the Swift 6 language mode
   |                           |- note: annotate 'logLevel' with '@MainActor' if property should only be accessed from the main actor
   |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |         public static let showLevelIcon = false
15 |         public static let showContext = true
16 |     }
17 |
18 |     public enum Level: Int {
   |                 `- note: consider making enum 'Level' conform to the 'Sendable' protocol
19 |         case trace
20 |         case debug
[9/13] Wrapping AST for OhMyLog for debugging
[11/15] Emitting module OhMyLog_Demo
[12/15] Compiling OhMyLog_Demo main.swift
[13/16] Wrapping AST for OhMyLog-Demo for debugging
[14/16] Write Objects.LinkFileList
[15/16] Linking OhMyLog-Demo
Build complete! (8.77s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "OhMyLog",
  "name" : "OhMyLog",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "OhMyLog",
      "targets" : [
        "OhMyLog"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "OhMyLog-Demo",
      "targets" : [
        "OhMyLog-Demo"
      ],
      "type" : {
        "executable" : null
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "OhMyLog_Demo",
      "module_type" : "SwiftTarget",
      "name" : "OhMyLog-Demo",
      "path" : "Sources/OhMyLog-Demo",
      "product_memberships" : [
        "OhMyLog-Demo"
      ],
      "sources" : [
        "main.swift"
      ],
      "target_dependencies" : [
        "OhMyLog"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "OhMyLog",
      "module_type" : "SwiftTarget",
      "name" : "OhMyLog",
      "path" : "Sources/OhMyLog",
      "product_memberships" : [
        "OhMyLog",
        "OhMyLog-Demo"
      ],
      "sources" : [
        "Log.swift",
        "Logger+Any.swift",
        "Logger+String.swift",
        "Logger.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.3"
}
basic-6.0-latest: Pulling from finestructure/spi-images
Digest: sha256:47d26c99ca4f1ac0a332c85fd5b13ff4390e72115219984a57a68fe9d1063a05
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.0-latest
Done.