The Swift Package Index logo.Swift Package Index

Build Information

Successful build of AtProtocol, reference 0.0.1 (190207), with Swift 6.3 for macOS (SPM) on 22 Apr 2026 13:32:36 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/SparrowTek/AtProtocol.git
Reference: 0.0.1
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/SparrowTek/AtProtocol
 * tag               0.0.1      -> FETCH_HEAD
HEAD is now at 190207d add spi.yml for support on Swift Package Index
Cloned https://github.com/SparrowTek/AtProtocol.git
Revision (git rev-parse @):
190207d4afc9c68bafcb14408d05771551a27de0
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/SparrowTek/AtProtocol.git at 0.0.1
========================================
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": "atprotocol",
      "name": "AtProtocol",
      "url": "https://github.com/SparrowTek/AtProtocol.git",
      "version": "unspecified",
      "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/AtProtocol",
      "traits": [
        "default"
      ],
      "dependencies": [
      ]
    }
  ]
}
Fetching https://github.com/SparrowTek/AtProtocol.git
[1/566] Fetching atprotocol
Fetched https://github.com/SparrowTek/AtProtocol.git from cache (0.76s)
Creating working copy for https://github.com/SparrowTek/AtProtocol.git
Working copy of https://github.com/SparrowTek/AtProtocol.git resolved at 0.0.1 (190207d)
warning: '.resolve-product-dependencies': dependency 'atprotocol' 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/SparrowTek/AtProtocol.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/27] Emitting module AtProtocol
/Users/admin/builder/spi-builder-workspace/Sources/AtProtocol/Models/AtError.swift:7:14: warning: Should error be type string or AtErrorType?
 5 |
 6 | public struct ErrorMessage: Codable, Sendable {
 7 |     #warning("Should error be type string or AtErrorType?")
   |              `- warning: Should error be type string or AtErrorType?
 8 |     public let error: String
 9 |     public let message: String?
[4/29] Compiling AtProtocol NetworkingProtocol.swift
[5/29] Compiling AtProtocol StatusCode.swift
[6/29] Compiling AtProtocol Viewer.swift
/Users/admin/builder/spi-builder-workspace/Sources/AtProtocol/Networking/APIs/BskyAPI.swift:38:17: warning: variable 'parameters' was never mutated; consider changing to 'let' constant
36 |         switch self {
37 |         case .getFeedGenerators(let feeds):
38 |             var parameters: Parameters = [:]
   |                 `- warning: variable 'parameters' was never mutated; consider changing to 'let' constant
39 |             for feed in feeds {
40 |
/Users/admin/builder/spi-builder-workspace/Sources/AtProtocol/Networking/APIs/BskyAPI.swift:39:17: warning: immutable value 'feed' was never used; consider replacing with '_' or removing it [#no-usage]
37 |         case .getFeedGenerators(let feeds):
38 |             var parameters: Parameters = [:]
39 |             for feed in feeds {
   |                 `- warning: immutable value 'feed' was never used; consider replacing with '_' or removing it [#no-usage]
40 |
41 |             }
[7/29] Compiling AtProtocol AtProtoAPI.swift
/Users/admin/builder/spi-builder-workspace/Sources/AtProtocol/Networking/APIs/BskyAPI.swift:38:17: warning: variable 'parameters' was never mutated; consider changing to 'let' constant
36 |         switch self {
37 |         case .getFeedGenerators(let feeds):
38 |             var parameters: Parameters = [:]
   |                 `- warning: variable 'parameters' was never mutated; consider changing to 'let' constant
39 |             for feed in feeds {
40 |
/Users/admin/builder/spi-builder-workspace/Sources/AtProtocol/Networking/APIs/BskyAPI.swift:39:17: warning: immutable value 'feed' was never used; consider replacing with '_' or removing it [#no-usage]
37 |         case .getFeedGenerators(let feeds):
38 |             var parameters: Parameters = [:]
39 |             for feed in feeds {
   |                 `- warning: immutable value 'feed' was never used; consider replacing with '_' or removing it [#no-usage]
40 |
41 |             }
[8/29] Compiling AtProtocol BskyAPI.swift
/Users/admin/builder/spi-builder-workspace/Sources/AtProtocol/Networking/APIs/BskyAPI.swift:38:17: warning: variable 'parameters' was never mutated; consider changing to 'let' constant
36 |         switch self {
37 |         case .getFeedGenerators(let feeds):
38 |             var parameters: Parameters = [:]
   |                 `- warning: variable 'parameters' was never mutated; consider changing to 'let' constant
39 |             for feed in feeds {
40 |
/Users/admin/builder/spi-builder-workspace/Sources/AtProtocol/Networking/APIs/BskyAPI.swift:39:17: warning: immutable value 'feed' was never used; consider replacing with '_' or removing it [#no-usage]
37 |         case .getFeedGenerators(let feeds):
38 |             var parameters: Parameters = [:]
39 |             for feed in feeds {
   |                 `- warning: immutable value 'feed' was never used; consider replacing with '_' or removing it [#no-usage]
40 |
41 |             }
[9/29] Compiling AtProtocol HTTPTask.swift
/Users/admin/builder/spi-builder-workspace/Sources/AtProtocol/Models/AtError.swift:7:14: warning: Should error be type string or AtErrorType?
 5 |
 6 | public struct ErrorMessage: Codable, Sendable {
 7 |     #warning("Should error be type string or AtErrorType?")
   |              `- warning: Should error be type string or AtErrorType?
 8 |     public let error: String
 9 |     public let message: String?
[10/29] Compiling AtProtocol NetworkRouter.swift
/Users/admin/builder/spi-builder-workspace/Sources/AtProtocol/Models/AtError.swift:7:14: warning: Should error be type string or AtErrorType?
 5 |
 6 | public struct ErrorMessage: Codable, Sendable {
 7 |     #warning("Should error be type string or AtErrorType?")
   |              `- warning: Should error be type string or AtErrorType?
 8 |     public let error: String
 9 |     public let message: String?
[11/29] Compiling AtProtocol Feed.swift
[12/29] Compiling AtProtocol LoginObject.swift
[13/29] Compiling AtProtocol Preferences.swift
[14/29] Compiling AtProtocol Bsky.swift
/Users/admin/builder/spi-builder-workspace/Sources/AtProtocol/Models/AtError.swift:7:14: warning: Should error be type string or AtErrorType?
 5 |
 6 | public struct ErrorMessage: Codable, Sendable {
 7 |     #warning("Should error be type string or AtErrorType?")
   |              `- warning: Should error be type string or AtErrorType?
 8 |     public let error: String
 9 |     public let message: String?
[15/29] Compiling AtProtocol Networking.swift
/Users/admin/builder/spi-builder-workspace/Sources/AtProtocol/Models/AtError.swift:7:14: warning: Should error be type string or AtErrorType?
 5 |
 6 | public struct ErrorMessage: Codable, Sendable {
 7 |     #warning("Should error be type string or AtErrorType?")
   |              `- warning: Should error be type string or AtErrorType?
 8 |     public let error: String
 9 |     public let message: String?
[16/29] Compiling AtProtocol Profile.swift
[17/29] Compiling AtProtocol Session.swift
[18/29] Compiling AtProtocol Timeline.swift
[19/29] Compiling AtProtocol CharacterSet.swift
[20/29] Compiling AtProtocol Encodable.swift
[21/29] Compiling AtProtocol AtProto.swift
[22/29] Compiling AtProtocol EndpointType.swift
[23/29] Compiling AtProtocol HTTPMethod.swift
[24/29] Compiling AtProtocol JSONParameterEncoder.swift
[25/29] Compiling AtProtocol ParameterEncoding.swift
[26/29] Compiling AtProtocol URLParameterEncoder.swift
[27/29] Compiling AtProtocol AtProtocol.swift
/Users/admin/builder/spi-builder-workspace/Sources/AtProtocol/Models/AtError.swift:7:14: warning: Should error be type string or AtErrorType?
 5 |
 6 | public struct ErrorMessage: Codable, Sendable {
 7 |     #warning("Should error be type string or AtErrorType?")
   |              `- warning: Should error be type string or AtErrorType?
 8 |     public let error: String
 9 |     public let message: String?
[28/29] Compiling AtProtocol AtError.swift
/Users/admin/builder/spi-builder-workspace/Sources/AtProtocol/Models/AtError.swift:7:14: warning: Should error be type string or AtErrorType?
 5 |
 6 | public struct ErrorMessage: Codable, Sendable {
 7 |     #warning("Should error be type string or AtErrorType?")
   |              `- warning: Should error be type string or AtErrorType?
 8 |     public let error: String
 9 |     public let message: String?
[29/29] Compiling AtProtocol Creator.swift
/Users/admin/builder/spi-builder-workspace/Sources/AtProtocol/Models/AtError.swift:7:14: warning: Should error be type string or AtErrorType?
 5 |
 6 | public struct ErrorMessage: Codable, Sendable {
 7 |     #warning("Should error be type string or AtErrorType?")
   |              `- warning: Should error be type string or AtErrorType?
 8 |     public let error: String
 9 |     public let message: String?
Build complete! (5.42s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "AtProtocol",
  "name" : "AtProtocol",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "17.0"
    },
    {
      "name" : "macos",
      "version" : "14.0"
    },
    {
      "name" : "maccatalyst",
      "version" : "17.0"
    }
  ],
  "products" : [
    {
      "name" : "AtProtocol",
      "targets" : [
        "AtProtocol"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "AtProtocolTests",
      "module_type" : "SwiftTarget",
      "name" : "AtProtocolTests",
      "path" : "Tests/AtProtocolTests",
      "sources" : [
        "AtProtocolTests.swift"
      ],
      "target_dependencies" : [
        "AtProtocol"
      ],
      "type" : "test"
    },
    {
      "c99name" : "AtProtocol",
      "module_type" : "SwiftTarget",
      "name" : "AtProtocol",
      "path" : "Sources/AtProtocol",
      "product_memberships" : [
        "AtProtocol"
      ],
      "sources" : [
        "AtProtocol.swift",
        "Models/AtError.swift",
        "Models/Creator.swift",
        "Models/Feed.swift",
        "Models/LoginObject.swift",
        "Models/Preferences.swift",
        "Models/Profile.swift",
        "Models/Session.swift",
        "Models/Timeline.swift",
        "Models/Viewer.swift",
        "Networking/APIs/AtProtoAPI.swift",
        "Networking/APIs/BskyAPI.swift",
        "Networking/Encoding/JSONParameterEncoder.swift",
        "Networking/Encoding/ParameterEncoding.swift",
        "Networking/Encoding/URLParameterEncoder.swift",
        "Networking/Extensions/CharacterSet.swift",
        "Networking/Extensions/Encodable.swift",
        "Networking/Lexicons/AtProto.swift",
        "Networking/Lexicons/Bsky.swift",
        "Networking/Networking.swift",
        "Networking/Service/EndpointType.swift",
        "Networking/Service/HTTPMethod.swift",
        "Networking/Service/HTTPTask.swift",
        "Networking/Service/NetworkRouter.swift",
        "Networking/Service/NetworkingProtocol.swift",
        "Networking/Service/StatusCode.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.9"
}
✅  Doc result (pending) reported
========================================
GenerateDocs
========================================
Generating docs at path:  $PWD/.docs/sparrowtek/atprotocol/0.0.1
Repository:               SparrowTek/AtProtocol
Swift version used:       6.3
Target:                   AtProtocol
Extracting symbol information for 'AtProtocol'...
Finished extracting symbol information for 'AtProtocol'. (29.95s)
Building documentation for 'AtProtocol'...
Finished building documentation for 'AtProtocol' (0.80s)
Generated documentation archive at:
  /Users/admin/builder/spi-builder-workspace/.docs/sparrowtek/atprotocol/0.0.1
Fetching https://github.com/swiftlang/swift-docc-plugin
[1/2277] Fetching swift-docc-plugin
Fetched https://github.com/swiftlang/swift-docc-plugin from cache (1.24s)
Computing version for https://github.com/swiftlang/swift-docc-plugin
Computed https://github.com/swiftlang/swift-docc-plugin at 1.4.6 (3.52s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit
[1/3674] Fetching swift-docc-symbolkit
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (1.14s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (1.87s)
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
[3/8] Write sources
[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] Emitting module SymbolKit
[10/57] Compiling SymbolKit SourceRange.swift
[11/57] Compiling SymbolKit Metadata.swift
[12/57] Compiling SymbolKit Module.swift
[13/57] Compiling SymbolKit OperatingSystem.swift
[14/57] Compiling SymbolKit Platform.swift
[15/57] Compiling SymbolKit SemanticVersion.swift
[16/57] Compiling SymbolKit AccessControl.swift
[17/57] Compiling SymbolKit Availability.swift
[18/57] Compiling SymbolKit AvailabilityItem.swift
[19/57] Compiling SymbolKit Domain.swift
[20/57] Compiling SymbolKit Identifier.swift
[21/57] Compiling SymbolKit KindIdentifier.swift
[22/57] Compiling SymbolKit Location.swift
[23/57] Compiling SymbolKit Mutability.swift
[24/57] Compiling SymbolKit Mixin+Equals.swift
[25/57] Compiling SymbolKit Mixin+Hash.swift
[26/57] Compiling SymbolKit Mixin.swift
[27/57] Compiling SymbolKit LineList.swift
[28/57] Compiling SymbolKit Position.swift
[29/57] Compiling SymbolKit GenericConstraint.swift
[30/57] Compiling SymbolKit GenericParameter.swift
[31/57] Compiling SymbolKit Generics.swift
[32/57] Compiling SymbolKit Namespace.swift
[33/57] Compiling SymbolKit Relationship.swift
[34/57] Compiling SymbolKit RelationshipKind.swift
[35/57] Compiling SymbolKit SourceOrigin.swift
[36/57] Compiling SymbolKit GenericConstraints.swift
[37/57] Compiling SymbolKit Swift.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 DeclarationFragments.swift
[43/57] Compiling SymbolKit Fragment.swift
[44/57] Compiling SymbolKit FragmentKind.swift
[45/57] Compiling SymbolKit FunctionParameter.swift
[46/57] Compiling SymbolKit FunctionSignature.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] Emitting module snippet_extract
[56/61] Compiling snippet_extract SymbolGraph+Snippet.swift
[57/61] Compiling snippet_extract SnippetBuildCommand.swift
[58/61] Compiling snippet_extract URL+Status.swift
[58/61] Write Objects.LinkFileList
[59/61] Linking snippet-extract-tool
[60/61] Applying snippet-extract-tool
Build of product 'snippet-extract' complete! (4.68s)
Building for debugging...
[0/1] Write swift-version--6988338F2F200930.txt
Build of target: 'AtProtocol' complete! (0.24s)
     758
5	/Users/admin/builder/spi-builder-workspace/.docs/sparrowtek/atprotocol/0.0.1
✅  Doc result (uploading) reported
========================================
SyncDocs
========================================
Doc archive source directory: $PWD/.docs/sparrowtek/atprotocol/0.0.1
File count: 758
Doc size:   5.0MB
Preparing doc bundle ...
Uploading prod-sparrowtek-atprotocol-0.0.1-569ea1d8.zip to s3://spi-docs-inbox/prod-sparrowtek-atprotocol-0.0.1-569ea1d8.zip
Copying... [12%]
Copying... [25%]
Copying... [31%]
Copying... [43%]
Copying... [56%]
Copying... [62%]
Copying... [74%]
Copying... [80%]
Copying... [93%]
Copying... [100%]
Done.