Build Information
Failed to build AppScreenshotKit, reference main (5ade2a), with Swift 6.2 for Linux on 30 Jan 2026 09:27:36 UTC.
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4609320-3":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/finestructure/spi-images:basic-6.2-latest swift build --triple x86_64-unknown-linux-gnu 2>&1Build Log
========================================
RunAll
========================================
Builder version: 4.68.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/shitamori1272/AppScreenshotKit.git
Reference: main
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/shitamori1272/AppScreenshotKit
* branch main -> FETCH_HEAD
* [new branch] main -> origin/main
HEAD is now at 5ade2af Docs readme refresh (#16)
Cloned https://github.com/shitamori1272/AppScreenshotKit.git
Revision (git rev-parse @):
5ade2af2ed7e778a811a7b41c6e8c0f2bbe9d480
SUCCESS checkout https://github.com/shitamori1272/AppScreenshotKit.git at main
========================================
Build
========================================
Selected platform: linux
Swift version: 6.2
Building package at path: $PWD
https://github.com/shitamori1272/AppScreenshotKit.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-3":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/finestructure/spi-images:basic-6.2-latest swift build --triple x86_64-unknown-linux-gnu 2>&1
basic-6.2-latest: Pulling from finestructure/spi-images
Digest: sha256:257b0ae9749b4eea8553a58f7bf60a672611c061e9b845ccfee371e7c1138ce8
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.2-latest
Fetching https://github.com/swiftlang/swift-syntax.git
[1/73896] Fetching swift-syntax
Fetched https://github.com/swiftlang/swift-syntax.git from cache (9.09s)
Computing version for https://github.com/swiftlang/swift-syntax.git
Computed https://github.com/swiftlang/swift-syntax.git at 601.0.1 (11.54s)
Creating working copy for https://github.com/swiftlang/swift-syntax.git
Working copy of https://github.com/swiftlang/swift-syntax.git resolved at 601.0.1
Downloading package prebuilt https://download.swift.org/prebuilts/swift-syntax/601.0.1/swift-6.2.3-RELEASE-MacroSupport-ubuntu_jammy_x86_64.tar.gz
Downloaded https://download.swift.org/prebuilts/swift-syntax/601.0.1/swift-6.2.3-RELEASE-MacroSupport-ubuntu_jammy_x86_64.tar.gz (0.70s)
warning: No bezels found in /root/.cache/com.shitamori1272.AppScreenshotKit/AppleDesignResource. Please run the command to download bezels first.
"swift run AppScreenshotKitCLI download-bezel-image"
[1/1] Compiling plugin RegisterBezelsCommand
[2/2] Compiling plugin SwiftFormatLintCommand
Building for debugging...
[2/18] Write sources
[8/18] Register Dummy Bezel image file
[9/18] Write swift-version-24593BA9C3E375BF.txt
[9/18] Copying AppleDesignResource
Tests/AppScreenshotKitCLITests/Mocks/FileManagerMock.swift:29:1: warning: [LineLength] line is too long
Sources/AppScreenshotCore/Model/DeviceModel.swift:46:76: warning: [AddLines] add 1 line break
[11/62] swift format lint
[13/62] Emitting module AppScreenshotMacroPlugin
[14/62] Compiling AppScreenshotMacroPlugin AppScreenshotMacro.swift
[15/62] Compiling AppScreenshotMacroPlugin ProvidedMacros.swift
[16/63] Wrapping AST for AppScreenshotMacroPlugin for debugging
[17/63] Write Objects.LinkFileList
[18/63] Linking AppScreenshotMacroPlugin-tool
[20/63] Compiling AppScreenshotKitCLI RSSHandler.swift
/host/spi-builder-workspace/Sources/AppScreenshotKitCLI/RSSHandler.swift:19:67: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
17 | let urlSession: URLSessionProtocol
18 |
19 | init(rssURL: URL, urlSession: URLSessionProtocol = URLSession.shared) {
| `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
20 | self.rssURL = rssURL
21 | self.urlSession = urlSession
[21/64] Compiling AppScreenshotKitCLI FileManager+Protocol.swift
[22/64] Compiling AppScreenshotKitCLI DMGHandler.swift
[23/64] Compiling AppScreenshotKitCLI URLSession+Protocol.swift
/host/spi-builder-workspace/Sources/AppScreenshotKitCLI/URLSession+Protocol.swift:13:53: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
11 | /// Implement this protocol in types that need to perform network requests, such as `URLSession` or mock objects in test cases.
12 | protocol URLSessionProtocol {
13 | func data(from url: URL) async throws -> (Data, URLResponse)
| `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
14 | }
15 |
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
| `- note: 'URLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AppScreenshotKitCLI/URLSession+Protocol.swift:16:1: error: non-nominal type 'URLSession' (aka 'AnyObject') cannot be extended [#NominalTypes]
14 | }
15 |
16 | extension URLSession: URLSessionProtocol {}
| `- error: non-nominal type 'URLSession' (aka 'AnyObject') cannot be extended [#NominalTypes]
17 |
[#NominalTypes]: <https://docs.swift.org/compiler/documentation/diagnostics/nominal-types>
[24/64] Compiling AppScreenshotCore Sample.swift
/host/spi-builder-workspace/Sources/AppScreenshotCore/AppScreenshot+Preview.swift:9:8: error: no such module 'SwiftUI'
7 |
8 | import Foundation
9 | import SwiftUI
| `- error: no such module 'SwiftUI'
10 |
11 | // MARK: - Preview Extension
[25/64] Compiling AppScreenshotCore Bezel.swift
/host/spi-builder-workspace/Sources/AppScreenshotCore/AppScreenshot+Preview.swift:9:8: error: no such module 'SwiftUI'
7 |
8 | import Foundation
9 | import SwiftUI
| `- error: no such module 'SwiftUI'
10 |
11 | // MARK: - Preview Extension
[26/64] Compiling AppScreenshotCore DeviceAppearanceViewModel.swift
/host/spi-builder-workspace/Sources/AppScreenshotCore/AppScreenshot+Preview.swift:9:8: error: no such module 'SwiftUI'
7 |
8 | import Foundation
9 | import SwiftUI
| `- error: no such module 'SwiftUI'
10 |
11 | // MARK: - Preview Extension
[27/64] Compiling AppScreenshotCore DeviceScreenViewModel.swift
/host/spi-builder-workspace/Sources/AppScreenshotCore/AppScreenshot+Preview.swift:9:8: error: no such module 'SwiftUI'
7 |
8 | import Foundation
9 | import SwiftUI
| `- error: no such module 'SwiftUI'
10 |
11 | // MARK: - Preview Extension
[28/64] Compiling AppScreenshotCore AppleDesignResourceBezelDefinition.swift
/host/spi-builder-workspace/Sources/AppScreenshotCore/AppScreenshot+Preview.swift:9:8: error: no such module 'SwiftUI'
7 |
8 | import Foundation
9 | import SwiftUI
| `- error: no such module 'SwiftUI'
10 |
11 | // MARK: - Preview Extension
[29/64] Compiling AppScreenshotCore DeviceCategory.swift
/host/spi-builder-workspace/Sources/AppScreenshotCore/AppScreenshot+Preview.swift:9:8: error: no such module 'SwiftUI'
7 |
8 | import Foundation
9 | import SwiftUI
| `- error: no such module 'SwiftUI'
10 |
11 | // MARK: - Preview Extension
[30/64] Compiling AppScreenshotCore DeviceColor.swift
/host/spi-builder-workspace/Sources/AppScreenshotCore/AppScreenshot+Preview.swift:9:8: error: no such module 'SwiftUI'
7 |
8 | import Foundation
9 | import SwiftUI
| `- error: no such module 'SwiftUI'
10 |
11 | // MARK: - Preview Extension
[31/64] Compiling AppScreenshotCore DeviceModel.swift
/host/spi-builder-workspace/Sources/AppScreenshotCore/AppScreenshot+Preview.swift:9:8: error: no such module 'SwiftUI'
7 |
8 | import Foundation
9 | import SwiftUI
| `- error: no such module 'SwiftUI'
10 |
11 | // MARK: - Preview Extension
[32/64] Compiling AppScreenshotCore DeviceView.swift
/host/spi-builder-workspace/Sources/AppScreenshotCore/AppScreenshot+Preview.swift:9:8: error: no such module 'SwiftUI'
7 |
8 | import Foundation
9 | import SwiftUI
| `- error: no such module 'SwiftUI'
10 |
11 | // MARK: - Preview Extension
[33/64] Compiling AppScreenshotCore DeviceViewModel.swift
/host/spi-builder-workspace/Sources/AppScreenshotCore/AppScreenshot+Preview.swift:9:8: error: no such module 'SwiftUI'
7 |
8 | import Foundation
9 | import SwiftUI
| `- error: no such module 'SwiftUI'
10 |
11 | // MARK: - Preview Extension
[34/64] Compiling AppScreenshotCore Environments.swift
/host/spi-builder-workspace/Sources/AppScreenshotCore/AppScreenshot+Preview.swift:9:8: error: no such module 'SwiftUI'
7 |
8 | import Foundation
9 | import SwiftUI
| `- error: no such module 'SwiftUI'
10 |
11 | // MARK: - Preview Extension
[35/64] Compiling AppScreenshotCore HostingViewWrap.swift
/host/spi-builder-workspace/Sources/AppScreenshotCore/AppScreenshot+Preview.swift:9:8: error: no such module 'SwiftUI'
7 |
8 | import Foundation
9 | import SwiftUI
| `- error: no such module 'SwiftUI'
10 |
11 | // MARK: - Preview Extension
[36/68] Compiling AppScreenshotCore AppScreenshot+Export.swift
/host/spi-builder-workspace/Sources/AppScreenshotKitCLI/RSSHandler.swift:19:67: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
17 | let urlSession: URLSessionProtocol
18 |
19 | init(rssURL: URL, urlSession: URLSessionProtocol = URLSession.shared) {
| `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
20 | self.rssURL = rssURL
21 | self.urlSession = urlSession
/host/spi-builder-workspace/Sources/AppScreenshotKitCLI/BezelImageDownloader.swift:29:53: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
27 | dmgHandler: ((URL) -> DMGHandlerProtocol) = { DMGHandler(mountPointURL: $0) },
28 | shell: (() -> ShellProtocol) = { Shell() },
29 | urlSession: URLSessionProtocol = URLSession.shared,
| `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
30 | additionalDMGURLs: [URL] = []
31 | ) {
[37/68] Compiling AppScreenshotCore AppScreenshot+Preview.swift
/host/spi-builder-workspace/Sources/AppScreenshotKitCLI/RSSHandler.swift:19:67: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
17 | let urlSession: URLSessionProtocol
18 |
19 | init(rssURL: URL, urlSession: URLSessionProtocol = URLSession.shared) {
| `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
20 | self.rssURL = rssURL
21 | self.urlSession = urlSession
/host/spi-builder-workspace/Sources/AppScreenshotKitCLI/BezelImageDownloader.swift:29:53: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
27 | dmgHandler: ((URL) -> DMGHandlerProtocol) = { DMGHandler(mountPointURL: $0) },
28 | shell: (() -> ShellProtocol) = { Shell() },
29 | urlSession: URLSessionProtocol = URLSession.shared,
| `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
30 | additionalDMGURLs: [URL] = []
31 | ) {
error: emit-module command failed with exit code 1 (use -v to see invocation)
[38/68] Emitting module AppScreenshotKitCLI
/host/spi-builder-workspace/Sources/AppScreenshotKitCLI/RSSHandler.swift:19:67: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
17 | let urlSession: URLSessionProtocol
18 |
19 | init(rssURL: URL, urlSession: URLSessionProtocol = URLSession.shared) {
| `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
20 | self.rssURL = rssURL
21 | self.urlSession = urlSession
/host/spi-builder-workspace/Sources/AppScreenshotKitCLI/BezelImageDownloader.swift:29:53: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
27 | dmgHandler: ((URL) -> DMGHandlerProtocol) = { DMGHandler(mountPointURL: $0) },
28 | shell: (() -> ShellProtocol) = { Shell() },
29 | urlSession: URLSessionProtocol = URLSession.shared,
| `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
30 | additionalDMGURLs: [URL] = []
31 | ) {
/host/spi-builder-workspace/Sources/AppScreenshotKitCLI/URLSession+Protocol.swift:13:53: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
11 | /// Implement this protocol in types that need to perform network requests, such as `URLSession` or mock objects in test cases.
12 | protocol URLSessionProtocol {
13 | func data(from url: URL) async throws -> (Data, URLResponse)
| `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
14 | }
15 |
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLResponse = AnyObject
| `- note: 'URLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AppScreenshotKitCLI/URLSession+Protocol.swift:16:1: error: non-nominal type 'URLSession' (aka 'AnyObject') cannot be extended [#NominalTypes]
14 | }
15 |
16 | extension URLSession: URLSessionProtocol {}
| `- error: non-nominal type 'URLSession' (aka 'AnyObject') cannot be extended [#NominalTypes]
17 |
[#NominalTypes]: <https://docs.swift.org/compiler/documentation/diagnostics/nominal-types>
/host/spi-builder-workspace/Sources/AppScreenshotCore/AppScreenshot+Preview.swift:9:8: error: no such module 'SwiftUI'
7 |
8 | import Foundation
9 | import SwiftUI
| `- error: no such module 'SwiftUI'
10 |
11 | // MARK: - Preview Extension
/host/spi-builder-workspace/Sources/AppScreenshotCore/AppScreenshot+Preview.swift:9:8: error: no such module 'SwiftUI'
7 |
8 | import Foundation
9 | import SwiftUI
| `- error: no such module 'SwiftUI'
10 |
11 | // MARK: - Preview Extension
[41/68] Compiling AppScreenshotCore AppScreenshot.swift
/host/spi-builder-workspace/Sources/AppScreenshotCore/AppScreenshot+Preview.swift:9:8: error: no such module 'SwiftUI'
7 |
8 | import Foundation
9 | import SwiftUI
| `- error: no such module 'SwiftUI'
10 |
11 | // MARK: - Preview Extension
[42/68] Compiling AppScreenshotCore AppScreenshotConfiguration.swift
/host/spi-builder-workspace/Sources/AppScreenshotCore/AppScreenshot+Preview.swift:9:8: error: no such module 'SwiftUI'
7 |
8 | import Foundation
9 | import SwiftUI
| `- error: no such module 'SwiftUI'
10 |
11 | // MARK: - Preview Extension
[43/68] Compiling AppScreenshotCore AppScreenshotDevice.swift
/host/spi-builder-workspace/Sources/AppScreenshotCore/AppScreenshot+Preview.swift:9:8: error: no such module 'SwiftUI'
7 |
8 | import Foundation
9 | import SwiftUI
| `- error: no such module 'SwiftUI'
10 |
11 | // MARK: - Preview Extension
error: emit-module command failed with exit code 1 (use -v to see invocation)
[44/68] Emitting module AppScreenshotCore
/host/spi-builder-workspace/Sources/AppScreenshotCore/AppScreenshot+Preview.swift:9:8: error: no such module 'SwiftUI'
7 |
8 | import Foundation
9 | import SwiftUI
| `- error: no such module 'SwiftUI'
10 |
11 | // MARK: - Preview Extension
/host/spi-builder-workspace/Sources/AppScreenshotKitCLI/RSSHandler.swift:19:67: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
17 | let urlSession: URLSessionProtocol
18 |
19 | init(rssURL: URL, urlSession: URLSessionProtocol = URLSession.shared) {
| `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
20 | self.rssURL = rssURL
21 | self.urlSession = urlSession
/host/spi-builder-workspace/Sources/AppScreenshotKitCLI/BezelImageDownloader.swift:29:53: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
27 | dmgHandler: ((URL) -> DMGHandlerProtocol) = { DMGHandler(mountPointURL: $0) },
28 | shell: (() -> ShellProtocol) = { Shell() },
29 | urlSession: URLSessionProtocol = URLSession.shared,
| `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
30 | additionalDMGURLs: [URL] = []
31 | ) {
/host/spi-builder-workspace/Sources/AppScreenshotKitCLI/RSSHandler.swift:19:67: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
17 | let urlSession: URLSessionProtocol
18 |
19 | init(rssURL: URL, urlSession: URLSessionProtocol = URLSession.shared) {
| `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
20 | self.rssURL = rssURL
21 | self.urlSession = urlSession
/host/spi-builder-workspace/Sources/AppScreenshotKitCLI/BezelImageDownloader.swift:29:53: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
27 | dmgHandler: ((URL) -> DMGHandlerProtocol) = { DMGHandler(mountPointURL: $0) },
28 | shell: (() -> ShellProtocol) = { Shell() },
29 | urlSession: URLSessionProtocol = URLSession.shared,
| `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
30 | additionalDMGURLs: [URL] = []
31 | ) {
[47/68] Compiling AppScreenshotCore AppScreenshotEnvironment.swift
/host/spi-builder-workspace/Sources/AppScreenshotCore/AppScreenshot+Preview.swift:9:8: error: no such module 'SwiftUI'
7 |
8 | import Foundation
9 | import SwiftUI
| `- error: no such module 'SwiftUI'
10 |
11 | // MARK: - Preview Extension
[48/68] Compiling AppScreenshotCore AppScreenshotImageFormat.swift
/host/spi-builder-workspace/Sources/AppScreenshotCore/AppScreenshot+Preview.swift:9:8: error: no such module 'SwiftUI'
7 |
8 | import Foundation
9 | import SwiftUI
| `- error: no such module 'SwiftUI'
10 |
11 | // MARK: - Preview Extension
[49/68] Compiling AppScreenshotCore AppScreenshotSize+iPad110Inch.swift
/host/spi-builder-workspace/Sources/AppScreenshotCore/AppScreenshot+Preview.swift:9:8: error: no such module 'SwiftUI'
7 |
8 | import Foundation
9 | import SwiftUI
| `- error: no such module 'SwiftUI'
10 |
11 | // MARK: - Preview Extension
[50/68] Compiling AppScreenshotCore AppScreenshotSize+iPad130Inch.swift
/host/spi-builder-workspace/Sources/AppScreenshotCore/AppScreenshot+Preview.swift:9:8: error: no such module 'SwiftUI'
7 |
8 | import Foundation
9 | import SwiftUI
| `- error: no such module 'SwiftUI'
10 |
11 | // MARK: - Preview Extension
[51/68] Compiling AppScreenshotCore AppScreenshotSize+iPad97Inch.swift
/host/spi-builder-workspace/Sources/AppScreenshotCore/AppScreenshot+Preview.swift:9:8: error: no such module 'SwiftUI'
7 |
8 | import Foundation
9 | import SwiftUI
| `- error: no such module 'SwiftUI'
10 |
11 | // MARK: - Preview Extension
[52/68] Compiling AppScreenshotCore AppScreenshotSize+iPhone61Inch.swift
/host/spi-builder-workspace/Sources/AppScreenshotCore/AppScreenshot+Preview.swift:9:8: error: no such module 'SwiftUI'
7 |
8 | import Foundation
9 | import SwiftUI
| `- error: no such module 'SwiftUI'
10 |
11 | // MARK: - Preview Extension
[53/68] Compiling AppScreenshotCore AppScreenshotSize+iPhone63Inch.swift
/host/spi-builder-workspace/Sources/AppScreenshotCore/AppScreenshot+Preview.swift:9:8: error: no such module 'SwiftUI'
7 |
8 | import Foundation
9 | import SwiftUI
| `- error: no such module 'SwiftUI'
10 |
11 | // MARK: - Preview Extension
[54/68] Compiling AppScreenshotCore AppScreenshotSize+iPhone69Inch.swift
/host/spi-builder-workspace/Sources/AppScreenshotCore/AppScreenshot+Preview.swift:9:8: error: no such module 'SwiftUI'
7 |
8 | import Foundation
9 | import SwiftUI
| `- error: no such module 'SwiftUI'
10 |
11 | // MARK: - Preview Extension
[55/68] Compiling AppScreenshotCore AppScreenshotSize.swift
/host/spi-builder-workspace/Sources/AppScreenshotCore/AppScreenshot+Preview.swift:9:8: error: no such module 'SwiftUI'
7 |
8 | import Foundation
9 | import SwiftUI
| `- error: no such module 'SwiftUI'
10 |
11 | // MARK: - Preview Extension
[56/68] Compiling AppScreenshotCore DeviceOrientation.swift
/host/spi-builder-workspace/Sources/AppScreenshotCore/AppScreenshot+Preview.swift:9:8: error: no such module 'SwiftUI'
7 |
8 | import Foundation
9 | import SwiftUI
| `- error: no such module 'SwiftUI'
10 |
11 | // MARK: - Preview Extension
[57/68] Compiling AppScreenshotCore AppScreenshotKitError.swift
/host/spi-builder-workspace/Sources/AppScreenshotCore/AppScreenshot+Preview.swift:9:8: error: no such module 'SwiftUI'
7 |
8 | import Foundation
9 | import SwiftUI
| `- error: no such module 'SwiftUI'
10 |
11 | // MARK: - Preview Extension
[58/68] Compiling AppScreenshotCore BezelImageLoader.swift
/host/spi-builder-workspace/Sources/AppScreenshotCore/AppScreenshot+Preview.swift:9:8: error: no such module 'SwiftUI'
7 |
8 | import Foundation
9 | import SwiftUI
| `- error: no such module 'SwiftUI'
10 |
11 | // MARK: - Preview Extension
[59/68] Compiling AppScreenshotCore PNGDataConverter.swift
/host/spi-builder-workspace/Sources/AppScreenshotCore/AppScreenshot+Preview.swift:9:8: error: no such module 'SwiftUI'
7 |
8 | import Foundation
9 | import SwiftUI
| `- error: no such module 'SwiftUI'
10 |
11 | // MARK: - Preview Extension
[60/68] Compiling AppScreenshotKitCLI SketchDocument.swift
[61/68] Compiling AppScreenshotKitCLI Shell.swift
[62/68] Compiling AppScreenshotCore ScaleView.swift
/host/spi-builder-workspace/Sources/AppScreenshotCore/AppScreenshot+Preview.swift:9:8: error: no such module 'SwiftUI'
7 |
8 | import Foundation
9 | import SwiftUI
| `- error: no such module 'SwiftUI'
10 |
11 | // MARK: - Preview Extension
[63/68] Compiling AppScreenshotCore ScreenContentView.swift
/host/spi-builder-workspace/Sources/AppScreenshotCore/AppScreenshot+Preview.swift:9:8: error: no such module 'SwiftUI'
7 |
8 | import Foundation
9 | import SwiftUI
| `- error: no such module 'SwiftUI'
10 |
11 | // MARK: - Preview Extension
[64/68] Compiling AppScreenshotCore VerticalLinesView.swift
/host/spi-builder-workspace/Sources/AppScreenshotCore/AppScreenshot+Preview.swift:9:8: error: no such module 'SwiftUI'
7 |
8 | import Foundation
9 | import SwiftUI
| `- error: no such module 'SwiftUI'
10 |
11 | // MARK: - Preview Extension
[65/68] Compiling AppScreenshotCore VirtualBezelView.swift
/host/spi-builder-workspace/Sources/AppScreenshotCore/AppScreenshot+Preview.swift:9:8: error: no such module 'SwiftUI'
7 |
8 | import Foundation
9 | import SwiftUI
| `- error: no such module 'SwiftUI'
10 |
11 | // MARK: - Preview Extension
BUILD FAILURE 6.2 linux