The Swift Package Index logo.Swift Package Index

Build Information

Successful build of CrystalViewUtilities, reference main (76fb61), with Swift 6.3 for macOS (SPM) on 13 Apr 2026 13:20:44 UTC.

Swift 6 data race errors: 0

Build Command

env DEVELOPER_DIR=/Applications/Xcode-26.4.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/robhasacamera/CrystalViewUtilities.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/robhasacamera/CrystalViewUtilities
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at 76fb613 Merge pull request #20 from robhasacamera/0.12.1
Cloned https://github.com/robhasacamera/CrystalViewUtilities.git
Revision (git rev-parse @):
76fb6130c996bb6e5fbaba3579c48ef359691e52
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/robhasacamera/CrystalViewUtilities.git at main
========================================
ResolveProductDependencies
========================================
Resolving dependencies ...
{
  "identity": ".resolve-product-dependencies",
  "name": "resolve-dependencies",
  "url": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
  "version": "unspecified",
  "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
  "traits": [
    "default"
  ],
  "dependencies": [
    {
      "identity": "crystalviewutilities",
      "name": "CrystalViewUtilities",
      "url": "https://github.com/robhasacamera/CrystalViewUtilities.git",
      "version": "unspecified",
      "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/CrystalViewUtilities",
      "traits": [
        "default"
      ],
      "dependencies": [
      ]
    }
  ]
}
Fetching https://github.com/robhasacamera/CrystalViewUtilities.git
[1/689] Fetching crystalviewutilities
Fetched https://github.com/robhasacamera/CrystalViewUtilities.git from cache (0.74s)
Creating working copy for https://github.com/robhasacamera/CrystalViewUtilities.git
Working copy of https://github.com/robhasacamera/CrystalViewUtilities.git resolved at main (76fb613)
warning: '.resolve-product-dependencies': dependency 'crystalviewutilities' is not used by any target
Found 0 product dependencies
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.3
Building package at path:  $PWD
https://github.com/robhasacamera/CrystalViewUtilities.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.4.0.app xcrun swift build --arch arm64
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version--6988338F2F200930.txt
[3/20] Compiling CrystalViewUtilities CUIFlowLayout.swift
[4/20] Compiling CrystalViewUtilities CUICorner.swift
[5/20] Compiling CrystalViewUtilities Alignment_Extension.swift
[6/20] Compiling CrystalViewUtilities CGFloat_Extension.swift
[7/20] Compiling CrystalViewUtilities CUITitledGroup.swift
[8/20] Emitting module CrystalViewUtilities
/Users/admin/builder/spi-builder-workspace/Sources/CrystalViewUtilities/Extensions/GeometryProxy_extension.swift:29:1: warning: extension declares a conformance of imported type 'GeometryProxy' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'SwiftUICore' introduce this conformance in the future
27 | import SwiftUI
28 |
29 | extension GeometryProxy: Equatable {
   | |- warning: extension declares a conformance of imported type 'GeometryProxy' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'SwiftUICore' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
30 |     // MARK: - Comparing `GeometryProxy`
31 |
/Users/admin/builder/spi-builder-workspace/Sources/CrystalViewUtilities/Shapes/CUIRoundedCornerShape.swift:34:9: warning: stored property 'corners' of 'Sendable'-conforming struct 'CUIRoundedCornerShape' has non-Sendable type 'CUICorner'; this is an error in the Swift 6 language mode
 32 | public struct CUIRoundedCornerShape: Shape {
 33 |     var radius: CGFloat
 34 |     var corners: CUICorner
    |         `- warning: stored property 'corners' of 'Sendable'-conforming struct 'CUIRoundedCornerShape' has non-Sendable type 'CUICorner'; this is an error in the Swift 6 language mode
 35 |
 36 |     private var cutPositionSet: CUIPositionSet? = nil
/Users/admin/builder/spi-builder-workspace/Sources/CrystalViewUtilities/OptionSets/CUICorner.swift:30:15: note: consider making struct 'CUICorner' conform to the 'Sendable' protocol
28 |
29 | /// A wrapper around `UIRectCorner` that adapts corners to leading and trailing terminology.
30 | public struct CUICorner: OptionSet {
   |               `- note: consider making struct 'CUICorner' conform to the 'Sendable' protocol
31 |     @Environment(\.layoutDirection) var direction
32 |
/Users/admin/builder/spi-builder-workspace/Sources/CrystalViewUtilities/Shapes/CUIRoundedCornerShape.swift:36:17: warning: stored property 'cutPositionSet' of 'Sendable'-conforming struct 'CUIRoundedCornerShape' contains non-Sendable type 'CUIPositionSet'; this is an error in the Swift 6 language mode
 34 |     var corners: CUICorner
 35 |
 36 |     private var cutPositionSet: CUIPositionSet? = nil
    |                 `- warning: stored property 'cutPositionSet' of 'Sendable'-conforming struct 'CUIRoundedCornerShape' contains non-Sendable type 'CUIPositionSet'; this is an error in the Swift 6 language mode
 37 |     private var cutLength: CGFloat? = nil
 38 |
/Users/admin/builder/spi-builder-workspace/Sources/CrystalViewUtilities/Structs/CUIPositionSet.swift:32:13: note: consider making enum 'CUIPositionSet' conform to the 'Sendable' protocol
 30 | ///
 31 | /// The position is described using a combination of an edge and the alignment along that edge.
 32 | public enum CUIPositionSet {
    |             `- note: consider making enum 'CUIPositionSet' conform to the 'Sendable' protocol
 33 |     @Environment(\.layoutDirection)
 34 |     static var layoutDirection
[9/20] Compiling CrystalViewUtilities GeometryProxy_extension.swift
/Users/admin/builder/spi-builder-workspace/Sources/CrystalViewUtilities/Extensions/GeometryProxy_extension.swift:29:1: warning: extension declares a conformance of imported type 'GeometryProxy' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'SwiftUICore' introduce this conformance in the future
27 | import SwiftUI
28 |
29 | extension GeometryProxy: Equatable {
   | |- warning: extension declares a conformance of imported type 'GeometryProxy' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'SwiftUICore' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
30 |     // MARK: - Comparing `GeometryProxy`
31 |
[10/20] Compiling CrystalViewUtilities Image_Extension.swift
/Users/admin/builder/spi-builder-workspace/Sources/CrystalViewUtilities/Extensions/GeometryProxy_extension.swift:29:1: warning: extension declares a conformance of imported type 'GeometryProxy' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'SwiftUICore' introduce this conformance in the future
27 | import SwiftUI
28 |
29 | extension GeometryProxy: Equatable {
   | |- warning: extension declares a conformance of imported type 'GeometryProxy' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'SwiftUICore' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
30 |     // MARK: - Comparing `GeometryProxy`
31 |
[11/20] Compiling CrystalViewUtilities CUIBezierPath_Extension.swift
/Users/admin/builder/spi-builder-workspace/Sources/CrystalViewUtilities/Extensions/CUIBezierPath_Extension.swift:347:13: warning: switch must be exhaustive
345 |         for i in 0 ..< elementCount {
346 |             let type = element(at: i, associatedPoints: &points)
347 |             switch type {
    |             |- warning: switch must be exhaustive
    |             |- note: add missing case: '.cubicCurveTo'
    |             |- note: add missing case: '.quadraticCurveTo'
    |             `- note: add missing cases
348 |             case .moveTo: path.move(to: points[0])
349 |             case .lineTo: path.addLine(to: points[0])
[12/20] Compiling CrystalViewUtilities Color_Extension.swift
/Users/admin/builder/spi-builder-workspace/Sources/CrystalViewUtilities/Extensions/CUIBezierPath_Extension.swift:347:13: warning: switch must be exhaustive
345 |         for i in 0 ..< elementCount {
346 |             let type = element(at: i, associatedPoints: &points)
347 |             switch type {
    |             |- warning: switch must be exhaustive
    |             |- note: add missing case: '.cubicCurveTo'
    |             |- note: add missing case: '.quadraticCurveTo'
    |             `- note: add missing cases
348 |             case .moveTo: path.move(to: points[0])
349 |             case .lineTo: path.addLine(to: points[0])
[13/20] Compiling CrystalViewUtilities CUIChildGeometryReader.swift
[14/20] Compiling CrystalViewUtilities CUIChildSizeReader.swift
[15/20] Compiling CrystalViewUtilities CUIRoundedCornerShape.swift
/Users/admin/builder/spi-builder-workspace/Sources/CrystalViewUtilities/Shapes/CUIRoundedCornerShape.swift:34:9: warning: stored property 'corners' of 'Sendable'-conforming struct 'CUIRoundedCornerShape' has non-Sendable type 'CUICorner'; this is an error in the Swift 6 language mode
 32 | public struct CUIRoundedCornerShape: Shape {
 33 |     var radius: CGFloat
 34 |     var corners: CUICorner
    |         `- warning: stored property 'corners' of 'Sendable'-conforming struct 'CUIRoundedCornerShape' has non-Sendable type 'CUICorner'; this is an error in the Swift 6 language mode
 35 |
 36 |     private var cutPositionSet: CUIPositionSet? = nil
/Users/admin/builder/spi-builder-workspace/Sources/CrystalViewUtilities/OptionSets/CUICorner.swift:30:15: note: consider making struct 'CUICorner' conform to the 'Sendable' protocol
28 |
29 | /// A wrapper around `UIRectCorner` that adapts corners to leading and trailing terminology.
30 | public struct CUICorner: OptionSet {
   |               `- note: consider making struct 'CUICorner' conform to the 'Sendable' protocol
31 |     @Environment(\.layoutDirection) var direction
32 |
/Users/admin/builder/spi-builder-workspace/Sources/CrystalViewUtilities/Shapes/CUIRoundedCornerShape.swift:36:17: warning: stored property 'cutPositionSet' of 'Sendable'-conforming struct 'CUIRoundedCornerShape' contains non-Sendable type 'CUIPositionSet'; this is an error in the Swift 6 language mode
 34 |     var corners: CUICorner
 35 |
 36 |     private var cutPositionSet: CUIPositionSet? = nil
    |                 `- warning: stored property 'cutPositionSet' of 'Sendable'-conforming struct 'CUIRoundedCornerShape' contains non-Sendable type 'CUIPositionSet'; this is an error in the Swift 6 language mode
 37 |     private var cutLength: CGFloat? = nil
 38 |
/Users/admin/builder/spi-builder-workspace/Sources/CrystalViewUtilities/Structs/CUIPositionSet.swift:32:13: note: consider making enum 'CUIPositionSet' conform to the 'Sendable' protocol
 30 | ///
 31 | /// The position is described using a combination of an edge and the alignment along that edge.
 32 | public enum CUIPositionSet {
    |             `- note: consider making enum 'CUIPositionSet' conform to the 'Sendable' protocol
 33 |     @Environment(\.layoutDirection)
 34 |     static var layoutDirection
[16/20] Compiling CrystalViewUtilities CUIPositionSet.swift
/Users/admin/builder/spi-builder-workspace/Sources/CrystalViewUtilities/Shapes/CUIRoundedCornerShape.swift:34:9: warning: stored property 'corners' of 'Sendable'-conforming struct 'CUIRoundedCornerShape' has non-Sendable type 'CUICorner'; this is an error in the Swift 6 language mode
 32 | public struct CUIRoundedCornerShape: Shape {
 33 |     var radius: CGFloat
 34 |     var corners: CUICorner
    |         `- warning: stored property 'corners' of 'Sendable'-conforming struct 'CUIRoundedCornerShape' has non-Sendable type 'CUICorner'; this is an error in the Swift 6 language mode
 35 |
 36 |     private var cutPositionSet: CUIPositionSet? = nil
/Users/admin/builder/spi-builder-workspace/Sources/CrystalViewUtilities/OptionSets/CUICorner.swift:30:15: note: consider making struct 'CUICorner' conform to the 'Sendable' protocol
28 |
29 | /// A wrapper around `UIRectCorner` that adapts corners to leading and trailing terminology.
30 | public struct CUICorner: OptionSet {
   |               `- note: consider making struct 'CUICorner' conform to the 'Sendable' protocol
31 |     @Environment(\.layoutDirection) var direction
32 |
/Users/admin/builder/spi-builder-workspace/Sources/CrystalViewUtilities/Shapes/CUIRoundedCornerShape.swift:36:17: warning: stored property 'cutPositionSet' of 'Sendable'-conforming struct 'CUIRoundedCornerShape' contains non-Sendable type 'CUIPositionSet'; this is an error in the Swift 6 language mode
 34 |     var corners: CUICorner
 35 |
 36 |     private var cutPositionSet: CUIPositionSet? = nil
    |                 `- warning: stored property 'cutPositionSet' of 'Sendable'-conforming struct 'CUIRoundedCornerShape' contains non-Sendable type 'CUIPositionSet'; this is an error in the Swift 6 language mode
 37 |     private var cutLength: CGFloat? = nil
 38 |
/Users/admin/builder/spi-builder-workspace/Sources/CrystalViewUtilities/Structs/CUIPositionSet.swift:32:13: note: consider making enum 'CUIPositionSet' conform to the 'Sendable' protocol
 30 | ///
 31 | /// The position is described using a combination of an edge and the alignment along that edge.
 32 | public enum CUIPositionSet {
    |             `- note: consider making enum 'CUIPositionSet' conform to the 'Sendable' protocol
 33 |     @Environment(\.layoutDirection)
 34 |     static var layoutDirection
[17/20] Compiling CrystalViewUtilities TypeAliases.swift
[18/20] Compiling CrystalViewUtilities CUIAdaptiveStackView.swift
[19/20] Compiling CrystalViewUtilities UIScreen_Extension.swift
[20/20] Compiling CrystalViewUtilities View_Extension.swift
[21/21] Compiling CrystalViewUtilities CUITitledGroupTextLabel.swift
Build complete! (10.13s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "CrystalViewUtilities",
  "name" : "CrystalViewUtilities",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "15.0"
    },
    {
      "name" : "macos",
      "version" : "12.0"
    }
  ],
  "products" : [
    {
      "name" : "CrystalViewUtilities",
      "targets" : [
        "CrystalViewUtilities"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "CrystalViewUtilitiesTests",
      "module_type" : "SwiftTarget",
      "name" : "CrystalViewUtilitiesTests",
      "path" : "Tests/CrystalViewUtilitiesTests",
      "sources" : [
        "View_ExtensionTests.swift"
      ],
      "target_dependencies" : [
        "CrystalViewUtilities"
      ],
      "type" : "test"
    },
    {
      "c99name" : "CrystalViewUtilities",
      "module_type" : "SwiftTarget",
      "name" : "CrystalViewUtilities",
      "path" : "Sources/CrystalViewUtilities",
      "product_memberships" : [
        "CrystalViewUtilities"
      ],
      "sources" : [
        "Extensions/Alignment_Extension.swift",
        "Extensions/CGFloat_Extension.swift",
        "Extensions/CUIBezierPath_Extension.swift",
        "Extensions/Color_Extension.swift",
        "Extensions/GeometryProxy_extension.swift",
        "Extensions/Image_Extension.swift",
        "Extensions/UIScreen_Extension.swift",
        "Extensions/View_Extension.swift",
        "Layout/CUIFlowLayout.swift",
        "OptionSets/CUICorner.swift",
        "Shapes/CUIRoundedCornerShape.swift",
        "Structs/CUIPositionSet.swift",
        "TypeAliases.swift",
        "Views/CUIAdaptiveStackView.swift",
        "Views/CUIChildGeometryReader.swift",
        "Views/CUIChildSizeReader.swift",
        "Views/CUITitledGroup.swift",
        "Views/CUITitledGroupTextLabel.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.5"
}
✅  Doc result (pending) reported
========================================
GenerateDocs
========================================
Generating docs at path:  $PWD/.docs/robhasacamera/crystalviewutilities/main
Repository:               robhasacamera/CrystalViewUtilities
Swift version used:       6.3
Target:                   CrystalViewUtilities
Extracting symbol information for 'CrystalViewUtilities'...
Finished extracting symbol information for 'CrystalViewUtilities'. (44.80s)
Building documentation for 'CrystalViewUtilities'...
warning: 'CUIFlowLayout' doesn't exist at '/CrystalViewUtilities'
  --> Documentation.md:16:5-16:18
14 | - ``CUIChildSizeReader``
15 | - ``CUIChildGeometryReader``
16 + - ``CUIFlowLayout``
17 | - ``CUITitledGroup``
18 | - ``CUITitledGroupTextLabel``
warning: 'fullScreenCoverWithoutAnimation(isPresented:onDismiss:content:)' doesn't exist at '/CrystalViewUtilities/CUIChildSizeReader'
  --> Extensions/View_Extension.md:15:22-15:85
13 | ### Presenting other views
14 |
15 + ``CUIChildSizeReader/fullScreenCoverWithoutAnimation(isPresented:onDismiss:content:)``
   |                      ╰─suggestion: Replace 'fullScreenCoverWithoutAnimation(isPresented:onDismiss:content:)' with 'sheet(isPresented:onDismiss:content:)'
16 |
17 |         Presents a Full Screen Cover, without the usual slide up animation.
warning: 'presentFullScreen(isPresented:dimmed:tapBackgroundToDismiss:onDismiss:afterPresenting:content:)' doesn't exist at '/CrystalViewUtilities/CUIChildSizeReader'
  --> Extensions/View_Extension.md:19:22-19:117
17 |         Presents a Full Screen Cover, without the usual slide up animation.
18 |
19 + ``CUIChildSizeReader/presentFullScreen(isPresented:dimmed:tapBackgroundToDismiss:onDismiss:afterPresenting:content:)``
20 |
21 |         Presents a view fullscreen, optionally dimming the background.
warning: 'asHostingController' doesn't exist at '/CrystalViewUtilities/CUIChildSizeReader'
  --> Extensions/View_Extension.md:25:22-25:41
23 | ### Integrating with UIKit
24 |
25 + ``CUIChildSizeReader/asHostingController``
26 |
27 |         Embed the view inside a hosting controller.
warning: 'topLeading' doesn't exist at '/CrystalViewUtilities/SwiftUICore/Alignment/inverted'
  --> ../Extensions/Alignment_Extension.swift:34:46-34:56
32 |     /// Returns and inverted version of the alignment.
33 |     ///
34 +     /// As an example, if the alignment is ``topLeading``,
35 |     /// calling inverted would return ``bottomTrailing``.
36 |     /// Calling inverted on ``center`` has no effect.
warning: 'bottomTrailing' doesn't exist at '/CrystalViewUtilities/SwiftUICore/Alignment/inverted'
  --> ../Extensions/Alignment_Extension.swift:35:41-35:55
33 |     ///
34 |     /// As an example, if the alignment is ``topLeading``,
35 +     /// calling inverted would return ``bottomTrailing``.
36 |     /// Calling inverted on ``center`` has no effect.
37 |     var inverted: Alignment {
warning: 'center' doesn't exist at '/CrystalViewUtilities/SwiftUICore/Alignment/inverted'
  --> ../Extensions/Alignment_Extension.swift:36:31-36:37
34 |     /// As an example, if the alignment is ``topLeading``,
35 |     /// calling inverted would return ``bottomTrailing``.
36 +     /// Calling inverted on ``center`` has no effect.
37 |     var inverted: Alignment {
38 |         switch self {
warning: 'regularTransparency' doesn't exist at '/CrystalViewUtilities/SwiftUICore/Color/transparent'
  --> ../Extensions/Color_Extension.swift:44:30-44:49
42 |     }
43 |
44 +     /// Convience call for ``regularTransparency``.
45 |     var transparent: Color {
46 |         regularTransparent
warning: 'Corner' doesn't exist at '/CrystalViewUtilities/CUIRoundedCornerShape'
   --> ../Extensions/View_Extension.swift:152:79-152:85
150 |     /// - Parameters:
151 |     ///   - radius: The radius to use to round the corners. Default is `.infinity`.
152 +     ///   - corners: The corners to round. Default is ``CUIRoundedCornerShape/Corner/allCorners``.
153 |     func cornerRadius(
154 |         _ radius: CGFloat = .cornerRadius,
warning: 'Corner' doesn't exist at '/CrystalViewUtilities/CUIRoundedCornerShape'
   --> ../Extensions/View_Extension.swift:152:79-152:85
150 |     /// - Parameters:
151 |     ///   - radius: The radius to use to round the corners. Default is `.infinity`.
152 +     ///   - corners: The corners to round. Default is ``CUIRoundedCornerShape/Corner/allCorners``.
153 |     func cornerRadius(
154 |         _ radius: CGFloat = .cornerRadius,
warning: 'Corner' doesn't exist at '/CrystalViewUtilities/CUIRoundedCornerShape'
   --> ../Extensions/View_Extension.swift:152:79-152:85
150 |     /// - Parameters:
151 |     ///   - radius: The radius to use to round the corners. Default is `.infinity`.
152 +     ///   - corners: The corners to round. Default is ``CUIRoundedCornerShape/Corner/allCorners``.
153 |     func cornerRadius(
154 |         _ radius: CGFloat = .cornerRadius,
warning: 'Corner' doesn't exist at '/CrystalViewUtilities/CUIRoundedCornerShape'
   --> ../Extensions/View_Extension.swift:152:79-152:85
150 |     /// - Parameters:
151 |     ///   - radius: The radius to use to round the corners. Default is `.infinity`.
152 +     ///   - corners: The corners to round. Default is ``CUIRoundedCornerShape/Corner/allCorners``.
153 |     func cornerRadius(
154 |         _ radius: CGFloat = .cornerRadius,
Finished building documentation for 'CrystalViewUtilities' (4.95s)
Generated documentation archive at:
  /Users/admin/builder/spi-builder-workspace/.docs/robhasacamera/crystalviewutilities/main
Fetching https://github.com/swiftlang/swift-docc-plugin
[1/2271] Fetching swift-docc-plugin
Fetched https://github.com/swiftlang/swift-docc-plugin from cache (1.16s)
Computing version for https://github.com/swiftlang/swift-docc-plugin
Computed https://github.com/swiftlang/swift-docc-plugin at 1.4.6 (1.95s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit
[1/3672] Fetching swift-docc-symbolkit
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (1.06s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (1.84s)
Creating working copy for https://github.com/swiftlang/swift-docc-symbolkit
Working copy of https://github.com/swiftlang/swift-docc-symbolkit resolved at 1.0.0
Creating working copy for https://github.com/swiftlang/swift-docc-plugin
Working copy of https://github.com/swiftlang/swift-docc-plugin resolved at 1.4.6
Building for debugging...
[0/8] Write sources
[1/8] Write snippet-extract-tool-entitlement.plist
[4/8] Write swift-version--6988338F2F200930.txt
[6/53] Compiling Snippets SnippetParser.swift
[7/53] Compiling Snippets Snippet.swift
[8/53] Emitting module Snippets
[9/53] Compiling SymbolKit DeclarationFragments.swift
[10/53] Compiling SymbolKit Fragment.swift
[11/53] Compiling SymbolKit FragmentKind.swift
[12/53] Compiling SymbolKit FunctionParameter.swift
[13/53] Compiling SymbolKit FunctionSignature.swift
[14/53] Compiling SymbolKit SemanticVersion.swift
[15/53] Compiling SymbolKit AccessControl.swift
[16/53] Compiling SymbolKit Availability.swift
[17/53] Compiling SymbolKit AvailabilityItem.swift
[18/53] Compiling SymbolKit Domain.swift
[19/57] Emitting module SymbolKit
[20/57] Compiling SymbolKit Mixin+Equals.swift
[21/57] Compiling SymbolKit Mixin+Hash.swift
[22/57] Compiling SymbolKit Mixin.swift
[23/57] Compiling SymbolKit LineList.swift
[24/57] Compiling SymbolKit Position.swift
[25/57] Compiling SymbolKit GenericConstraint.swift
[26/57] Compiling SymbolKit GenericParameter.swift
[27/57] Compiling SymbolKit Generics.swift
[28/57] Compiling SymbolKit Namespace.swift
[29/57] Compiling SymbolKit SourceRange.swift
[30/57] Compiling SymbolKit Metadata.swift
[31/57] Compiling SymbolKit Module.swift
[32/57] Compiling SymbolKit OperatingSystem.swift
[33/57] Compiling SymbolKit Platform.swift
[34/57] Compiling SymbolKit Identifier.swift
[35/57] Compiling SymbolKit KindIdentifier.swift
[36/57] Compiling SymbolKit Location.swift
[37/57] Compiling SymbolKit Mutability.swift
[38/57] Compiling SymbolKit Names.swift
[39/57] Compiling SymbolKit SPI.swift
[40/57] Compiling SymbolKit Snippet.swift
[41/57] Compiling SymbolKit Extension.swift
[42/57] Compiling SymbolKit Relationship.swift
[43/57] Compiling SymbolKit RelationshipKind.swift
[44/57] Compiling SymbolKit SourceOrigin.swift
[45/57] Compiling SymbolKit GenericConstraints.swift
[46/57] Compiling SymbolKit Swift.swift
[47/57] Compiling SymbolKit Symbol.swift
[48/57] Compiling SymbolKit SymbolKind.swift
[49/57] Compiling SymbolKit SymbolGraph.swift
[50/57] Compiling SymbolKit GraphCollector.swift
[51/57] Compiling SymbolKit UnifiedSymbol+Encodable.swift
[52/57] Compiling SymbolKit UnifiedSymbol.swift
[53/57] Compiling SymbolKit UnifiedSymbolGraph+Encodable.swift
[54/57] Compiling SymbolKit UnifiedSymbolGraph.swift
[55/61] Compiling snippet_extract SnippetBuildCommand.swift
[56/61] Compiling snippet_extract URL+Status.swift
[57/61] Emitting module snippet_extract
[58/61] Compiling snippet_extract SymbolGraph+Snippet.swift
[58/61] Write Objects.LinkFileList
[59/61] Linking snippet-extract-tool
[60/61] Applying snippet-extract-tool
Build of product 'snippet-extract' complete! (5.80s)
Building for debugging...
[0/1] Write swift-version--6988338F2F200930.txt
Build of target: 'CrystalViewUtilities' complete! (0.51s)
   10242
71	/Users/admin/builder/spi-builder-workspace/.docs/robhasacamera/crystalviewutilities/main
✅  Doc result (uploading) reported
========================================
SyncDocs
========================================
Doc archive source directory: $PWD/.docs/robhasacamera/crystalviewutilities/main
File count: 10242
Doc size:   71.0MB
Preparing doc bundle ...
Uploading prod-robhasacamera-crystalviewutilities-main-28ae09a9.zip to s3://spi-docs-inbox/prod-robhasacamera-crystalviewutilities-main-28ae09a9.zip
Copying... [10%]
Copying... [20%]
Copying... [30%]
Copying... [40%]
Copying... [50%]
Copying... [60%]
Copying... [70%]
Copying... [80%]
Copying... [90%]
Copying... [100%]
Done.