The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Successful build of Atlantis, reference 1.28.0 (92ca54), with Swift 6.2 (beta) for macOS (SPM) on 23 Jun 2025 19:06:04 UTC.

Swift 6 data race errors: 0

Build Command

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

Build Log

========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/ProxymanApp/atlantis.git
Reference: 1.28.0
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/ProxymanApp/atlantis
 * tag               1.28.0     -> FETCH_HEAD
HEAD is now at 92ca545 New APIs for macOS 15.4 issue (#164)
Cloned https://github.com/ProxymanApp/atlantis.git
Revision (git rev-parse @):
92ca545af63a4ff96eaeb8a662ffea29e1f47f08
SUCCESS checkout https://github.com/ProxymanApp/atlantis.git at 1.28.0
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.2
Building package at path:  $PWD
https://github.com/ProxymanApp/atlantis.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
Building for debugging...
[0/3] Write sources
[1/3] Copying PrivacyInfo.xcprivacy
[2/3] Write swift-version-1EA4D86E10B52AF.txt
[4/17] Compiling Atlantis Message.swift
[5/17] Compiling Atlantis NetworkInjector+URLSession.swift
[6/17] Compiling Atlantis AtlantisHelper.swift
[7/17] Compiling Atlantis Configuration.swift
[8/18] Emitting module Atlantis
[9/18] Compiling Atlantis NetworkInjector.swift
[10/18] Compiling Atlantis Atlantis+Manual.swift
[11/18] Compiling Atlantis Atlantis.swift
[12/18] Compiling Atlantis DataCompression.swift
[13/18] Compiling Atlantis DispatchQueue+Once.swift
[14/18] Compiling Atlantis Transporter.swift
/Users/admin/builder/spi-builder-workspace/Sources/Transporter.swift:226:17: warning: switch must be exhaustive
224 |             case .waiting(let error):
225 |
226 |                 switch error {
    |                 |- warning: switch must be exhaustive
    |                 |- note: add missing case: '.posix(_)'
    |                 |- note: add missing case: '.tls(_)'
    |                 |- note: add missing case: '.wifiAware(_)'
    |                 `- note: add missing cases
227 |                 case .dns(let code):
228 |                     switch Int(code) {
/Users/admin/builder/spi-builder-workspace/Sources/Transporter.swift:209:13: warning: switch must be exhaustive
207 |         browser.stateUpdateHandler = {[weak self] newState in
208 |             guard let strongSelf = self else { return }
209 |             switch newState {
    |             |- warning: switch must be exhaustive
    |             `- note: add missing case: '.setup'
210 |             case .failed(let error):
211 |                 print("[Atlantis][Error] Bonjour Browser failed: \(error). Ensure network permissions and Bonjour service are correct.")
/Users/admin/builder/spi-builder-workspace/Sources/Transporter.swift:443:37: warning: immutable value 'type' was never used; consider replacing with '_' or removing it [#no-usage]
441 |         case .hostPort(let host, _):
442 |             return "\(host)"
443 |         case .service(let name, let type, let domain, _):
    |                                     `- warning: immutable value 'type' was never used; consider replacing with '_' or removing it [#no-usage]
444 |             // Extract hostname from service name (e.g., "MyMac._Proxyman._tcp.local.")
445 |             // This might need refinement based on actual service name formats
/Users/admin/builder/spi-builder-workspace/Sources/Transporter.swift:443:47: warning: immutable value 'domain' was never used; consider replacing with '_' or removing it [#no-usage]
441 |         case .hostPort(let host, _):
442 |             return "\(host)"
443 |         case .service(let name, let type, let domain, _):
    |                                               `- warning: immutable value 'domain' was never used; consider replacing with '_' or removing it [#no-usage]
444 |             // Extract hostname from service name (e.g., "MyMac._Proxyman._tcp.local.")
445 |             // This might need refinement based on actual service name formats
/Users/admin/builder/spi-builder-workspace/Sources/Transporter.swift:495:9: warning: switch must be exhaustive
493 | extension NWEndpoint {
494 |     var debugDescription: String {
495 |         switch self {
    |         |- warning: switch must be exhaustive
    |         `- note: add missing case: '.opaque(_)'
496 |         case .hostPort(let host, let port):
497 |             return "\(host):\(port)"
[15/18] Compiling Atlantis resource_bundle_accessor.swift
[16/18] Compiling Atlantis Packages.swift
[17/18] Compiling Atlantis Runtime.swift
[18/18] Compiling Atlantis PackageIdentifier.swift
Build complete! (9.22s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "Atlantis",
  "name" : "Atlantis",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.15"
    },
    {
      "name" : "ios",
      "version" : "13.0"
    },
    {
      "name" : "tvos",
      "version" : "13.0"
    }
  ],
  "products" : [
    {
      "name" : "Atlantis",
      "targets" : [
        "Atlantis"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "swift_languages_versions" : [
    "5"
  ],
  "targets" : [
    {
      "c99name" : "Atlantis",
      "module_type" : "SwiftTarget",
      "name" : "Atlantis",
      "path" : "Sources",
      "product_memberships" : [
        "Atlantis"
      ],
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/PrivacyInfo.xcprivacy",
          "rule" : {
            "copy" : {
            }
          }
        }
      ],
      "sources" : [
        "Atlantis+Manual.swift",
        "Atlantis.swift",
        "AtlantisHelper.swift",
        "Configuration.swift",
        "DataCompression.swift",
        "DispatchQueue+Once.swift",
        "Message.swift",
        "NetworkInjector+URLSession.swift",
        "NetworkInjector.swift",
        "PackageIdentifier.swift",
        "Packages.swift",
        "Runtime.swift",
        "Transporter.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.9"
}
Done.