Build Information
Successful build of AppsShowcase, reference main (e7c19e
), with Swift 6.1 for macOS (SPM) on 28 Apr 2025 06:53:13 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/marionauta/apps-showcase-swift.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/marionauta/apps-showcase-swift
* branch main -> FETCH_HEAD
* [new branch] main -> origin/main
HEAD is now at e7c19e3 chore: document `ShowcasedAppsList`
Cloned https://github.com/marionauta/apps-showcase-swift.git
Revision (git rev-parse @):
e7c19e35ce81ccf778e4994248feab8f019421c0
SUCCESS checkout https://github.com/marionauta/apps-showcase-swift.git at main
========================================
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": "apps-showcase-swift",
"name": "AppsShowcase",
"url": "https://github.com/marionauta/apps-showcase-swift.git",
"version": "unspecified",
"path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/apps-showcase-swift",
"dependencies": [
]
}
]
}
Fetching https://github.com/marionauta/apps-showcase-swift.git
[1/55] Fetching apps-showcase-swift
Fetched https://github.com/marionauta/apps-showcase-swift.git from cache (0.64s)
Creating working copy for https://github.com/marionauta/apps-showcase-swift.git
Working copy of https://github.com/marionauta/apps-showcase-swift.git resolved at main (e7c19e3)
warning: '.resolve-product-dependencies': dependency 'apps-showcase-swift' 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/marionauta/apps-showcase-swift.git
https://github.com/marionauta/apps-showcase-swift.git
{
"default_localization" : "en",
"dependencies" : [
],
"manifest_display_name" : "AppsShowcase",
"name" : "AppsShowcase",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "ios",
"version" : "13.0"
},
{
"name" : "macos",
"version" : "10.15"
},
{
"name" : "tvos",
"version" : "13.0"
},
{
"name" : "watchos",
"version" : "6.0"
}
],
"products" : [
{
"name" : "AppsShowcase",
"targets" : [
"AppsShowcase"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "AppsShowcase",
"module_type" : "SwiftTarget",
"name" : "AppsShowcase",
"path" : "Sources/AppsShowcase",
"product_memberships" : [
"AppsShowcase"
],
"resources" : [
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/AppsShowcase/Resources/Localizable.strings",
"rule" : {
"process" : {
}
}
}
],
"sources" : [
"AppsResponse.swift",
"AppsShowcase.swift",
"ShowcasedApp.swift",
"Views/ShowcasedAppLink.swift",
"Views/ShowcasedAppRow.swift",
"Views/ShowcasedAppsSection.swift"
],
"type" : "library"
}
],
"tools_version" : "5.3"
}
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/4] Write sources
[1/4] Copying Info.plist
[2/4] Copying Localizable.strings
[3/4] Write swift-version-2F0A5646E1D333AE.txt
[5/12] Compiling AppsShowcase resource_bundle_accessor.swift
[6/12] Compiling AppsShowcase ShowcasedAppRow.swift
[7/12] Compiling AppsShowcase ShowcasedApp.swift
[8/12] Compiling AppsShowcase ShowcasedAppLink.swift
[9/12] Compiling AppsShowcase ShowcasedAppsSection.swift
/Users/admin/builder/spi-builder-workspace/Sources/AppsShowcase/Views/ShowcasedAppsSection.swift:28:31: warning: non-sendable result type 'Result<[ShowcasedApp], any Error>' cannot be sent from nonisolated context in call to instance method 'retrieve()'; this is an error in the Swift 6 language mode
26 | let showcase = AppsShowcase(url: url)
27 | isLoading = true
28 | switch await showcase.retrieve() {
| `- warning: non-sendable result type 'Result<[ShowcasedApp], any Error>' cannot be sent from nonisolated context in call to instance method 'retrieve()'; this is an error in the Swift 6 language mode
29 | case let .success(apps):
30 | self.apps = apps
/Users/admin/builder/spi-builder-workspace/Sources/AppsShowcase/ShowcasedApp.swift:3:15: note: consider making struct 'ShowcasedApp' conform to the 'Sendable' protocol
1 | import Foundation
2 |
3 | public struct ShowcasedApp: Decodable, Equatable, Identifiable {
| `- note: consider making struct 'ShowcasedApp' conform to the 'Sendable' protocol
4 | public let id: String
5 | public let name: String
[10/12] Emitting module AppsShowcase
[11/12] Compiling AppsShowcase AppsShowcase.swift
[12/12] Compiling AppsShowcase AppsResponse.swift
Build complete! (7.95s)
Build complete.
{
"default_localization" : "en",
"dependencies" : [
],
"manifest_display_name" : "AppsShowcase",
"name" : "AppsShowcase",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "ios",
"version" : "13.0"
},
{
"name" : "macos",
"version" : "10.15"
},
{
"name" : "tvos",
"version" : "13.0"
},
{
"name" : "watchos",
"version" : "6.0"
}
],
"products" : [
{
"name" : "AppsShowcase",
"targets" : [
"AppsShowcase"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "AppsShowcase",
"module_type" : "SwiftTarget",
"name" : "AppsShowcase",
"path" : "Sources/AppsShowcase",
"product_memberships" : [
"AppsShowcase"
],
"resources" : [
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/AppsShowcase/Resources/Localizable.strings",
"rule" : {
"process" : {
}
}
}
],
"sources" : [
"AppsResponse.swift",
"AppsShowcase.swift",
"ShowcasedApp.swift",
"Views/ShowcasedAppLink.swift",
"Views/ShowcasedAppRow.swift",
"Views/ShowcasedAppsSection.swift"
],
"type" : "library"
}
],
"tools_version" : "5.3"
}
Done.