Build Information
Successful build of SKCore, reference master (656dee
), with Swift 6.1 for macOS (SPM) on 25 Apr 2025 21:09:15 UTC.
Swift 6 data race errors: 0
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64 -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
Build Log
========================================
RunAll
========================================
Builder version: 4.61.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/pvzig/SKCore.git
Reference: master
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/pvzig/SKCore
* branch master -> FETCH_HEAD
* [new branch] master -> origin/master
HEAD is now at 656deeb Update README.md
Cloned https://github.com/pvzig/SKCore.git
Revision (git rev-parse @):
656deeb1bedc67d90b2905899859b59fc1ffd011
SUCCESS checkout https://github.com/pvzig/SKCore.git at master
========================================
ResolveProductDependencies
========================================
Resolving dependencies ...
{
"identity": ".resolve-product-dependencies",
"name": "resolve-dependencies",
"url": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
"version": "unspecified",
"path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
"dependencies": [
{
"identity": "skcore",
"name": "SKCore",
"url": "https://github.com/pvzig/SKCore.git",
"version": "unspecified",
"path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/SKCore",
"dependencies": [
]
}
]
}
Fetching https://github.com/pvzig/SKCore.git
[1/288] Fetching skcore
Fetched https://github.com/pvzig/SKCore.git from cache (0.67s)
Creating working copy for https://github.com/pvzig/SKCore.git
Working copy of https://github.com/pvzig/SKCore.git resolved at master (656deeb)
warning: '.resolve-product-dependencies': dependency 'skcore' is not used by any target
Found 0 product dependencies
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.1
Building package at path: $PWD
https://github.com/pvzig/SKCore.git
https://github.com/pvzig/SKCore.git
{
"dependencies" : [
],
"manifest_display_name" : "SKCore",
"name" : "SKCore",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
],
"products" : [
{
"name" : "SKCore",
"targets" : [
"SKCore"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "SKCoreTests",
"module_type" : "SwiftTarget",
"name" : "SKCoreTests",
"path" : "Tests/SKCoreTests",
"sources" : [
"Helper.swift",
"SKCoreTests.swift",
"XCTestManifests.swift"
],
"target_dependencies" : [
"SKCore"
],
"type" : "test"
},
{
"c99name" : "SKCore",
"module_type" : "SwiftTarget",
"name" : "SKCore",
"path" : "Sources",
"product_memberships" : [
"SKCore"
],
"sources" : [
"SKCore/Action.swift",
"SKCore/Attachment.swift",
"SKCore/AttachmentField.swift",
"SKCore/Bot.swift",
"SKCore/Channel.swift",
"SKCore/Comment.swift",
"SKCore/CustomProfile.swift",
"SKCore/CustomProfileField.swift",
"SKCore/DoNotDisturbStatus.swift",
"SKCore/Edited.swift",
"SKCore/Event.swift",
"SKCore/Extensions.swift",
"SKCore/File.swift",
"SKCore/History.swift",
"SKCore/Item.swift",
"SKCore/Message.swift",
"SKCore/OAuthConfig.swift",
"SKCore/RTMOptions.swift",
"SKCore/Reaction.swift",
"SKCore/Reply.swift",
"SKCore/Scope.swift",
"SKCore/SlackError.swift",
"SKCore/Team.swift",
"SKCore/TeamIcon.swift",
"SKCore/Topic.swift",
"SKCore/User.swift",
"SKCore/UserGroup.swift"
],
"type" : "library"
}
],
"tools_version" : "4.0"
}
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64 -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
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-2F0A5646E1D333AE.txt
[3/28] Emitting module SKCore
[4/30] Compiling SKCore Bot.swift
[5/30] Compiling SKCore Channel.swift
[6/30] Compiling SKCore Comment.swift
[7/30] Compiling SKCore Reaction.swift
[8/30] Compiling SKCore Reply.swift
[9/30] Compiling SKCore Scope.swift
[10/30] Compiling SKCore Action.swift
/Users/admin/builder/spi-builder-workspace/Sources/SKCore/Attachment.swift:64:86: warning: 'flatMap' is deprecated: Please use compactMap(_:) for the case where closure returns an optional value
62 | fields = (attachment?["fields"] as? [[String: Any]])?.map { AttachmentField(field: $0) }
63 | actions = (attachment?["actions"] as? [[String: Any]])?.map { Action(action: $0) }
64 | markdownEnabledFields = (attachment?["mrkdwn_in"] as? [String]).map { Set($0.flatMap(AttachmentTextField.init)) }
| |- warning: 'flatMap' is deprecated: Please use compactMap(_:) for the case where closure returns an optional value
| `- note: use 'compactMap(_:)' instead
65 | }
66 |
[11/30] Compiling SKCore Attachment.swift
/Users/admin/builder/spi-builder-workspace/Sources/SKCore/Attachment.swift:64:86: warning: 'flatMap' is deprecated: Please use compactMap(_:) for the case where closure returns an optional value
62 | fields = (attachment?["fields"] as? [[String: Any]])?.map { AttachmentField(field: $0) }
63 | actions = (attachment?["actions"] as? [[String: Any]])?.map { Action(action: $0) }
64 | markdownEnabledFields = (attachment?["mrkdwn_in"] as? [String]).map { Set($0.flatMap(AttachmentTextField.init)) }
| |- warning: 'flatMap' is deprecated: Please use compactMap(_:) for the case where closure returns an optional value
| `- note: use 'compactMap(_:)' instead
65 | }
66 |
[12/30] Compiling SKCore AttachmentField.swift
/Users/admin/builder/spi-builder-workspace/Sources/SKCore/Attachment.swift:64:86: warning: 'flatMap' is deprecated: Please use compactMap(_:) for the case where closure returns an optional value
62 | fields = (attachment?["fields"] as? [[String: Any]])?.map { AttachmentField(field: $0) }
63 | actions = (attachment?["actions"] as? [[String: Any]])?.map { Action(action: $0) }
64 | markdownEnabledFields = (attachment?["mrkdwn_in"] as? [String]).map { Set($0.flatMap(AttachmentTextField.init)) }
| |- warning: 'flatMap' is deprecated: Please use compactMap(_:) for the case where closure returns an optional value
| `- note: use 'compactMap(_:)' instead
65 | }
66 |
[13/30] Compiling SKCore SlackError.swift
[14/30] Compiling SKCore Team.swift
[15/30] Compiling SKCore User.swift
[16/30] Compiling SKCore UserGroup.swift
[17/30] Compiling SKCore TeamIcon.swift
[18/30] Compiling SKCore Topic.swift
[19/30] Compiling SKCore Message.swift
[20/30] Compiling SKCore OAuthConfig.swift
[21/30] Compiling SKCore RTMOptions.swift
[22/30] Compiling SKCore CustomProfile.swift
[23/30] Compiling SKCore CustomProfileField.swift
[24/30] Compiling SKCore DoNotDisturbStatus.swift
[25/30] Compiling SKCore Edited.swift
[26/30] Compiling SKCore Event.swift
[27/30] Compiling SKCore Extensions.swift
[28/30] Compiling SKCore File.swift
[29/30] Compiling SKCore History.swift
[30/30] Compiling SKCore Item.swift
Build complete! (5.00s)
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "SKCore",
"name" : "SKCore",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
],
"products" : [
{
"name" : "SKCore",
"targets" : [
"SKCore"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "SKCoreTests",
"module_type" : "SwiftTarget",
"name" : "SKCoreTests",
"path" : "Tests/SKCoreTests",
"sources" : [
"Helper.swift",
"SKCoreTests.swift",
"XCTestManifests.swift"
],
"target_dependencies" : [
"SKCore"
],
"type" : "test"
},
{
"c99name" : "SKCore",
"module_type" : "SwiftTarget",
"name" : "SKCore",
"path" : "Sources",
"product_memberships" : [
"SKCore"
],
"sources" : [
"SKCore/Action.swift",
"SKCore/Attachment.swift",
"SKCore/AttachmentField.swift",
"SKCore/Bot.swift",
"SKCore/Channel.swift",
"SKCore/Comment.swift",
"SKCore/CustomProfile.swift",
"SKCore/CustomProfileField.swift",
"SKCore/DoNotDisturbStatus.swift",
"SKCore/Edited.swift",
"SKCore/Event.swift",
"SKCore/Extensions.swift",
"SKCore/File.swift",
"SKCore/History.swift",
"SKCore/Item.swift",
"SKCore/Message.swift",
"SKCore/OAuthConfig.swift",
"SKCore/RTMOptions.swift",
"SKCore/Reaction.swift",
"SKCore/Reply.swift",
"SKCore/Scope.swift",
"SKCore/SlackError.swift",
"SKCore/Team.swift",
"SKCore/TeamIcon.swift",
"SKCore/Topic.swift",
"SKCore/User.swift",
"SKCore/UserGroup.swift"
],
"type" : "library"
}
],
"tools_version" : "4.0"
}
Done.