Build Information
Successful build of XCSnippets, reference master (32f56c), with Swift 6.1 for macOS (SPM) on 19 Mar 2026 08:19:26 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 InferSendableFromCapturesBuild Log
========================================
RunAll
========================================
Builder version: 4.69.2
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/dtaylor1701/xcsnippets.git
Reference: master
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/dtaylor1701/xcsnippets
* branch master -> FETCH_HEAD
* [new branch] master -> origin/master
HEAD is now at 32f56c2 chore: ignore build folder and remove any tracked build artifacts
Cloned https://github.com/dtaylor1701/xcsnippets.git
Revision (git rev-parse @):
32f56c21723500493c1a0efb3b350601c20d2c1f
SUCCESS checkout https://github.com/dtaylor1701/xcsnippets.git at master
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.1
Building package at path: $PWD
https://github.com/dtaylor1701/xcsnippets.git
https://github.com/dtaylor1701/xcsnippets.git
{
"dependencies" : [
],
"manifest_display_name" : "XCSnippets",
"name" : "XCSnippets",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "10.14"
}
],
"products" : [
{
"name" : "xcsnippets",
"targets" : [
"XCSnippets"
],
"type" : {
"executable" : null
}
}
],
"targets" : [
{
"c99name" : "XCSnippetsTests",
"module_type" : "SwiftTarget",
"name" : "XCSnippetsTests",
"path" : "Tests/XCSnippetsTests",
"sources" : [
"XCSnippetsTests.swift",
"XCTestManifests.swift"
],
"target_dependencies" : [
"XCSnippets",
"XCSnippetsCore"
],
"type" : "test"
},
{
"c99name" : "XCSnippetsCore",
"module_type" : "SwiftTarget",
"name" : "XCSnippetsCore",
"path" : "Sources/XCSnippetsCore",
"product_memberships" : [
"xcsnippets"
],
"sources" : [
"Shell.swift",
"SnippetManager.swift",
"SnippetParser.swift",
"SnippetRepository.swift"
],
"type" : "library"
},
{
"c99name" : "XCSnippets",
"module_type" : "SwiftTarget",
"name" : "XCSnippets",
"path" : "Sources/XCSnippets",
"product_memberships" : [
"xcsnippets"
],
"sources" : [
"main.swift"
],
"target_dependencies" : [
"XCSnippetsCore"
],
"type" : "executable"
}
],
"tools_version" : "5.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/7] Write sources
[0/7] Write xcsnippets-entitlement.plist
[2/7] Write sources
[3/7] Write swift-version-2F0A5646E1D333AE.txt
[5/12] Compiling XCSnippetsCore SnippetRepository.swift
[6/12] Emitting module XCSnippetsCore
[7/12] Compiling XCSnippetsCore SnippetManager.swift
/Users/admin/builder/spi-builder-workspace/Sources/XCSnippetsCore/SnippetManager.swift:190:17: warning: capture of 'self' with non-sendable type 'SnippetManager' in a '@Sendable' closure
2 |
3 | @available(OSX 10.12, *)
4 | public class SnippetManager {
| `- note: class 'SnippetManager' does not conform to the 'Sendable' protocol
5 |
6 | private let xcodeSnippetsPath = "Library/Developer/Xcode/UserData/CodeSnippets"
:
188 | let task = session.dataTask(with: url) { (data, _, error) in
189 | if error == nil, let data = data, let list = try? JSONDecoder().decode([SnippetRepository].self, from: data) {
190 | self.printLine("Available Snippets \n")
| `- warning: capture of 'self' with non-sendable type 'SnippetManager' in a '@Sendable' closure
191 | for item in list {
192 | print(item.display())
[8/12] Compiling XCSnippetsCore SnippetParser.swift
[9/12] Compiling XCSnippetsCore Shell.swift
[10/14] Emitting module XCSnippets
[11/14] Compiling XCSnippets main.swift
[11/14] Write Objects.LinkFileList
[12/14] Linking xcsnippets
[13/14] Applying xcsnippets
Build complete! (5.13s)
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "XCSnippets",
"name" : "XCSnippets",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "10.14"
}
],
"products" : [
{
"name" : "xcsnippets",
"targets" : [
"XCSnippets"
],
"type" : {
"executable" : null
}
}
],
"targets" : [
{
"c99name" : "XCSnippetsTests",
"module_type" : "SwiftTarget",
"name" : "XCSnippetsTests",
"path" : "Tests/XCSnippetsTests",
"sources" : [
"XCSnippetsTests.swift",
"XCTestManifests.swift"
],
"target_dependencies" : [
"XCSnippets",
"XCSnippetsCore"
],
"type" : "test"
},
{
"c99name" : "XCSnippetsCore",
"module_type" : "SwiftTarget",
"name" : "XCSnippetsCore",
"path" : "Sources/XCSnippetsCore",
"product_memberships" : [
"xcsnippets"
],
"sources" : [
"Shell.swift",
"SnippetManager.swift",
"SnippetParser.swift",
"SnippetRepository.swift"
],
"type" : "library"
},
{
"c99name" : "XCSnippets",
"module_type" : "SwiftTarget",
"name" : "XCSnippets",
"path" : "Sources/XCSnippets",
"product_memberships" : [
"xcsnippets"
],
"sources" : [
"main.swift"
],
"target_dependencies" : [
"XCSnippetsCore"
],
"type" : "executable"
}
],
"tools_version" : "5.0"
}
Done.