The Swift Package Index logo.Swift Package Index

Build Information

Failed to build Kadr, reference main (7e655b), with Swift 6.0 for macOS (SPM) on 1 May 2026 09:53:37 UTC.

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.2.0.app xcrun swift build --arch arm64

Build Log

========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/SteliyanH/kadr.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/SteliyanH/kadr
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at 7e655bb docs: README — reference all three adapter packages, document v0.9 cycle
Cloned https://github.com/SteliyanH/kadr.git
Revision (git rev-parse @):
7e655bb1570f71884eebf2fe273b52119b825622
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/SteliyanH/kadr.git at main
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.0
Building package at path:  $PWD
https://github.com/SteliyanH/kadr.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.2.0.app xcrun swift build --arch arm64
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-5BDAB9E9C0126B9D.txt
error: emit-module command failed with exit code 1 (use -v to see invocation)
[3/54] Emitting module Kadr
/Users/admin/builder/spi-builder-workspace/Sources/Kadr/DSL/ImageClip.swift:16:16: error: stored property 'image' of 'Sendable'-conforming struct 'ImageClip' has non-sendable type 'PlatformImage' (aka 'NSImage')
 14 | public struct ImageClip: Clip, Sendable {
 15 |     /// The image rendered for the clip's duration.
 16 |     public let image: PlatformImage
    |                `- error: stored property 'image' of 'Sendable'-conforming struct 'ImageClip' has non-sendable type 'PlatformImage' (aka 'NSImage')
 17 |     internal let _duration: CMTime
 18 |
AppKit.NSImage:1:12: note: class 'NSImage' does not conform to the 'Sendable' protocol
  1 | open class NSImage : NSObject {
    |            `- note: class 'NSImage' does not conform to the 'Sendable' protocol
  2 |     public /*not inherited*/ init?(named name: NSImage.Name)
  3 |     @available(*, unavailable, renamed: "init(named:)", message: "Not available in Swift")
/Users/admin/builder/spi-builder-workspace/Sources/Kadr/Engine/MaskCompositor.swift:22:9: error: stored property 'mask' of 'Sendable'-conforming struct 'MaskCompositor' has non-sendable type 'CIImage'
20 | /// users don't construct it directly.
21 | internal struct MaskCompositor: Compositor {
22 |     let mask: CIImage
   |         `- error: stored property 'mask' of 'Sendable'-conforming struct 'MaskCompositor' has non-sendable type 'CIImage'
23 |
24 |     func process(image: CIImage, context: CompositorContext) -> CIImage {
CoreImage.CIImage:2:12: note: class 'CIImage' does not conform to the 'Sendable' protocol
  1 | @available(macOS 10.4, *)
  2 | open class CIImage : NSObject, NSSecureCoding, NSCopying {
    |            `- note: class 'CIImage' does not conform to the 'Sendable' protocol
  3 |     @available(*, unavailable, message: "superseded by import of -[CIImage initWithCGImage:]")
  4 |     public /*not inherited*/ init(cgImage image: CGImage)
/Users/admin/builder/spi-builder-workspace/Sources/Kadr/Engine/MaskCompositor.swift:2:1: warning: add '@preconcurrency' to treat 'Sendable'-related errors from module 'CoreImage' as warnings
 1 | import Foundation
 2 | import CoreImage
   | `- warning: add '@preconcurrency' to treat 'Sendable'-related errors from module 'CoreImage' as warnings
 3 | import CoreGraphics
 4 | #if canImport(UIKit)
/Users/admin/builder/spi-builder-workspace/Sources/Kadr/Overlays/ImageOverlay.swift:26:16: error: stored property 'image' of 'Sendable'-conforming struct 'ImageOverlay' has non-sendable type 'PlatformImage' (aka 'NSImage')
 24 | public struct ImageOverlay: Overlay, Sendable {
 25 |     /// The source image rendered into the overlay layer.
 26 |     public let image: PlatformImage
    |                `- error: stored property 'image' of 'Sendable'-conforming struct 'ImageOverlay' has non-sendable type 'PlatformImage' (aka 'NSImage')
 27 |     /// Where the overlay's anchor lands on the render canvas.
 28 |     public let position: Position
AppKit.NSImage:1:12: note: class 'NSImage' does not conform to the 'Sendable' protocol
  1 | open class NSImage : NSObject {
    |            `- note: class 'NSImage' does not conform to the 'Sendable' protocol
  2 |     public /*not inherited*/ init?(named name: NSImage.Name)
  3 |     @available(*, unavailable, renamed: "init(named:)", message: "Not available in Swift")
/Users/admin/builder/spi-builder-workspace/Sources/Kadr/Overlays/StickerOverlay.swift:32:16: error: stored property 'image' of 'Sendable'-conforming struct 'StickerOverlay' has non-sendable type 'PlatformImage' (aka 'NSImage')
 30 | public struct StickerOverlay: Overlay, Sendable {
 31 |     /// The source image rendered into the sticker layer.
 32 |     public let image: PlatformImage
    |                `- error: stored property 'image' of 'Sendable'-conforming struct 'StickerOverlay' has non-sendable type 'PlatformImage' (aka 'NSImage')
 33 |     /// Where the sticker's anchor lands on the render canvas.
 34 |     public let position: Position
AppKit.NSImage:1:12: note: class 'NSImage' does not conform to the 'Sendable' protocol
  1 | open class NSImage : NSObject {
    |            `- note: class 'NSImage' does not conform to the 'Sendable' protocol
  2 |     public /*not inherited*/ init?(named name: NSImage.Name)
  3 |     @available(*, unavailable, renamed: "init(named:)", message: "Not available in Swift")
[4/59] Compiling Kadr Animatable.swift
[5/59] Compiling Kadr Animation.swift
[6/59] Compiling Kadr TimingFunction.swift
[7/59] Compiling Kadr AudioBuilder.swift
[8/59] Compiling Kadr AudioTimePitchAlgorithm.swift
[9/59] Compiling Kadr AudioTrack.swift
[10/59] Compiling Kadr TextOverlay.swift
[11/59] Compiling Kadr TextStyle.swift
[12/59] Compiling Kadr Watermark.swift
[13/59] Compiling Kadr PlatformTypes.swift
[14/59] Compiling Kadr Timecode.swift
[15/59] Compiling Kadr Clip+Speed.swift
/Users/admin/builder/spi-builder-workspace/Sources/Kadr/Overlays/ImageOverlay.swift:26:16: error: stored property 'image' of 'Sendable'-conforming struct 'ImageOverlay' has non-sendable type 'PlatformImage' (aka 'NSImage')
 24 | public struct ImageOverlay: Overlay, Sendable {
 25 |     /// The source image rendered into the overlay layer.
 26 |     public let image: PlatformImage
    |                `- error: stored property 'image' of 'Sendable'-conforming struct 'ImageOverlay' has non-sendable type 'PlatformImage' (aka 'NSImage')
 27 |     /// Where the overlay's anchor lands on the render canvas.
 28 |     public let position: Position
AppKit.NSImage:1:12: note: class 'NSImage' does not conform to the 'Sendable' protocol
  1 | open class NSImage : NSObject {
    |            `- note: class 'NSImage' does not conform to the 'Sendable' protocol
  2 |     public /*not inherited*/ init?(named name: NSImage.Name)
  3 |     @available(*, unavailable, renamed: "init(named:)", message: "Not available in Swift")
/Users/admin/builder/spi-builder-workspace/Sources/Kadr/Overlays/StickerOverlay.swift:32:16: error: stored property 'image' of 'Sendable'-conforming struct 'StickerOverlay' has non-sendable type 'PlatformImage' (aka 'NSImage')
 30 | public struct StickerOverlay: Overlay, Sendable {
 31 |     /// The source image rendered into the sticker layer.
 32 |     public let image: PlatformImage
    |                `- error: stored property 'image' of 'Sendable'-conforming struct 'StickerOverlay' has non-sendable type 'PlatformImage' (aka 'NSImage')
 33 |     /// Where the sticker's anchor lands on the render canvas.
 34 |     public let position: Position
AppKit.NSImage:1:12: note: class 'NSImage' does not conform to the 'Sendable' protocol
  1 | open class NSImage : NSObject {
    |            `- note: class 'NSImage' does not conform to the 'Sendable' protocol
  2 |     public /*not inherited*/ init?(named name: NSImage.Name)
  3 |     @available(*, unavailable, renamed: "init(named:)", message: "Not available in Swift")
[16/59] Compiling Kadr ImageOverlay.swift
/Users/admin/builder/spi-builder-workspace/Sources/Kadr/Overlays/ImageOverlay.swift:26:16: error: stored property 'image' of 'Sendable'-conforming struct 'ImageOverlay' has non-sendable type 'PlatformImage' (aka 'NSImage')
 24 | public struct ImageOverlay: Overlay, Sendable {
 25 |     /// The source image rendered into the overlay layer.
 26 |     public let image: PlatformImage
    |                `- error: stored property 'image' of 'Sendable'-conforming struct 'ImageOverlay' has non-sendable type 'PlatformImage' (aka 'NSImage')
 27 |     /// Where the overlay's anchor lands on the render canvas.
 28 |     public let position: Position
AppKit.NSImage:1:12: note: class 'NSImage' does not conform to the 'Sendable' protocol
  1 | open class NSImage : NSObject {
    |            `- note: class 'NSImage' does not conform to the 'Sendable' protocol
  2 |     public /*not inherited*/ init?(named name: NSImage.Name)
  3 |     @available(*, unavailable, renamed: "init(named:)", message: "Not available in Swift")
/Users/admin/builder/spi-builder-workspace/Sources/Kadr/Overlays/StickerOverlay.swift:32:16: error: stored property 'image' of 'Sendable'-conforming struct 'StickerOverlay' has non-sendable type 'PlatformImage' (aka 'NSImage')
 30 | public struct StickerOverlay: Overlay, Sendable {
 31 |     /// The source image rendered into the sticker layer.
 32 |     public let image: PlatformImage
    |                `- error: stored property 'image' of 'Sendable'-conforming struct 'StickerOverlay' has non-sendable type 'PlatformImage' (aka 'NSImage')
 33 |     /// Where the sticker's anchor lands on the render canvas.
 34 |     public let position: Position
AppKit.NSImage:1:12: note: class 'NSImage' does not conform to the 'Sendable' protocol
  1 | open class NSImage : NSObject {
    |            `- note: class 'NSImage' does not conform to the 'Sendable' protocol
  2 |     public /*not inherited*/ init?(named name: NSImage.Name)
  3 |     @available(*, unavailable, renamed: "init(named:)", message: "Not available in Swift")
[17/59] Compiling Kadr Overlay.swift
/Users/admin/builder/spi-builder-workspace/Sources/Kadr/Overlays/ImageOverlay.swift:26:16: error: stored property 'image' of 'Sendable'-conforming struct 'ImageOverlay' has non-sendable type 'PlatformImage' (aka 'NSImage')
 24 | public struct ImageOverlay: Overlay, Sendable {
 25 |     /// The source image rendered into the overlay layer.
 26 |     public let image: PlatformImage
    |                `- error: stored property 'image' of 'Sendable'-conforming struct 'ImageOverlay' has non-sendable type 'PlatformImage' (aka 'NSImage')
 27 |     /// Where the overlay's anchor lands on the render canvas.
 28 |     public let position: Position
AppKit.NSImage:1:12: note: class 'NSImage' does not conform to the 'Sendable' protocol
  1 | open class NSImage : NSObject {
    |            `- note: class 'NSImage' does not conform to the 'Sendable' protocol
  2 |     public /*not inherited*/ init?(named name: NSImage.Name)
  3 |     @available(*, unavailable, renamed: "init(named:)", message: "Not available in Swift")
/Users/admin/builder/spi-builder-workspace/Sources/Kadr/Overlays/StickerOverlay.swift:32:16: error: stored property 'image' of 'Sendable'-conforming struct 'StickerOverlay' has non-sendable type 'PlatformImage' (aka 'NSImage')
 30 | public struct StickerOverlay: Overlay, Sendable {
 31 |     /// The source image rendered into the sticker layer.
 32 |     public let image: PlatformImage
    |                `- error: stored property 'image' of 'Sendable'-conforming struct 'StickerOverlay' has non-sendable type 'PlatformImage' (aka 'NSImage')
 33 |     /// Where the sticker's anchor lands on the render canvas.
 34 |     public let position: Position
AppKit.NSImage:1:12: note: class 'NSImage' does not conform to the 'Sendable' protocol
  1 | open class NSImage : NSObject {
    |            `- note: class 'NSImage' does not conform to the 'Sendable' protocol
  2 |     public /*not inherited*/ init?(named name: NSImage.Name)
  3 |     @available(*, unavailable, renamed: "init(named:)", message: "Not available in Swift")
[18/59] Compiling Kadr StickerOverlay.swift
/Users/admin/builder/spi-builder-workspace/Sources/Kadr/Overlays/ImageOverlay.swift:26:16: error: stored property 'image' of 'Sendable'-conforming struct 'ImageOverlay' has non-sendable type 'PlatformImage' (aka 'NSImage')
 24 | public struct ImageOverlay: Overlay, Sendable {
 25 |     /// The source image rendered into the overlay layer.
 26 |     public let image: PlatformImage
    |                `- error: stored property 'image' of 'Sendable'-conforming struct 'ImageOverlay' has non-sendable type 'PlatformImage' (aka 'NSImage')
 27 |     /// Where the overlay's anchor lands on the render canvas.
 28 |     public let position: Position
AppKit.NSImage:1:12: note: class 'NSImage' does not conform to the 'Sendable' protocol
  1 | open class NSImage : NSObject {
    |            `- note: class 'NSImage' does not conform to the 'Sendable' protocol
  2 |     public /*not inherited*/ init?(named name: NSImage.Name)
  3 |     @available(*, unavailable, renamed: "init(named:)", message: "Not available in Swift")
/Users/admin/builder/spi-builder-workspace/Sources/Kadr/Overlays/StickerOverlay.swift:32:16: error: stored property 'image' of 'Sendable'-conforming struct 'StickerOverlay' has non-sendable type 'PlatformImage' (aka 'NSImage')
 30 | public struct StickerOverlay: Overlay, Sendable {
 31 |     /// The source image rendered into the sticker layer.
 32 |     public let image: PlatformImage
    |                `- error: stored property 'image' of 'Sendable'-conforming struct 'StickerOverlay' has non-sendable type 'PlatformImage' (aka 'NSImage')
 33 |     /// Where the sticker's anchor lands on the render canvas.
 34 |     public let position: Position
AppKit.NSImage:1:12: note: class 'NSImage' does not conform to the 'Sendable' protocol
  1 | open class NSImage : NSObject {
    |            `- note: class 'NSImage' does not conform to the 'Sendable' protocol
  2 |     public /*not inherited*/ init?(named name: NSImage.Name)
  3 |     @available(*, unavailable, renamed: "init(named:)", message: "Not available in Swift")
[19/59] Compiling Kadr TextAnimation.swift
/Users/admin/builder/spi-builder-workspace/Sources/Kadr/Overlays/ImageOverlay.swift:26:16: error: stored property 'image' of 'Sendable'-conforming struct 'ImageOverlay' has non-sendable type 'PlatformImage' (aka 'NSImage')
 24 | public struct ImageOverlay: Overlay, Sendable {
 25 |     /// The source image rendered into the overlay layer.
 26 |     public let image: PlatformImage
    |                `- error: stored property 'image' of 'Sendable'-conforming struct 'ImageOverlay' has non-sendable type 'PlatformImage' (aka 'NSImage')
 27 |     /// Where the overlay's anchor lands on the render canvas.
 28 |     public let position: Position
AppKit.NSImage:1:12: note: class 'NSImage' does not conform to the 'Sendable' protocol
  1 | open class NSImage : NSObject {
    |            `- note: class 'NSImage' does not conform to the 'Sendable' protocol
  2 |     public /*not inherited*/ init?(named name: NSImage.Name)
  3 |     @available(*, unavailable, renamed: "init(named:)", message: "Not available in Swift")
/Users/admin/builder/spi-builder-workspace/Sources/Kadr/Overlays/StickerOverlay.swift:32:16: error: stored property 'image' of 'Sendable'-conforming struct 'StickerOverlay' has non-sendable type 'PlatformImage' (aka 'NSImage')
 30 | public struct StickerOverlay: Overlay, Sendable {
 31 |     /// The source image rendered into the sticker layer.
 32 |     public let image: PlatformImage
    |                `- error: stored property 'image' of 'Sendable'-conforming struct 'StickerOverlay' has non-sendable type 'PlatformImage' (aka 'NSImage')
 33 |     /// Where the sticker's anchor lands on the render canvas.
 34 |     public let position: Position
AppKit.NSImage:1:12: note: class 'NSImage' does not conform to the 'Sendable' protocol
  1 | open class NSImage : NSObject {
    |            `- note: class 'NSImage' does not conform to the 'Sendable' protocol
  2 |     public /*not inherited*/ init?(named name: NSImage.Name)
  3 |     @available(*, unavailable, renamed: "init(named:)", message: "Not available in Swift")
[20/59] Compiling Kadr BackgroundMusic.swift
/Users/admin/builder/spi-builder-workspace/Sources/Kadr/DSL/ImageClip.swift:16:16: error: stored property 'image' of 'Sendable'-conforming struct 'ImageClip' has non-sendable type 'PlatformImage' (aka 'NSImage')
 14 | public struct ImageClip: Clip, Sendable {
 15 |     /// The image rendered for the clip's duration.
 16 |     public let image: PlatformImage
    |                `- error: stored property 'image' of 'Sendable'-conforming struct 'ImageClip' has non-sendable type 'PlatformImage' (aka 'NSImage')
 17 |     internal let _duration: CMTime
 18 |
AppKit.NSImage:1:12: note: class 'NSImage' does not conform to the 'Sendable' protocol
  1 | open class NSImage : NSObject {
    |            `- note: class 'NSImage' does not conform to the 'Sendable' protocol
  2 |     public /*not inherited*/ init?(named name: NSImage.Name)
  3 |     @available(*, unavailable, renamed: "init(named:)", message: "Not available in Swift")
[21/59] Compiling Kadr Caption.swift
/Users/admin/builder/spi-builder-workspace/Sources/Kadr/DSL/ImageClip.swift:16:16: error: stored property 'image' of 'Sendable'-conforming struct 'ImageClip' has non-sendable type 'PlatformImage' (aka 'NSImage')
 14 | public struct ImageClip: Clip, Sendable {
 15 |     /// The image rendered for the clip's duration.
 16 |     public let image: PlatformImage
    |                `- error: stored property 'image' of 'Sendable'-conforming struct 'ImageClip' has non-sendable type 'PlatformImage' (aka 'NSImage')
 17 |     internal let _duration: CMTime
 18 |
AppKit.NSImage:1:12: note: class 'NSImage' does not conform to the 'Sendable' protocol
  1 | open class NSImage : NSObject {
    |            `- note: class 'NSImage' does not conform to the 'Sendable' protocol
  2 |     public /*not inherited*/ init?(named name: NSImage.Name)
  3 |     @available(*, unavailable, renamed: "init(named:)", message: "Not available in Swift")
[22/59] Compiling Kadr Clip.swift
/Users/admin/builder/spi-builder-workspace/Sources/Kadr/DSL/ImageClip.swift:16:16: error: stored property 'image' of 'Sendable'-conforming struct 'ImageClip' has non-sendable type 'PlatformImage' (aka 'NSImage')
 14 | public struct ImageClip: Clip, Sendable {
 15 |     /// The image rendered for the clip's duration.
 16 |     public let image: PlatformImage
    |                `- error: stored property 'image' of 'Sendable'-conforming struct 'ImageClip' has non-sendable type 'PlatformImage' (aka 'NSImage')
 17 |     internal let _duration: CMTime
 18 |
AppKit.NSImage:1:12: note: class 'NSImage' does not conform to the 'Sendable' protocol
  1 | open class NSImage : NSObject {
    |            `- note: class 'NSImage' does not conform to the 'Sendable' protocol
  2 |     public /*not inherited*/ init?(named name: NSImage.Name)
  3 |     @available(*, unavailable, renamed: "init(named:)", message: "Not available in Swift")
[23/59] Compiling Kadr ImageClip.swift
/Users/admin/builder/spi-builder-workspace/Sources/Kadr/DSL/ImageClip.swift:16:16: error: stored property 'image' of 'Sendable'-conforming struct 'ImageClip' has non-sendable type 'PlatformImage' (aka 'NSImage')
 14 | public struct ImageClip: Clip, Sendable {
 15 |     /// The image rendered for the clip's duration.
 16 |     public let image: PlatformImage
    |                `- error: stored property 'image' of 'Sendable'-conforming struct 'ImageClip' has non-sendable type 'PlatformImage' (aka 'NSImage')
 17 |     internal let _duration: CMTime
 18 |
AppKit.NSImage:1:12: note: class 'NSImage' does not conform to the 'Sendable' protocol
  1 | open class NSImage : NSObject {
    |            `- note: class 'NSImage' does not conform to the 'Sendable' protocol
  2 |     public /*not inherited*/ init?(named name: NSImage.Name)
  3 |     @available(*, unavailable, renamed: "init(named:)", message: "Not available in Swift")
[24/59] Compiling Kadr TitleSequence.swift
/Users/admin/builder/spi-builder-workspace/Sources/Kadr/DSL/ImageClip.swift:16:16: error: stored property 'image' of 'Sendable'-conforming struct 'ImageClip' has non-sendable type 'PlatformImage' (aka 'NSImage')
 14 | public struct ImageClip: Clip, Sendable {
 15 |     /// The image rendered for the clip's duration.
 16 |     public let image: PlatformImage
    |                `- error: stored property 'image' of 'Sendable'-conforming struct 'ImageClip' has non-sendable type 'PlatformImage' (aka 'NSImage')
 17 |     internal let _duration: CMTime
 18 |
AppKit.NSImage:1:12: note: class 'NSImage' does not conform to the 'Sendable' protocol
  1 | open class NSImage : NSObject {
    |            `- note: class 'NSImage' does not conform to the 'Sendable' protocol
  2 |     public /*not inherited*/ init?(named name: NSImage.Name)
  3 |     @available(*, unavailable, renamed: "init(named:)", message: "Not available in Swift")
[25/59] Compiling Kadr Track.swift
/Users/admin/builder/spi-builder-workspace/Sources/Kadr/DSL/ImageClip.swift:16:16: error: stored property 'image' of 'Sendable'-conforming struct 'ImageClip' has non-sendable type 'PlatformImage' (aka 'NSImage')
 14 | public struct ImageClip: Clip, Sendable {
 15 |     /// The image rendered for the clip's duration.
 16 |     public let image: PlatformImage
    |                `- error: stored property 'image' of 'Sendable'-conforming struct 'ImageClip' has non-sendable type 'PlatformImage' (aka 'NSImage')
 17 |     internal let _duration: CMTime
 18 |
AppKit.NSImage:1:12: note: class 'NSImage' does not conform to the 'Sendable' protocol
  1 | open class NSImage : NSObject {
    |            `- note: class 'NSImage' does not conform to the 'Sendable' protocol
  2 |     public /*not inherited*/ init?(named name: NSImage.Name)
  3 |     @available(*, unavailable, renamed: "init(named:)", message: "Not available in Swift")
[26/59] Compiling Kadr KadrError.swift
[27/59] Compiling Kadr ExportProgress.swift
[28/59] Compiling Kadr Exporter.swift
[29/59] Compiling Kadr Preset.swift
[30/59] Compiling Kadr ChromaKey.swift
[31/59] Compiling Kadr Filter.swift
[32/59] Compiling Kadr MaskCompositor.swift
/Users/admin/builder/spi-builder-workspace/Sources/Kadr/Engine/MaskCompositor.swift:22:9: error: stored property 'mask' of 'Sendable'-conforming struct 'MaskCompositor' has non-sendable type 'CIImage'
20 | /// users don't construct it directly.
21 | internal struct MaskCompositor: Compositor {
22 |     let mask: CIImage
   |         `- error: stored property 'mask' of 'Sendable'-conforming struct 'MaskCompositor' has non-sendable type 'CIImage'
23 |
24 |     func process(image: CIImage, context: CompositorContext) -> CIImage {
CoreImage.CIImage:2:12: note: class 'CIImage' does not conform to the 'Sendable' protocol
  1 | @available(macOS 10.4, *)
  2 | open class CIImage : NSObject, NSSecureCoding, NSCopying {
    |            `- note: class 'CIImage' does not conform to the 'Sendable' protocol
  3 |     @available(*, unavailable, message: "superseded by import of -[CIImage initWithCGImage:]")
  4 |     public /*not inherited*/ init(cgImage image: CGImage)
/Users/admin/builder/spi-builder-workspace/Sources/Kadr/Engine/MaskCompositor.swift:2:1: warning: add '@preconcurrency' to treat 'Sendable'-related errors from module 'CoreImage' as warnings
 1 | import Foundation
 2 | import CoreImage
   | `- warning: add '@preconcurrency' to treat 'Sendable'-related errors from module 'CoreImage' as warnings
 3 | import CoreGraphics
 4 | #if canImport(UIKit)
[33/59] Compiling Kadr MultiInputCompositor.swift
/Users/admin/builder/spi-builder-workspace/Sources/Kadr/Engine/MaskCompositor.swift:22:9: error: stored property 'mask' of 'Sendable'-conforming struct 'MaskCompositor' has non-sendable type 'CIImage'
20 | /// users don't construct it directly.
21 | internal struct MaskCompositor: Compositor {
22 |     let mask: CIImage
   |         `- error: stored property 'mask' of 'Sendable'-conforming struct 'MaskCompositor' has non-sendable type 'CIImage'
23 |
24 |     func process(image: CIImage, context: CompositorContext) -> CIImage {
CoreImage.CIImage:2:12: note: class 'CIImage' does not conform to the 'Sendable' protocol
  1 | @available(macOS 10.4, *)
  2 | open class CIImage : NSObject, NSSecureCoding, NSCopying {
    |            `- note: class 'CIImage' does not conform to the 'Sendable' protocol
  3 |     @available(*, unavailable, message: "superseded by import of -[CIImage initWithCGImage:]")
  4 |     public /*not inherited*/ init(cgImage image: CGImage)
/Users/admin/builder/spi-builder-workspace/Sources/Kadr/Engine/MaskCompositor.swift:2:1: warning: add '@preconcurrency' to treat 'Sendable'-related errors from module 'CoreImage' as warnings
 1 | import Foundation
 2 | import CoreImage
   | `- warning: add '@preconcurrency' to treat 'Sendable'-related errors from module 'CoreImage' as warnings
 3 | import CoreGraphics
 4 | #if canImport(UIKit)
[34/59] Compiling Kadr OverlayRenderer.swift
/Users/admin/builder/spi-builder-workspace/Sources/Kadr/Engine/MaskCompositor.swift:22:9: error: stored property 'mask' of 'Sendable'-conforming struct 'MaskCompositor' has non-sendable type 'CIImage'
20 | /// users don't construct it directly.
21 | internal struct MaskCompositor: Compositor {
22 |     let mask: CIImage
   |         `- error: stored property 'mask' of 'Sendable'-conforming struct 'MaskCompositor' has non-sendable type 'CIImage'
23 |
24 |     func process(image: CIImage, context: CompositorContext) -> CIImage {
CoreImage.CIImage:2:12: note: class 'CIImage' does not conform to the 'Sendable' protocol
  1 | @available(macOS 10.4, *)
  2 | open class CIImage : NSObject, NSSecureCoding, NSCopying {
    |            `- note: class 'CIImage' does not conform to the 'Sendable' protocol
  3 |     @available(*, unavailable, message: "superseded by import of -[CIImage initWithCGImage:]")
  4 |     public /*not inherited*/ init(cgImage image: CGImage)
/Users/admin/builder/spi-builder-workspace/Sources/Kadr/Engine/MaskCompositor.swift:2:1: warning: add '@preconcurrency' to treat 'Sendable'-related errors from module 'CoreImage' as warnings
 1 | import Foundation
 2 | import CoreImage
   | `- warning: add '@preconcurrency' to treat 'Sendable'-related errors from module 'CoreImage' as warnings
 3 | import CoreGraphics
 4 | #if canImport(UIKit)
[35/59] Compiling Kadr PlaybackComposer.swift
/Users/admin/builder/spi-builder-workspace/Sources/Kadr/Engine/MaskCompositor.swift:22:9: error: stored property 'mask' of 'Sendable'-conforming struct 'MaskCompositor' has non-sendable type 'CIImage'
20 | /// users don't construct it directly.
21 | internal struct MaskCompositor: Compositor {
22 |     let mask: CIImage
   |         `- error: stored property 'mask' of 'Sendable'-conforming struct 'MaskCompositor' has non-sendable type 'CIImage'
23 |
24 |     func process(image: CIImage, context: CompositorContext) -> CIImage {
CoreImage.CIImage:2:12: note: class 'CIImage' does not conform to the 'Sendable' protocol
  1 | @available(macOS 10.4, *)
  2 | open class CIImage : NSObject, NSSecureCoding, NSCopying {
    |            `- note: class 'CIImage' does not conform to the 'Sendable' protocol
  3 |     @available(*, unavailable, message: "superseded by import of -[CIImage initWithCGImage:]")
  4 |     public /*not inherited*/ init(cgImage image: CGImage)
/Users/admin/builder/spi-builder-workspace/Sources/Kadr/Engine/MaskCompositor.swift:2:1: warning: add '@preconcurrency' to treat 'Sendable'-related errors from module 'CoreImage' as warnings
 1 | import Foundation
 2 | import CoreImage
   | `- warning: add '@preconcurrency' to treat 'Sendable'-related errors from module 'CoreImage' as warnings
 3 | import CoreGraphics
 4 | #if canImport(UIKit)
[36/59] Compiling Kadr ReverseProcessor.swift
/Users/admin/builder/spi-builder-workspace/Sources/Kadr/Engine/MaskCompositor.swift:22:9: error: stored property 'mask' of 'Sendable'-conforming struct 'MaskCompositor' has non-sendable type 'CIImage'
20 | /// users don't construct it directly.
21 | internal struct MaskCompositor: Compositor {
22 |     let mask: CIImage
   |         `- error: stored property 'mask' of 'Sendable'-conforming struct 'MaskCompositor' has non-sendable type 'CIImage'
23 |
24 |     func process(image: CIImage, context: CompositorContext) -> CIImage {
CoreImage.CIImage:2:12: note: class 'CIImage' does not conform to the 'Sendable' protocol
  1 | @available(macOS 10.4, *)
  2 | open class CIImage : NSObject, NSSecureCoding, NSCopying {
    |            `- note: class 'CIImage' does not conform to the 'Sendable' protocol
  3 |     @available(*, unavailable, message: "superseded by import of -[CIImage initWithCGImage:]")
  4 |     public /*not inherited*/ init(cgImage image: CGImage)
/Users/admin/builder/spi-builder-workspace/Sources/Kadr/Engine/MaskCompositor.swift:2:1: warning: add '@preconcurrency' to treat 'Sendable'-related errors from module 'CoreImage' as warnings
 1 | import Foundation
 2 | import CoreImage
   | `- warning: add '@preconcurrency' to treat 'Sendable'-related errors from module 'CoreImage' as warnings
 3 | import CoreGraphics
 4 | #if canImport(UIKit)
[37/59] Compiling Kadr SpeedCurveSampler.swift
/Users/admin/builder/spi-builder-workspace/Sources/Kadr/Engine/MaskCompositor.swift:22:9: error: stored property 'mask' of 'Sendable'-conforming struct 'MaskCompositor' has non-sendable type 'CIImage'
20 | /// users don't construct it directly.
21 | internal struct MaskCompositor: Compositor {
22 |     let mask: CIImage
   |         `- error: stored property 'mask' of 'Sendable'-conforming struct 'MaskCompositor' has non-sendable type 'CIImage'
23 |
24 |     func process(image: CIImage, context: CompositorContext) -> CIImage {
CoreImage.CIImage:2:12: note: class 'CIImage' does not conform to the 'Sendable' protocol
  1 | @available(macOS 10.4, *)
  2 | open class CIImage : NSObject, NSSecureCoding, NSCopying {
    |            `- note: class 'CIImage' does not conform to the 'Sendable' protocol
  3 |     @available(*, unavailable, message: "superseded by import of -[CIImage initWithCGImage:]")
  4 |     public /*not inherited*/ init(cgImage image: CGImage)
/Users/admin/builder/spi-builder-workspace/Sources/Kadr/Engine/MaskCompositor.swift:2:1: warning: add '@preconcurrency' to treat 'Sendable'-related errors from module 'CoreImage' as warnings
 1 | import Foundation
 2 | import CoreImage
   | `- warning: add '@preconcurrency' to treat 'Sendable'-related errors from module 'CoreImage' as warnings
 3 | import CoreGraphics
 4 | #if canImport(UIKit)
[38/59] Compiling Kadr LUT.swift
[39/59] Compiling Kadr Anchor.swift
[40/59] Compiling Kadr ClipID.swift
[41/59] Compiling Kadr CropRegion.swift
[42/59] Compiling Kadr Frame.swift
[43/59] Compiling Kadr LayerID.swift
[44/59] Compiling Kadr Layout.swift
[45/59] Compiling Kadr Position.swift
[46/59] Compiling Kadr Size.swift
[47/59] Compiling Kadr Transform.swift
[48/59] Compiling Kadr Compositor.swift
/Users/admin/builder/spi-builder-workspace/Sources/Kadr/Engine/FilterProcessor.swift:52:35: warning: reference to captured var 'animations' in concurrently-executing code
50 |                     : request.compositionTime
51 |                 for (i, filter) in filters.enumerated() {
52 |                     if let anim = animations[i],
   |                                   `- warning: reference to captured var 'animations' in concurrently-executing code
53 |                        let scalar = anim.value(at: clipRelativeTime) {
54 |                         image = filter.withScalar(scalar).apply(to: image)
/Users/admin/builder/spi-builder-workspace/Sources/Kadr/Engine/KadrVideoCompositor.swift:66:17: warning: capture of 'asyncVideoCompositionRequest' with non-sendable type 'AVAsynchronousVideoCompositionRequest' in a `@Sendable` closure
 64 |             guard let self else { return }
 65 |             if self.shouldCancelAllRequests {
 66 |                 asyncVideoCompositionRequest.finishCancelledRequest()
    |                 `- warning: capture of 'asyncVideoCompositionRequest' with non-sendable type 'AVAsynchronousVideoCompositionRequest' in a `@Sendable` closure
 67 |                 return
 68 |             }
AVFoundation.AVAsynchronousVideoCompositionRequest:2:12: note: class 'AVAsynchronousVideoCompositionRequest' does not conform to the 'Sendable' protocol
 1 | @available(macOS 10.9, *)
 2 | open class AVAsynchronousVideoCompositionRequest : NSObject, NSCopying {
   |            `- note: class 'AVAsynchronousVideoCompositionRequest' does not conform to the 'Sendable' protocol
 3 |     open var renderContext: AVVideoCompositionRenderContext { get }
 4 |     open var compositionTime: CMTime { get }
/Users/admin/builder/spi-builder-workspace/Sources/Kadr/Engine/KadrVideoCompositor.swift:2:1: warning: add '@preconcurrency' to treat 'Sendable'-related errors from module 'AVFoundation' as warnings
  1 | import Foundation
  2 | import AVFoundation
    | `- warning: add '@preconcurrency' to treat 'Sendable'-related errors from module 'AVFoundation' as warnings
  3 | import CoreMedia
  4 | import CoreImage
[49/59] Compiling Kadr CropCompositor.swift
/Users/admin/builder/spi-builder-workspace/Sources/Kadr/Engine/FilterProcessor.swift:52:35: warning: reference to captured var 'animations' in concurrently-executing code
50 |                     : request.compositionTime
51 |                 for (i, filter) in filters.enumerated() {
52 |                     if let anim = animations[i],
   |                                   `- warning: reference to captured var 'animations' in concurrently-executing code
53 |                        let scalar = anim.value(at: clipRelativeTime) {
54 |                         image = filter.withScalar(scalar).apply(to: image)
/Users/admin/builder/spi-builder-workspace/Sources/Kadr/Engine/KadrVideoCompositor.swift:66:17: warning: capture of 'asyncVideoCompositionRequest' with non-sendable type 'AVAsynchronousVideoCompositionRequest' in a `@Sendable` closure
 64 |             guard let self else { return }
 65 |             if self.shouldCancelAllRequests {
 66 |                 asyncVideoCompositionRequest.finishCancelledRequest()
    |                 `- warning: capture of 'asyncVideoCompositionRequest' with non-sendable type 'AVAsynchronousVideoCompositionRequest' in a `@Sendable` closure
 67 |                 return
 68 |             }
AVFoundation.AVAsynchronousVideoCompositionRequest:2:12: note: class 'AVAsynchronousVideoCompositionRequest' does not conform to the 'Sendable' protocol
 1 | @available(macOS 10.9, *)
 2 | open class AVAsynchronousVideoCompositionRequest : NSObject, NSCopying {
   |            `- note: class 'AVAsynchronousVideoCompositionRequest' does not conform to the 'Sendable' protocol
 3 |     open var renderContext: AVVideoCompositionRenderContext { get }
 4 |     open var compositionTime: CMTime { get }
/Users/admin/builder/spi-builder-workspace/Sources/Kadr/Engine/KadrVideoCompositor.swift:2:1: warning: add '@preconcurrency' to treat 'Sendable'-related errors from module 'AVFoundation' as warnings
  1 | import Foundation
  2 | import AVFoundation
    | `- warning: add '@preconcurrency' to treat 'Sendable'-related errors from module 'AVFoundation' as warnings
  3 | import CoreMedia
  4 | import CoreImage
[50/59] Compiling Kadr ExportEngine.swift
/Users/admin/builder/spi-builder-workspace/Sources/Kadr/Engine/FilterProcessor.swift:52:35: warning: reference to captured var 'animations' in concurrently-executing code
50 |                     : request.compositionTime
51 |                 for (i, filter) in filters.enumerated() {
52 |                     if let anim = animations[i],
   |                                   `- warning: reference to captured var 'animations' in concurrently-executing code
53 |                        let scalar = anim.value(at: clipRelativeTime) {
54 |                         image = filter.withScalar(scalar).apply(to: image)
/Users/admin/builder/spi-builder-workspace/Sources/Kadr/Engine/KadrVideoCompositor.swift:66:17: warning: capture of 'asyncVideoCompositionRequest' with non-sendable type 'AVAsynchronousVideoCompositionRequest' in a `@Sendable` closure
 64 |             guard let self else { return }
 65 |             if self.shouldCancelAllRequests {
 66 |                 asyncVideoCompositionRequest.finishCancelledRequest()
    |                 `- warning: capture of 'asyncVideoCompositionRequest' with non-sendable type 'AVAsynchronousVideoCompositionRequest' in a `@Sendable` closure
 67 |                 return
 68 |             }
AVFoundation.AVAsynchronousVideoCompositionRequest:2:12: note: class 'AVAsynchronousVideoCompositionRequest' does not conform to the 'Sendable' protocol
 1 | @available(macOS 10.9, *)
 2 | open class AVAsynchronousVideoCompositionRequest : NSObject, NSCopying {
   |            `- note: class 'AVAsynchronousVideoCompositionRequest' does not conform to the 'Sendable' protocol
 3 |     open var renderContext: AVVideoCompositionRenderContext { get }
 4 |     open var compositionTime: CMTime { get }
/Users/admin/builder/spi-builder-workspace/Sources/Kadr/Engine/KadrVideoCompositor.swift:2:1: warning: add '@preconcurrency' to treat 'Sendable'-related errors from module 'AVFoundation' as warnings
  1 | import Foundation
  2 | import AVFoundation
    | `- warning: add '@preconcurrency' to treat 'Sendable'-related errors from module 'AVFoundation' as warnings
  3 | import CoreMedia
  4 | import CoreImage
[51/59] Compiling Kadr FilterProcessor.swift
/Users/admin/builder/spi-builder-workspace/Sources/Kadr/Engine/FilterProcessor.swift:52:35: warning: reference to captured var 'animations' in concurrently-executing code
50 |                     : request.compositionTime
51 |                 for (i, filter) in filters.enumerated() {
52 |                     if let anim = animations[i],
   |                                   `- warning: reference to captured var 'animations' in concurrently-executing code
53 |                        let scalar = anim.value(at: clipRelativeTime) {
54 |                         image = filter.withScalar(scalar).apply(to: image)
/Users/admin/builder/spi-builder-workspace/Sources/Kadr/Engine/KadrVideoCompositor.swift:66:17: warning: capture of 'asyncVideoCompositionRequest' with non-sendable type 'AVAsynchronousVideoCompositionRequest' in a `@Sendable` closure
 64 |             guard let self else { return }
 65 |             if self.shouldCancelAllRequests {
 66 |                 asyncVideoCompositionRequest.finishCancelledRequest()
    |                 `- warning: capture of 'asyncVideoCompositionRequest' with non-sendable type 'AVAsynchronousVideoCompositionRequest' in a `@Sendable` closure
 67 |                 return
 68 |             }
AVFoundation.AVAsynchronousVideoCompositionRequest:2:12: note: class 'AVAsynchronousVideoCompositionRequest' does not conform to the 'Sendable' protocol
 1 | @available(macOS 10.9, *)
 2 | open class AVAsynchronousVideoCompositionRequest : NSObject, NSCopying {
   |            `- note: class 'AVAsynchronousVideoCompositionRequest' does not conform to the 'Sendable' protocol
 3 |     open var renderContext: AVVideoCompositionRenderContext { get }
 4 |     open var compositionTime: CMTime { get }
/Users/admin/builder/spi-builder-workspace/Sources/Kadr/Engine/KadrVideoCompositor.swift:2:1: warning: add '@preconcurrency' to treat 'Sendable'-related errors from module 'AVFoundation' as warnings
  1 | import Foundation
  2 | import AVFoundation
    | `- warning: add '@preconcurrency' to treat 'Sendable'-related errors from module 'AVFoundation' as warnings
  3 | import CoreMedia
  4 | import CoreImage
[52/59] Compiling Kadr ImageEncoder.swift
/Users/admin/builder/spi-builder-workspace/Sources/Kadr/Engine/FilterProcessor.swift:52:35: warning: reference to captured var 'animations' in concurrently-executing code
50 |                     : request.compositionTime
51 |                 for (i, filter) in filters.enumerated() {
52 |                     if let anim = animations[i],
   |                                   `- warning: reference to captured var 'animations' in concurrently-executing code
53 |                        let scalar = anim.value(at: clipRelativeTime) {
54 |                         image = filter.withScalar(scalar).apply(to: image)
/Users/admin/builder/spi-builder-workspace/Sources/Kadr/Engine/KadrVideoCompositor.swift:66:17: warning: capture of 'asyncVideoCompositionRequest' with non-sendable type 'AVAsynchronousVideoCompositionRequest' in a `@Sendable` closure
 64 |             guard let self else { return }
 65 |             if self.shouldCancelAllRequests {
 66 |                 asyncVideoCompositionRequest.finishCancelledRequest()
    |                 `- warning: capture of 'asyncVideoCompositionRequest' with non-sendable type 'AVAsynchronousVideoCompositionRequest' in a `@Sendable` closure
 67 |                 return
 68 |             }
AVFoundation.AVAsynchronousVideoCompositionRequest:2:12: note: class 'AVAsynchronousVideoCompositionRequest' does not conform to the 'Sendable' protocol
 1 | @available(macOS 10.9, *)
 2 | open class AVAsynchronousVideoCompositionRequest : NSObject, NSCopying {
   |            `- note: class 'AVAsynchronousVideoCompositionRequest' does not conform to the 'Sendable' protocol
 3 |     open var renderContext: AVVideoCompositionRenderContext { get }
 4 |     open var compositionTime: CMTime { get }
/Users/admin/builder/spi-builder-workspace/Sources/Kadr/Engine/KadrVideoCompositor.swift:2:1: warning: add '@preconcurrency' to treat 'Sendable'-related errors from module 'AVFoundation' as warnings
  1 | import Foundation
  2 | import AVFoundation
    | `- warning: add '@preconcurrency' to treat 'Sendable'-related errors from module 'AVFoundation' as warnings
  3 | import CoreMedia
  4 | import CoreImage
[53/59] Compiling Kadr KadrVideoCompositor.swift
/Users/admin/builder/spi-builder-workspace/Sources/Kadr/Engine/FilterProcessor.swift:52:35: warning: reference to captured var 'animations' in concurrently-executing code
50 |                     : request.compositionTime
51 |                 for (i, filter) in filters.enumerated() {
52 |                     if let anim = animations[i],
   |                                   `- warning: reference to captured var 'animations' in concurrently-executing code
53 |                        let scalar = anim.value(at: clipRelativeTime) {
54 |                         image = filter.withScalar(scalar).apply(to: image)
/Users/admin/builder/spi-builder-workspace/Sources/Kadr/Engine/KadrVideoCompositor.swift:66:17: warning: capture of 'asyncVideoCompositionRequest' with non-sendable type 'AVAsynchronousVideoCompositionRequest' in a `@Sendable` closure
 64 |             guard let self else { return }
 65 |             if self.shouldCancelAllRequests {
 66 |                 asyncVideoCompositionRequest.finishCancelledRequest()
    |                 `- warning: capture of 'asyncVideoCompositionRequest' with non-sendable type 'AVAsynchronousVideoCompositionRequest' in a `@Sendable` closure
 67 |                 return
 68 |             }
AVFoundation.AVAsynchronousVideoCompositionRequest:2:12: note: class 'AVAsynchronousVideoCompositionRequest' does not conform to the 'Sendable' protocol
 1 | @available(macOS 10.9, *)
 2 | open class AVAsynchronousVideoCompositionRequest : NSObject, NSCopying {
   |            `- note: class 'AVAsynchronousVideoCompositionRequest' does not conform to the 'Sendable' protocol
 3 |     open var renderContext: AVVideoCompositionRenderContext { get }
 4 |     open var compositionTime: CMTime { get }
/Users/admin/builder/spi-builder-workspace/Sources/Kadr/Engine/KadrVideoCompositor.swift:2:1: warning: add '@preconcurrency' to treat 'Sendable'-related errors from module 'AVFoundation' as warnings
  1 | import Foundation
  2 | import AVFoundation
    | `- warning: add '@preconcurrency' to treat 'Sendable'-related errors from module 'AVFoundation' as warnings
  3 | import CoreMedia
  4 | import CoreImage
[54/59] Compiling Kadr Transition.swift
[55/59] Compiling Kadr Video.swift
[56/59] Compiling Kadr VideoBuilder.swift
[57/59] Compiling Kadr VideoClip.swift
[58/59] Compiling Kadr CancellationToken.swift
[59/59] Compiling Kadr CompositionBuilder.swift
BUILD FAILURE 6.0 macosSpm