Build Information
Failed to build SwiftGraphics, reference main (32d235
), with Swift 6.1 for Wasm on 27 May 2025 22:46:30 UTC.
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4606859-2":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi 2>&1
Build Log
========================================
RunAll
========================================
Builder version: 4.63.1
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/emorydunn/SwiftGraphics.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/emorydunn/SwiftGraphics
* branch main -> FETCH_HEAD
* [new branch] main -> origin/main
HEAD is now at 32d2350 Add additional logging
Cloned https://github.com/emorydunn/SwiftGraphics.git
Revision (git rev-parse @):
32d2350da9e0591f0b23f662dd3e51293a1cfa12
SUCCESS checkout https://github.com/emorydunn/SwiftGraphics.git at main
========================================
Build
========================================
Selected platform: wasm
Swift version: 6.1
Building package at path: $PWD
https://github.com/emorydunn/SwiftGraphics.git
https://github.com/emorydunn/SwiftGraphics.git
WARNING: environment variable SUPPRESS_SWIFT_6_FLAGS is not set
{
"dependencies" : [
],
"manifest_display_name" : "SwiftGraphics",
"name" : "SwiftGraphics",
"path" : "/host/spi-builder-workspace",
"platforms" : [
],
"products" : [
{
"name" : "SwiftGraphics",
"targets" : [
"SwiftGraphics"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "SwiftGraphicsTests",
"module_type" : "SwiftTarget",
"name" : "SwiftGraphicsTests",
"path" : "Tests/SwiftGraphicsTests",
"sources" : [
"ColorTests.swift",
"RayTracing Tests/RayTraceSketch.swift",
"RayTracing Tests/RayTraceTimingTests.swift",
"SVGTests/SVGContextTests.swift",
"SVGTests/SVGDrawableTests.swift",
"Shape tests/CircleTests.swift",
"Shape tests/IntersectableTests.swift",
"Shape tests/LineTests.swift",
"Shape tests/PathTests.swift",
"Shape tests/RectangleTests.swift",
"SwiftGraphicsTests.swift",
"XCTestManifests.swift"
],
"target_dependencies" : [
"SwiftGraphics"
],
"type" : "test"
},
{
"c99name" : "SwiftGraphics",
"module_type" : "SwiftTarget",
"name" : "SwiftGraphics",
"path" : "Sources/SwiftGraphics",
"product_memberships" : [
"SwiftGraphics"
],
"sources" : [
"Base Protocols/Intersectable/DefaultIntersections.swift",
"Base Protocols/Intersectable/Intersectable.swift",
"Base Protocols/Intersectable/RayTracable.swift",
"Base Protocols/Polygon.swift",
"Base Protocols/Shape.swift",
"Base Protocols/Sketch Protcols.swift",
"Base Protocols/Sketch.swift",
"Base Protocols/SketchView.swift",
"Drawing/Bitmap Drawing/CGDrawable.swift",
"Drawing/Bitmap Drawing/SketchBitmapDrawing.swift",
"Drawing/BlendMode.swift",
"Drawing/Color.swift",
"Drawing/DrawingContext.swift",
"Drawing/SVG Drawing/SVGContext.swift",
"Drawing/SVG Drawing/SVGDrawable.swift",
"Drawing/SVG Drawing/SketchSVGDrawing.swift",
"Extensions/Angles.swift",
"Extensions/Array.swift",
"Extensions/Clamped.swift",
"Extensions/Double.swift",
"Extensions/String.swift",
"Extensions/XMLElement.swift",
"Math/Perlin.swift",
"Math/PointInPolygon.swift",
"Ray Tracing/CircleEmitter.swift",
"Ray Tracing/DirectionalEmitter.swift",
"Ray Tracing/Emitter.swift",
"Ray Tracing/Fresnel.swift",
"Ray Tracing/LinearEmitter.swift",
"Shapes/BezierPath.swift",
"Shapes/BoundingBox.swift",
"Shapes/Circle/Circle+Drawable.swift",
"Shapes/Circle/Circle+RayTracable.swift",
"Shapes/Circle/Circle.swift",
"Shapes/Hatching/HatchFill.swift",
"Shapes/Hatching/OverflowHatch.swift",
"Shapes/Line.swift",
"Shapes/Path.swift",
"Shapes/Rectangle.swift",
"Shapes/Size.swift",
"Shapes/Vector.swift"
],
"type" : "library"
}
],
"tools_version" : "5.1"
}
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-2":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi -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 2>&1
wasm-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:7e37457820e5f17452a98118754f345f2619722c485f2db0d8b666940a83afd2
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-24593BA9C3E375BF.txt
[3/39] Compiling SwiftGraphics Circle+Drawable.swift
/host/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Shape.swift:2:8: error: no such module 'AppKit'
1 | import Foundation
2 | import AppKit
| `- error: no such module 'AppKit'
3 |
4 | /// The base protocol for any shape that is drawable on screen
[4/39] Compiling SwiftGraphics Circle+RayTracable.swift
/host/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Shape.swift:2:8: error: no such module 'AppKit'
1 | import Foundation
2 | import AppKit
| `- error: no such module 'AppKit'
3 |
4 | /// The base protocol for any shape that is drawable on screen
[5/39] Compiling SwiftGraphics Circle.swift
/host/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Shape.swift:2:8: error: no such module 'AppKit'
1 | import Foundation
2 | import AppKit
| `- error: no such module 'AppKit'
3 |
4 | /// The base protocol for any shape that is drawable on screen
[6/39] Compiling SwiftGraphics HatchFill.swift
/host/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Shape.swift:2:8: error: no such module 'AppKit'
1 | import Foundation
2 | import AppKit
| `- error: no such module 'AppKit'
3 |
4 | /// The base protocol for any shape that is drawable on screen
[7/39] Compiling SwiftGraphics OverflowHatch.swift
/host/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Shape.swift:2:8: error: no such module 'AppKit'
1 | import Foundation
2 | import AppKit
| `- error: no such module 'AppKit'
3 |
4 | /// The base protocol for any shape that is drawable on screen
[8/44] Compiling SwiftGraphics XMLElement.swift
/host/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Shape.swift:2:8: error: no such module 'AppKit'
1 | import Foundation
2 | import AppKit
| `- error: no such module 'AppKit'
3 |
4 | /// The base protocol for any shape that is drawable on screen
[9/44] Compiling SwiftGraphics Perlin.swift
/host/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Shape.swift:2:8: error: no such module 'AppKit'
1 | import Foundation
2 | import AppKit
| `- error: no such module 'AppKit'
3 |
4 | /// The base protocol for any shape that is drawable on screen
[10/44] Compiling SwiftGraphics PointInPolygon.swift
/host/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Shape.swift:2:8: error: no such module 'AppKit'
1 | import Foundation
2 | import AppKit
| `- error: no such module 'AppKit'
3 |
4 | /// The base protocol for any shape that is drawable on screen
[11/44] Compiling SwiftGraphics CircleEmitter.swift
/host/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Shape.swift:2:8: error: no such module 'AppKit'
1 | import Foundation
2 | import AppKit
| `- error: no such module 'AppKit'
3 |
4 | /// The base protocol for any shape that is drawable on screen
[12/44] Compiling SwiftGraphics DirectionalEmitter.swift
/host/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Shape.swift:2:8: error: no such module 'AppKit'
1 | import Foundation
2 | import AppKit
| `- error: no such module 'AppKit'
3 |
4 | /// The base protocol for any shape that is drawable on screen
[13/44] Compiling SwiftGraphics Emitter.swift
/host/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Shape.swift:2:8: error: no such module 'AppKit'
1 | import Foundation
2 | import AppKit
| `- error: no such module 'AppKit'
3 |
4 | /// The base protocol for any shape that is drawable on screen
[14/44] Compiling SwiftGraphics Fresnel.swift
/host/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Shape.swift:2:8: error: no such module 'AppKit'
1 | import Foundation
2 | import AppKit
| `- error: no such module 'AppKit'
3 |
4 | /// The base protocol for any shape that is drawable on screen
[15/44] Compiling SwiftGraphics LinearEmitter.swift
/host/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Shape.swift:2:8: error: no such module 'AppKit'
1 | import Foundation
2 | import AppKit
| `- error: no such module 'AppKit'
3 |
4 | /// The base protocol for any shape that is drawable on screen
[16/44] Compiling SwiftGraphics BezierPath.swift
/host/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Shape.swift:2:8: error: no such module 'AppKit'
1 | import Foundation
2 | import AppKit
| `- error: no such module 'AppKit'
3 |
4 | /// The base protocol for any shape that is drawable on screen
[17/44] Compiling SwiftGraphics BoundingBox.swift
/host/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Shape.swift:2:8: error: no such module 'AppKit'
1 | import Foundation
2 | import AppKit
| `- error: no such module 'AppKit'
3 |
4 | /// The base protocol for any shape that is drawable on screen
error: emit-module command failed with exit code 1 (use -v to see invocation)
[18/44] Emitting module SwiftGraphics
/host/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Shape.swift:2:8: error: no such module 'AppKit'
1 | import Foundation
2 | import AppKit
| `- error: no such module 'AppKit'
3 |
4 | /// The base protocol for any shape that is drawable on screen
[19/44] Compiling SwiftGraphics Angles.swift
/host/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Shape.swift:2:8: error: no such module 'AppKit'
1 | import Foundation
2 | import AppKit
| `- error: no such module 'AppKit'
3 |
4 | /// The base protocol for any shape that is drawable on screen
[20/44] Compiling SwiftGraphics Array.swift
/host/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Shape.swift:2:8: error: no such module 'AppKit'
1 | import Foundation
2 | import AppKit
| `- error: no such module 'AppKit'
3 |
4 | /// The base protocol for any shape that is drawable on screen
[21/44] Compiling SwiftGraphics Clamped.swift
/host/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Shape.swift:2:8: error: no such module 'AppKit'
1 | import Foundation
2 | import AppKit
| `- error: no such module 'AppKit'
3 |
4 | /// The base protocol for any shape that is drawable on screen
[22/44] Compiling SwiftGraphics Double.swift
/host/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Shape.swift:2:8: error: no such module 'AppKit'
1 | import Foundation
2 | import AppKit
| `- error: no such module 'AppKit'
3 |
4 | /// The base protocol for any shape that is drawable on screen
[23/44] Compiling SwiftGraphics String.swift
/host/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Shape.swift:2:8: error: no such module 'AppKit'
1 | import Foundation
2 | import AppKit
| `- error: no such module 'AppKit'
3 |
4 | /// The base protocol for any shape that is drawable on screen
[24/44] Compiling SwiftGraphics Color.swift
/host/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Shape.swift:2:8: error: no such module 'AppKit'
1 | import Foundation
2 | import AppKit
| `- error: no such module 'AppKit'
3 |
4 | /// The base protocol for any shape that is drawable on screen
[25/44] Compiling SwiftGraphics DrawingContext.swift
/host/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Shape.swift:2:8: error: no such module 'AppKit'
1 | import Foundation
2 | import AppKit
| `- error: no such module 'AppKit'
3 |
4 | /// The base protocol for any shape that is drawable on screen
[26/44] Compiling SwiftGraphics SVGContext.swift
/host/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Shape.swift:2:8: error: no such module 'AppKit'
1 | import Foundation
2 | import AppKit
| `- error: no such module 'AppKit'
3 |
4 | /// The base protocol for any shape that is drawable on screen
[27/44] Compiling SwiftGraphics SVGDrawable.swift
/host/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Shape.swift:2:8: error: no such module 'AppKit'
1 | import Foundation
2 | import AppKit
| `- error: no such module 'AppKit'
3 |
4 | /// The base protocol for any shape that is drawable on screen
[28/44] Compiling SwiftGraphics SketchSVGDrawing.swift
/host/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Shape.swift:2:8: error: no such module 'AppKit'
1 | import Foundation
2 | import AppKit
| `- error: no such module 'AppKit'
3 |
4 | /// The base protocol for any shape that is drawable on screen
[29/44] Compiling SwiftGraphics Sketch.swift
/host/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Shape.swift:2:8: error: no such module 'AppKit'
1 | import Foundation
2 | import AppKit
| `- error: no such module 'AppKit'
3 |
4 | /// The base protocol for any shape that is drawable on screen
[30/44] Compiling SwiftGraphics SketchView.swift
/host/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Shape.swift:2:8: error: no such module 'AppKit'
1 | import Foundation
2 | import AppKit
| `- error: no such module 'AppKit'
3 |
4 | /// The base protocol for any shape that is drawable on screen
[31/44] Compiling SwiftGraphics CGDrawable.swift
/host/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Shape.swift:2:8: error: no such module 'AppKit'
1 | import Foundation
2 | import AppKit
| `- error: no such module 'AppKit'
3 |
4 | /// The base protocol for any shape that is drawable on screen
[32/44] Compiling SwiftGraphics SketchBitmapDrawing.swift
/host/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Shape.swift:2:8: error: no such module 'AppKit'
1 | import Foundation
2 | import AppKit
| `- error: no such module 'AppKit'
3 |
4 | /// The base protocol for any shape that is drawable on screen
[33/44] Compiling SwiftGraphics BlendMode.swift
/host/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Shape.swift:2:8: error: no such module 'AppKit'
1 | import Foundation
2 | import AppKit
| `- error: no such module 'AppKit'
3 |
4 | /// The base protocol for any shape that is drawable on screen
[34/44] Compiling SwiftGraphics DefaultIntersections.swift
/host/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Shape.swift:2:8: error: no such module 'AppKit'
1 | import Foundation
2 | import AppKit
| `- error: no such module 'AppKit'
3 |
4 | /// The base protocol for any shape that is drawable on screen
[35/44] Compiling SwiftGraphics Intersectable.swift
/host/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Shape.swift:2:8: error: no such module 'AppKit'
1 | import Foundation
2 | import AppKit
| `- error: no such module 'AppKit'
3 |
4 | /// The base protocol for any shape that is drawable on screen
[36/44] Compiling SwiftGraphics RayTracable.swift
/host/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Shape.swift:2:8: error: no such module 'AppKit'
1 | import Foundation
2 | import AppKit
| `- error: no such module 'AppKit'
3 |
4 | /// The base protocol for any shape that is drawable on screen
[37/44] Compiling SwiftGraphics Polygon.swift
/host/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Shape.swift:2:8: error: no such module 'AppKit'
1 | import Foundation
2 | import AppKit
| `- error: no such module 'AppKit'
3 |
4 | /// The base protocol for any shape that is drawable on screen
[38/44] Compiling SwiftGraphics Shape.swift
/host/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Shape.swift:2:8: error: no such module 'AppKit'
1 | import Foundation
2 | import AppKit
| `- error: no such module 'AppKit'
3 |
4 | /// The base protocol for any shape that is drawable on screen
[39/44] Compiling SwiftGraphics Sketch Protcols.swift
/host/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Shape.swift:2:8: error: no such module 'AppKit'
1 | import Foundation
2 | import AppKit
| `- error: no such module 'AppKit'
3 |
4 | /// The base protocol for any shape that is drawable on screen
[40/44] Compiling SwiftGraphics Line.swift
/host/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Shape.swift:2:8: error: no such module 'AppKit'
1 | import Foundation
2 | import AppKit
| `- error: no such module 'AppKit'
3 |
4 | /// The base protocol for any shape that is drawable on screen
[41/44] Compiling SwiftGraphics Path.swift
/host/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Shape.swift:2:8: error: no such module 'AppKit'
1 | import Foundation
2 | import AppKit
| `- error: no such module 'AppKit'
3 |
4 | /// The base protocol for any shape that is drawable on screen
[42/44] Compiling SwiftGraphics Rectangle.swift
/host/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Shape.swift:2:8: error: no such module 'AppKit'
1 | import Foundation
2 | import AppKit
| `- error: no such module 'AppKit'
3 |
4 | /// The base protocol for any shape that is drawable on screen
[43/44] Compiling SwiftGraphics Size.swift
/host/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Shape.swift:2:8: error: no such module 'AppKit'
1 | import Foundation
2 | import AppKit
| `- error: no such module 'AppKit'
3 |
4 | /// The base protocol for any shape that is drawable on screen
[44/44] Compiling SwiftGraphics Vector.swift
/host/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Shape.swift:2:8: error: no such module 'AppKit'
1 | import Foundation
2 | import AppKit
| `- error: no such module 'AppKit'
3 |
4 | /// The base protocol for any shape that is drawable on screen
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-2":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi 2>&1
wasm-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:7e37457820e5f17452a98118754f345f2619722c485f2db0d8b666940a83afd2
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest
[0/1] Planning build
Building for debugging...
[0/1] Write swift-version-24593BA9C3E375BF.txt
[2/38] Compiling SwiftGraphics Sketch.swift
/host/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Shape.swift:2:8: error: no such module 'AppKit'
1 | import Foundation
2 | import AppKit
| `- error: no such module 'AppKit'
3 |
4 | /// The base protocol for any shape that is drawable on screen
[3/38] Compiling SwiftGraphics SketchView.swift
/host/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Shape.swift:2:8: error: no such module 'AppKit'
1 | import Foundation
2 | import AppKit
| `- error: no such module 'AppKit'
3 |
4 | /// The base protocol for any shape that is drawable on screen
[4/38] Compiling SwiftGraphics CGDrawable.swift
/host/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Shape.swift:2:8: error: no such module 'AppKit'
1 | import Foundation
2 | import AppKit
| `- error: no such module 'AppKit'
3 |
4 | /// The base protocol for any shape that is drawable on screen
[5/38] Compiling SwiftGraphics SketchBitmapDrawing.swift
/host/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Shape.swift:2:8: error: no such module 'AppKit'
1 | import Foundation
2 | import AppKit
| `- error: no such module 'AppKit'
3 |
4 | /// The base protocol for any shape that is drawable on screen
[6/38] Compiling SwiftGraphics BlendMode.swift
/host/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Shape.swift:2:8: error: no such module 'AppKit'
1 | import Foundation
2 | import AppKit
| `- error: no such module 'AppKit'
3 |
4 | /// The base protocol for any shape that is drawable on screen
[7/38] Compiling SwiftGraphics DefaultIntersections.swift
/host/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Shape.swift:2:8: error: no such module 'AppKit'
1 | import Foundation
2 | import AppKit
| `- error: no such module 'AppKit'
3 |
4 | /// The base protocol for any shape that is drawable on screen
[8/38] Compiling SwiftGraphics Intersectable.swift
/host/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Shape.swift:2:8: error: no such module 'AppKit'
1 | import Foundation
2 | import AppKit
| `- error: no such module 'AppKit'
3 |
4 | /// The base protocol for any shape that is drawable on screen
[9/38] Compiling SwiftGraphics RayTracable.swift
/host/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Shape.swift:2:8: error: no such module 'AppKit'
1 | import Foundation
2 | import AppKit
| `- error: no such module 'AppKit'
3 |
4 | /// The base protocol for any shape that is drawable on screen
[10/38] Compiling SwiftGraphics Polygon.swift
/host/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Shape.swift:2:8: error: no such module 'AppKit'
1 | import Foundation
2 | import AppKit
| `- error: no such module 'AppKit'
3 |
4 | /// The base protocol for any shape that is drawable on screen
[11/38] Compiling SwiftGraphics Shape.swift
/host/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Shape.swift:2:8: error: no such module 'AppKit'
1 | import Foundation
2 | import AppKit
| `- error: no such module 'AppKit'
3 |
4 | /// The base protocol for any shape that is drawable on screen
[12/38] Compiling SwiftGraphics Sketch Protcols.swift
/host/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Shape.swift:2:8: error: no such module 'AppKit'
1 | import Foundation
2 | import AppKit
| `- error: no such module 'AppKit'
3 |
4 | /// The base protocol for any shape that is drawable on screen
error: emit-module command failed with exit code 1 (use -v to see invocation)
[13/43] Emitting module SwiftGraphics
/host/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Shape.swift:2:8: error: no such module 'AppKit'
1 | import Foundation
2 | import AppKit
| `- error: no such module 'AppKit'
3 |
4 | /// The base protocol for any shape that is drawable on screen
[14/43] Compiling SwiftGraphics Emitter.swift
/host/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Shape.swift:2:8: error: no such module 'AppKit'
1 | import Foundation
2 | import AppKit
| `- error: no such module 'AppKit'
3 |
4 | /// The base protocol for any shape that is drawable on screen
[15/43] Compiling SwiftGraphics Fresnel.swift
/host/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Shape.swift:2:8: error: no such module 'AppKit'
1 | import Foundation
2 | import AppKit
| `- error: no such module 'AppKit'
3 |
4 | /// The base protocol for any shape that is drawable on screen
[16/43] Compiling SwiftGraphics LinearEmitter.swift
/host/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Shape.swift:2:8: error: no such module 'AppKit'
1 | import Foundation
2 | import AppKit
| `- error: no such module 'AppKit'
3 |
4 | /// The base protocol for any shape that is drawable on screen
[17/43] Compiling SwiftGraphics BezierPath.swift
/host/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Shape.swift:2:8: error: no such module 'AppKit'
1 | import Foundation
2 | import AppKit
| `- error: no such module 'AppKit'
3 |
4 | /// The base protocol for any shape that is drawable on screen
[18/43] Compiling SwiftGraphics BoundingBox.swift
/host/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Shape.swift:2:8: error: no such module 'AppKit'
1 | import Foundation
2 | import AppKit
| `- error: no such module 'AppKit'
3 |
4 | /// The base protocol for any shape that is drawable on screen
[19/43] Compiling SwiftGraphics XMLElement.swift
/host/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Shape.swift:2:8: error: no such module 'AppKit'
1 | import Foundation
2 | import AppKit
| `- error: no such module 'AppKit'
3 |
4 | /// The base protocol for any shape that is drawable on screen
[20/43] Compiling SwiftGraphics Perlin.swift
/host/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Shape.swift:2:8: error: no such module 'AppKit'
1 | import Foundation
2 | import AppKit
| `- error: no such module 'AppKit'
3 |
4 | /// The base protocol for any shape that is drawable on screen
[21/43] Compiling SwiftGraphics PointInPolygon.swift
/host/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Shape.swift:2:8: error: no such module 'AppKit'
1 | import Foundation
2 | import AppKit
| `- error: no such module 'AppKit'
3 |
4 | /// The base protocol for any shape that is drawable on screen
[22/43] Compiling SwiftGraphics CircleEmitter.swift
/host/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Shape.swift:2:8: error: no such module 'AppKit'
1 | import Foundation
2 | import AppKit
| `- error: no such module 'AppKit'
3 |
4 | /// The base protocol for any shape that is drawable on screen
[23/43] Compiling SwiftGraphics DirectionalEmitter.swift
/host/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Shape.swift:2:8: error: no such module 'AppKit'
1 | import Foundation
2 | import AppKit
| `- error: no such module 'AppKit'
3 |
4 | /// The base protocol for any shape that is drawable on screen
[24/43] Compiling SwiftGraphics Angles.swift
/host/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Shape.swift:2:8: error: no such module 'AppKit'
1 | import Foundation
2 | import AppKit
| `- error: no such module 'AppKit'
3 |
4 | /// The base protocol for any shape that is drawable on screen
[25/43] Compiling SwiftGraphics Array.swift
/host/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Shape.swift:2:8: error: no such module 'AppKit'
1 | import Foundation
2 | import AppKit
| `- error: no such module 'AppKit'
3 |
4 | /// The base protocol for any shape that is drawable on screen
[26/43] Compiling SwiftGraphics Clamped.swift
/host/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Shape.swift:2:8: error: no such module 'AppKit'
1 | import Foundation
2 | import AppKit
| `- error: no such module 'AppKit'
3 |
4 | /// The base protocol for any shape that is drawable on screen
[27/43] Compiling SwiftGraphics Double.swift
/host/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Shape.swift:2:8: error: no such module 'AppKit'
1 | import Foundation
2 | import AppKit
| `- error: no such module 'AppKit'
3 |
4 | /// The base protocol for any shape that is drawable on screen
[28/43] Compiling SwiftGraphics String.swift
/host/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Shape.swift:2:8: error: no such module 'AppKit'
1 | import Foundation
2 | import AppKit
| `- error: no such module 'AppKit'
3 |
4 | /// The base protocol for any shape that is drawable on screen
[29/43] Compiling SwiftGraphics Color.swift
/host/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Shape.swift:2:8: error: no such module 'AppKit'
1 | import Foundation
2 | import AppKit
| `- error: no such module 'AppKit'
3 |
4 | /// The base protocol for any shape that is drawable on screen
[30/43] Compiling SwiftGraphics DrawingContext.swift
/host/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Shape.swift:2:8: error: no such module 'AppKit'
1 | import Foundation
2 | import AppKit
| `- error: no such module 'AppKit'
3 |
4 | /// The base protocol for any shape that is drawable on screen
[31/43] Compiling SwiftGraphics SVGContext.swift
/host/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Shape.swift:2:8: error: no such module 'AppKit'
1 | import Foundation
2 | import AppKit
| `- error: no such module 'AppKit'
3 |
4 | /// The base protocol for any shape that is drawable on screen
[32/43] Compiling SwiftGraphics SVGDrawable.swift
/host/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Shape.swift:2:8: error: no such module 'AppKit'
1 | import Foundation
2 | import AppKit
| `- error: no such module 'AppKit'
3 |
4 | /// The base protocol for any shape that is drawable on screen
[33/43] Compiling SwiftGraphics SketchSVGDrawing.swift
/host/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Shape.swift:2:8: error: no such module 'AppKit'
1 | import Foundation
2 | import AppKit
| `- error: no such module 'AppKit'
3 |
4 | /// The base protocol for any shape that is drawable on screen
[34/43] Compiling SwiftGraphics Circle+Drawable.swift
/host/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Shape.swift:2:8: error: no such module 'AppKit'
1 | import Foundation
2 | import AppKit
| `- error: no such module 'AppKit'
3 |
4 | /// The base protocol for any shape that is drawable on screen
[35/43] Compiling SwiftGraphics Circle+RayTracable.swift
/host/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Shape.swift:2:8: error: no such module 'AppKit'
1 | import Foundation
2 | import AppKit
| `- error: no such module 'AppKit'
3 |
4 | /// The base protocol for any shape that is drawable on screen
[36/43] Compiling SwiftGraphics Circle.swift
/host/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Shape.swift:2:8: error: no such module 'AppKit'
1 | import Foundation
2 | import AppKit
| `- error: no such module 'AppKit'
3 |
4 | /// The base protocol for any shape that is drawable on screen
[37/43] Compiling SwiftGraphics HatchFill.swift
/host/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Shape.swift:2:8: error: no such module 'AppKit'
1 | import Foundation
2 | import AppKit
| `- error: no such module 'AppKit'
3 |
4 | /// The base protocol for any shape that is drawable on screen
[38/43] Compiling SwiftGraphics OverflowHatch.swift
/host/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Shape.swift:2:8: error: no such module 'AppKit'
1 | import Foundation
2 | import AppKit
| `- error: no such module 'AppKit'
3 |
4 | /// The base protocol for any shape that is drawable on screen
[39/43] Compiling SwiftGraphics Line.swift
/host/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Shape.swift:2:8: error: no such module 'AppKit'
1 | import Foundation
2 | import AppKit
| `- error: no such module 'AppKit'
3 |
4 | /// The base protocol for any shape that is drawable on screen
[40/43] Compiling SwiftGraphics Path.swift
/host/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Shape.swift:2:8: error: no such module 'AppKit'
1 | import Foundation
2 | import AppKit
| `- error: no such module 'AppKit'
3 |
4 | /// The base protocol for any shape that is drawable on screen
[41/43] Compiling SwiftGraphics Rectangle.swift
/host/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Shape.swift:2:8: error: no such module 'AppKit'
1 | import Foundation
2 | import AppKit
| `- error: no such module 'AppKit'
3 |
4 | /// The base protocol for any shape that is drawable on screen
[42/43] Compiling SwiftGraphics Size.swift
/host/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Shape.swift:2:8: error: no such module 'AppKit'
1 | import Foundation
2 | import AppKit
| `- error: no such module 'AppKit'
3 |
4 | /// The base protocol for any shape that is drawable on screen
[43/43] Compiling SwiftGraphics Vector.swift
/host/spi-builder-workspace/Sources/SwiftGraphics/Base Protocols/Shape.swift:2:8: error: no such module 'AppKit'
1 | import Foundation
2 | import AppKit
| `- error: no such module 'AppKit'
3 |
4 | /// The base protocol for any shape that is drawable on screen
BUILD FAILURE 6.1 wasm