Build Information
Successful build of gha-logger, reference develop (7977db), with Swift 6.3 for Android on 17 Apr 2026 02:30:31 UTC.
Swift 6 data race errors: 0
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4609320-2":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:android-6.3-latest swift build --swift-sdk aarch64-unknown-linux-android28 2>&1Build Log
========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/xcode-actions/gha-logger.git
Reference: develop
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/xcode-actions/gha-logger
* branch develop -> FETCH_HEAD
* [new branch] develop -> origin/develop
HEAD is now at 7977db5 Update Swift compatibility in the Readme
Cloned https://github.com/xcode-actions/gha-logger.git
Revision (git rev-parse @):
7977db5822712b5f53f8b5b92fa580adf1aa665e
SUCCESS checkout https://github.com/xcode-actions/gha-logger.git at develop
========================================
Build
========================================
Selected platform: android
Swift version: 6.3
Building package at path: $PWD
https://github.com/xcode-actions/gha-logger.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-2":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:android-6.3-latest swift build --swift-sdk aarch64-unknown-linux-android28 2>&1
android-6.3-latest: Pulling from swiftpackageindex/spi-images
Digest: sha256:9008270ea37a55e78725e6225015adb5eff8582da520c5232bf0499f32c36dc4
Status: Image is up to date for registry.gitlab.com/swiftpackageindex/spi-images:android-6.3-latest
Fetching https://github.com/xcode-actions/clt-logger.git
Fetching https://github.com/apple/swift-log.git
[1/869] Fetching clt-logger
[853/7480] Fetching clt-logger, swift-log
Fetched https://github.com/apple/swift-log.git from cache (1.78s)
Fetched https://github.com/xcode-actions/clt-logger.git from cache (1.78s)
Computing version for https://github.com/xcode-actions/clt-logger.git
Computed https://github.com/xcode-actions/clt-logger.git at 1.0.0 (2.70s)
Computing version for https://github.com/apple/swift-log.git
Computed https://github.com/apple/swift-log.git at 1.12.0 (0.55s)
Creating working copy for https://github.com/xcode-actions/clt-logger.git
Working copy of https://github.com/xcode-actions/clt-logger.git resolved at 1.0.0
Creating working copy for https://github.com/apple/swift-log.git
Working copy of https://github.com/apple/swift-log.git resolved at 1.12.0
Building for debugging...
[0/4] Write sources
[3/4] Write swift-version--4F562202D5529B1.txt
[5/10] Compiling Logging LogEvent.swift
[6/10] Emitting module Logging
[7/10] Compiling Logging Locks.swift
[8/10] Compiling Logging MetadataProvider.swift
[9/10] Compiling Logging LogHandler.swift
[10/10] Compiling Logging Logging.swift
[12/21] Compiling CLTLogger Scanner+OldOS.swift
[13/22] Compiling CLTLogger OutputEnvironment.swift
[14/22] Compiling CLTLogger NSLock+withLock.swift
[15/22] Compiling CLTLogger DummySendable.swift
[16/22] Compiling CLTLogger Emoji.swift
[17/22] Compiling CLTLogger CLTLogger+WithSendable.swift
[18/22] Compiling CLTLogger CLTLogger.swift
[19/22] Emitting module CLTLogger
[20/22] Compiling CLTLogger EmojiSet.swift
[21/22] Compiling CLTLogger SGR.swift
[22/22] Compiling CLTLogger String+Utils.swift
[24/29] Compiling GHALogger String+Utils.swift
[25/29] Compiling GHALogger GHALogger.swift
/host/spi-builder-workspace/Sources/GHALogger.swift:12:15: warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
10 |
11 | This is a wrapper for a CLTLogger with some specific prefixes. */
12 | public struct GHALogger : LogHandler {
| `- warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
13 |
14 | public static let metadataKeyForLogTitle = "log-title"
/host/spi-builder-workspace/.build/checkouts/swift-log/Sources/Logging/LogHandler.swift:256:17: note: 'log(event:)' declared here
143 | ///
144 | /// - Parameter event: The log event containing the level, message, metadata, and source location.
145 | func log(event: LogEvent)
| `- note: requirement 'log(event:)' declared here
146 |
147 | /// Please do _not_ implement this method when you create a `LogHandler` implementation.
:
254 | /// Implement ``log(event:)`` in your ``LogHandler`` instead.
255 | @available(*, deprecated, message: "You should implement this method instead of using the default implementation")
256 | public func log(event: LogEvent) {
| `- note: 'log(event:)' declared here
257 | self.log(
258 | level: event.level,
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[26/29] Compiling GHALogger GHALogger+WithSendable.swift
[27/29] Emitting module GHALogger
/host/spi-builder-workspace/Sources/GHALogger.swift:12:15: warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
10 |
11 | This is a wrapper for a CLTLogger with some specific prefixes. */
12 | public struct GHALogger : LogHandler {
| `- warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
13 |
14 | public static let metadataKeyForLogTitle = "log-title"
/host/spi-builder-workspace/.build/checkouts/swift-log/Sources/Logging/LogHandler.swift:256:17: note: 'log(event:)' declared here
143 | ///
144 | /// - Parameter event: The log event containing the level, message, metadata, and source location.
145 | func log(event: LogEvent)
| `- note: requirement 'log(event:)' declared here
146 |
147 | /// Please do _not_ implement this method when you create a `LogHandler` implementation.
:
254 | /// Implement ``log(event:)`` in your ``LogHandler`` instead.
255 | @available(*, deprecated, message: "You should implement this method instead of using the default implementation")
256 | public func log(event: LogEvent) {
| `- note: 'log(event:)' declared here
257 | self.log(
258 | level: event.level,
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[28/29] Compiling GHALogger DummySendable.swift
[29/29] Compiling GHALogger GHACommand.swift
Build complete! (26.18s)
Build complete.
{
"dependencies" : [
{
"identity" : "swift-log",
"requirement" : {
"range" : [
{
"lower_bound" : "1.5.1",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-log.git"
},
{
"identity" : "clt-logger",
"requirement" : {
"range" : [
{
"lower_bound" : "1.0.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/xcode-actions/clt-logger.git"
}
],
"manifest_display_name" : "gha-logger",
"name" : "gha-logger",
"path" : "/host/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "11.0"
},
{
"name" : "tvos",
"version" : "14.0"
},
{
"name" : "ios",
"version" : "14.0"
},
{
"name" : "watchos",
"version" : "7.0"
}
],
"products" : [
{
"name" : "GHALogger",
"targets" : [
"GHALogger"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "GHALoggerTests",
"module_type" : "SwiftTarget",
"name" : "GHALoggerTests",
"path" : "Tests/GHALoggerTests",
"sources" : [
"GHALoggerTests.swift"
],
"target_dependencies" : [
"GHALogger"
],
"type" : "test"
},
{
"c99name" : "GHALogger",
"module_type" : "SwiftTarget",
"name" : "GHALogger",
"path" : "Sources",
"product_dependencies" : [
"CLTLogger",
"Logging"
],
"product_memberships" : [
"GHALogger"
],
"sources" : [
"DummySendable.swift",
"GHACommand.swift",
"GHALogger+WithSendable.swift",
"GHALogger.swift",
"String+Utils.swift"
],
"type" : "library"
}
],
"tools_version" : "5.8"
}
android-6.3-latest: Pulling from swiftpackageindex/spi-images
Digest: sha256:9008270ea37a55e78725e6225015adb5eff8582da520c5232bf0499f32c36dc4
Status: Image is up to date for registry.gitlab.com/swiftpackageindex/spi-images:android-6.3-latest
Done.