The Swift Package Index logo.Swift Package Index

Build Information

Successful build of DevCycle, reference v1.24.5 (efe19d), with Swift 6.3 for macOS (SPM) on 18 Apr 2026 15:58:06 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/DevCycleHQ/ios-client-sdk.git
Reference: v1.24.5
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/DevCycleHQ/ios-client-sdk
 * tag               v1.24.5    -> FETCH_HEAD
HEAD is now at efe19d0 Release 1.24.5
Cloned https://github.com/DevCycleHQ/ios-client-sdk.git
Revision (git rev-parse @):
efe19d06a48d897d22aa1c5cebaded841057f2ba
SUCCESS checkout https://github.com/DevCycleHQ/ios-client-sdk.git at v1.24.5
Fetching https://github.com/LaunchDarkly/swift-eventsource.git
[1/1795] Fetching swift-eventsource
Fetched https://github.com/LaunchDarkly/swift-eventsource.git from cache (0.92s)
Computing version for https://github.com/LaunchDarkly/swift-eventsource.git
Computed https://github.com/LaunchDarkly/swift-eventsource.git at 3.3.0 (1.58s)
Creating working copy for https://github.com/LaunchDarkly/swift-eventsource.git
Working copy of https://github.com/LaunchDarkly/swift-eventsource.git resolved at 3.3.0
========================================
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": "ios-client-sdk",
      "name": "DevCycle",
      "url": "https://github.com/DevCycleHQ/ios-client-sdk.git",
      "version": "unspecified",
      "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/ios-client-sdk",
      "traits": [
        "default"
      ],
      "dependencies": [
        {
          "identity": "swift-eventsource",
          "name": "LDSwiftEventSource",
          "url": "https://github.com/LaunchDarkly/swift-eventsource.git",
          "version": "3.3.0",
          "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/swift-eventsource",
          "traits": [
            "default"
          ],
          "dependencies": [
          ]
        }
      ]
    }
  ]
}
Fetching https://github.com/DevCycleHQ/ios-client-sdk.git
[1/5305] Fetching ios-client-sdk
Fetched https://github.com/DevCycleHQ/ios-client-sdk.git from cache (1.01s)
Fetching https://github.com/LaunchDarkly/swift-eventsource.git from cache
Fetched https://github.com/LaunchDarkly/swift-eventsource.git from cache (0.41s)
Computing version for https://github.com/LaunchDarkly/swift-eventsource.git
Computed https://github.com/LaunchDarkly/swift-eventsource.git at 3.3.0 (0.47s)
Creating working copy for https://github.com/LaunchDarkly/swift-eventsource.git
Working copy of https://github.com/LaunchDarkly/swift-eventsource.git resolved at 3.3.0
Creating working copy for https://github.com/DevCycleHQ/ios-client-sdk.git
Working copy of https://github.com/DevCycleHQ/ios-client-sdk.git resolved at v1.24.5 (efe19d0)
warning: '.resolve-product-dependencies': dependency 'ios-client-sdk' is not used by any target
Found 1 product dependencies
  - LDSwiftEventSource
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.3
Building package at path:  $PWD
https://github.com/DevCycleHQ/ios-client-sdk.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.4.0.app xcrun swift build --arch arm64
Building for debugging...
[0/4] Copying PrivacyInfo.xcprivacy
[0/4] Write sources
[3/4] Write swift-version--6988338F2F200930.txt
[5/10] Compiling LDSwiftEventSource UTF8LineParser.swift
[6/10] Compiling LDSwiftEventSource Types.swift
[7/10] Compiling LDSwiftEventSource Logs.swift
[8/10] Compiling LDSwiftEventSource LDSwiftEventSource.swift
[9/10] Emitting module LDSwiftEventSource
[10/10] Compiling LDSwiftEventSource EventParser.swift
[11/35] Emitting module DevCycle
[12/37] Compiling DevCycle Log.swift
[13/37] Compiling DevCycle NotificationNames.swift
[14/37] Compiling DevCycle DevCycleEvent.swift
[15/37] Compiling DevCycle DevCycleOptions.swift
[16/37] Compiling DevCycle EventQueue.swift
[17/37] Compiling DevCycle ObjCUserConfig.swift
[18/37] Compiling DevCycle SSEConnection.swift
[19/37] Compiling DevCycle ObjCDVCVariable.swift
/Users/admin/builder/spi-builder-workspace/DevCycle/ObjC/ObjCDevCycleClient.swift:62:23: warning: comparing non-optional value of type 'String' to 'nil' always returns false
 60 |     ) {
 61 |         do {
 62 |             if sdkKey == nil || sdkKey == "" {
    |                       `- warning: comparing non-optional value of type 'String' to 'nil' always returns false
 63 |                 Log.error("SDK Key missing", tags: ["build", "objc"])
 64 |                 throw ObjCClientErrors.MissingSDKKey
/Users/admin/builder/spi-builder-workspace/DevCycle/ObjC/ObjCDevCycleClient.swift:65:28: warning: comparing non-optional value of type 'ObjCDevCycleUser' to 'nil' always returns false
 63 |                 Log.error("SDK Key missing", tags: ["build", "objc"])
 64 |                 throw ObjCClientErrors.MissingSDKKey
 65 |             } else if user == nil {
    |                            `- warning: comparing non-optional value of type 'ObjCDevCycleUser' to 'nil' always returns false
 66 |                 Log.error("User missing", tags: ["build", "objc"])
 67 |                 throw ObjCClientErrors.MissingUser
[20/37] Compiling DevCycle ObjCDevCycleClient.swift
/Users/admin/builder/spi-builder-workspace/DevCycle/ObjC/ObjCDevCycleClient.swift:62:23: warning: comparing non-optional value of type 'String' to 'nil' always returns false
 60 |     ) {
 61 |         do {
 62 |             if sdkKey == nil || sdkKey == "" {
    |                       `- warning: comparing non-optional value of type 'String' to 'nil' always returns false
 63 |                 Log.error("SDK Key missing", tags: ["build", "objc"])
 64 |                 throw ObjCClientErrors.MissingSDKKey
/Users/admin/builder/spi-builder-workspace/DevCycle/ObjC/ObjCDevCycleClient.swift:65:28: warning: comparing non-optional value of type 'ObjCDevCycleUser' to 'nil' always returns false
 63 |                 Log.error("SDK Key missing", tags: ["build", "objc"])
 64 |                 throw ObjCClientErrors.MissingSDKKey
 65 |             } else if user == nil {
    |                            `- warning: comparing non-optional value of type 'ObjCDevCycleUser' to 'nil' always returns false
 66 |                 Log.error("User missing", tags: ["build", "objc"])
 67 |                 throw ObjCClientErrors.MissingUser
[21/37] Compiling DevCycle ObjCDevCycleEvent.swift
/Users/admin/builder/spi-builder-workspace/DevCycle/ObjC/ObjCDevCycleClient.swift:62:23: warning: comparing non-optional value of type 'String' to 'nil' always returns false
 60 |     ) {
 61 |         do {
 62 |             if sdkKey == nil || sdkKey == "" {
    |                       `- warning: comparing non-optional value of type 'String' to 'nil' always returns false
 63 |                 Log.error("SDK Key missing", tags: ["build", "objc"])
 64 |                 throw ObjCClientErrors.MissingSDKKey
/Users/admin/builder/spi-builder-workspace/DevCycle/ObjC/ObjCDevCycleClient.swift:65:28: warning: comparing non-optional value of type 'ObjCDevCycleUser' to 'nil' always returns false
 63 |                 Log.error("SDK Key missing", tags: ["build", "objc"])
 64 |                 throw ObjCClientErrors.MissingSDKKey
 65 |             } else if user == nil {
    |                            `- warning: comparing non-optional value of type 'ObjCDevCycleUser' to 'nil' always returns false
 66 |                 Log.error("User missing", tags: ["build", "objc"])
 67 |                 throw ObjCClientErrors.MissingUser
[22/37] Compiling DevCycle Cache.swift
[23/37] Compiling DevCycle CustomData.swift
[24/37] Compiling DevCycle DVCConfig.swift
[25/37] Compiling DevCycle PlatformDetails.swift
[26/37] Compiling DevCycle UserConfig.swift
[27/37] Compiling DevCycle DevCycleService.swift
[28/37] Compiling DevCycle ProcessConfig.swift
[29/37] Compiling DevCycle RequestConsolidator.swift
[30/37] Compiling DevCycle ObjCDevCycleOptions.swift
/Users/admin/builder/spi-builder-workspace/DevCycle/ObjC/ObjCDevCycleOptions.swift:35:52: warning: 'flushEventsIntervalMs' is deprecated: Use eventFlushIntervalMS [#DeprecatedDeclaration]
 33 |            let interval = eventFlushIntervalMS as? Int {
 34 |             optionsBuilder = optionsBuilder.eventFlushIntervalMS(interval)
 35 |         } else if let flushEventsIntervalMs = self.flushEventsIntervalMs,
    |                                                    `- warning: 'flushEventsIntervalMs' is deprecated: Use eventFlushIntervalMS [#DeprecatedDeclaration]
 36 |                   let interval = flushEventsIntervalMs as? Int {
 37 |             optionsBuilder = optionsBuilder.eventFlushIntervalMS(interval)
/Users/admin/builder/spi-builder-workspace/DevCycle/ObjC/ObjCDevCycleOptions.swift:42:45: warning: 'disableEventLogging' is deprecated: Use disableAutomaticEventLogging or disableCustomEventLogging [#DeprecatedDeclaration]
 40 |         if let disableEventLogging = self.disableEventLogging,
 41 |            let disable = disableEventLogging as? Bool {
 42 |             optionsBuilder = optionsBuilder.disableEventLogging(disable)
    |                                             `- warning: 'disableEventLogging' is deprecated: Use disableAutomaticEventLogging or disableCustomEventLogging [#DeprecatedDeclaration]
 43 |         }
 44 |
/Users/admin/builder/spi-builder-workspace/DevCycle/ObjC/ObjCDevCycleOptions.swift:76:39: warning: conditional cast from 'NSString' to 'String' always succeeds
 74 |
 75 |         if let apiProxyURL = self.apiProxyURL,
 76 |            let proxyURL = apiProxyURL as? String {
    |                                       `- warning: conditional cast from 'NSString' to 'String' always succeeds
 77 |             optionsBuilder = optionsBuilder.apiProxyURL(proxyURL)
 78 |         }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[31/37] Compiling DevCycle ObjCDevCycleUser.swift
/Users/admin/builder/spi-builder-workspace/DevCycle/ObjC/ObjCDevCycleOptions.swift:35:52: warning: 'flushEventsIntervalMs' is deprecated: Use eventFlushIntervalMS [#DeprecatedDeclaration]
 33 |            let interval = eventFlushIntervalMS as? Int {
 34 |             optionsBuilder = optionsBuilder.eventFlushIntervalMS(interval)
 35 |         } else if let flushEventsIntervalMs = self.flushEventsIntervalMs,
    |                                                    `- warning: 'flushEventsIntervalMs' is deprecated: Use eventFlushIntervalMS [#DeprecatedDeclaration]
 36 |                   let interval = flushEventsIntervalMs as? Int {
 37 |             optionsBuilder = optionsBuilder.eventFlushIntervalMS(interval)
/Users/admin/builder/spi-builder-workspace/DevCycle/ObjC/ObjCDevCycleOptions.swift:42:45: warning: 'disableEventLogging' is deprecated: Use disableAutomaticEventLogging or disableCustomEventLogging [#DeprecatedDeclaration]
 40 |         if let disableEventLogging = self.disableEventLogging,
 41 |            let disable = disableEventLogging as? Bool {
 42 |             optionsBuilder = optionsBuilder.disableEventLogging(disable)
    |                                             `- warning: 'disableEventLogging' is deprecated: Use disableAutomaticEventLogging or disableCustomEventLogging [#DeprecatedDeclaration]
 43 |         }
 44 |
/Users/admin/builder/spi-builder-workspace/DevCycle/ObjC/ObjCDevCycleOptions.swift:76:39: warning: conditional cast from 'NSString' to 'String' always succeeds
 74 |
 75 |         if let apiProxyURL = self.apiProxyURL,
 76 |            let proxyURL = apiProxyURL as? String {
    |                                       `- warning: conditional cast from 'NSString' to 'String' always succeeds
 77 |             optionsBuilder = optionsBuilder.apiProxyURL(proxyURL)
 78 |         }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[32/37] Compiling DevCycle ObjCErrors.swift
/Users/admin/builder/spi-builder-workspace/DevCycle/ObjC/ObjCDevCycleOptions.swift:35:52: warning: 'flushEventsIntervalMs' is deprecated: Use eventFlushIntervalMS [#DeprecatedDeclaration]
 33 |            let interval = eventFlushIntervalMS as? Int {
 34 |             optionsBuilder = optionsBuilder.eventFlushIntervalMS(interval)
 35 |         } else if let flushEventsIntervalMs = self.flushEventsIntervalMs,
    |                                                    `- warning: 'flushEventsIntervalMs' is deprecated: Use eventFlushIntervalMS [#DeprecatedDeclaration]
 36 |                   let interval = flushEventsIntervalMs as? Int {
 37 |             optionsBuilder = optionsBuilder.eventFlushIntervalMS(interval)
/Users/admin/builder/spi-builder-workspace/DevCycle/ObjC/ObjCDevCycleOptions.swift:42:45: warning: 'disableEventLogging' is deprecated: Use disableAutomaticEventLogging or disableCustomEventLogging [#DeprecatedDeclaration]
 40 |         if let disableEventLogging = self.disableEventLogging,
 41 |            let disable = disableEventLogging as? Bool {
 42 |             optionsBuilder = optionsBuilder.disableEventLogging(disable)
    |                                             `- warning: 'disableEventLogging' is deprecated: Use disableAutomaticEventLogging or disableCustomEventLogging [#DeprecatedDeclaration]
 43 |         }
 44 |
/Users/admin/builder/spi-builder-workspace/DevCycle/ObjC/ObjCDevCycleOptions.swift:76:39: warning: conditional cast from 'NSString' to 'String' always succeeds
 74 |
 75 |         if let apiProxyURL = self.apiProxyURL,
 76 |            let proxyURL = apiProxyURL as? String {
    |                                       `- warning: conditional cast from 'NSString' to 'String' always succeeds
 77 |             optionsBuilder = optionsBuilder.apiProxyURL(proxyURL)
 78 |         }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[33/37] Compiling DevCycle isEqual.swift
[34/37] Compiling DevCycle resource_bundle_accessor.swift
[35/37] Compiling DevCycle DVCVariable.swift
[36/37] Compiling DevCycle DevCycleClient.swift
[37/37] Compiling DevCycle DevCycleUser.swift
Build complete! (10.27s)
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swift-eventsource",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "3.3.0",
            "upper_bound" : "4.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/LaunchDarkly/swift-eventsource.git"
    }
  ],
  "manifest_display_name" : "DevCycle",
  "name" : "DevCycle",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "12.0"
    },
    {
      "name" : "tvos",
      "version" : "12.0"
    },
    {
      "name" : "macos",
      "version" : "10.13"
    },
    {
      "name" : "watchos",
      "version" : "7.0"
    }
  ],
  "products" : [
    {
      "name" : "DevCycle",
      "targets" : [
        "DevCycle"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "swift_languages_versions" : [
    "5"
  ],
  "targets" : [
    {
      "c99name" : "DevCycleTests_ObjC",
      "module_type" : "ClangTarget",
      "name" : "DevCycleTests-ObjC",
      "path" : "DevCycleTests/ObjC",
      "sources" : [
        "ObjCDevCycleClientTests.m",
        "ObjcDVCVariableTests.m",
        "ObjcDevCycleUserTests.m"
      ],
      "target_dependencies" : [
        "DevCycle"
      ],
      "type" : "test"
    },
    {
      "c99name" : "DevCycleTests",
      "module_type" : "SwiftTarget",
      "name" : "DevCycleTests",
      "path" : "DevCycleTests",
      "sources" : [
        "Mocks/URLSessionMock.swift",
        "Models/DVCConfigTests.swift",
        "Models/DVCVariableTests.swift",
        "Models/DevCycleClientTests.swift",
        "Models/DevCycleEventTests.swift",
        "Models/DevCycleOptionsTest.swift",
        "Models/DevCycleUserTest.swift",
        "Models/EventQueueTests.swift",
        "Models/SSEMessage.swift",
        "Models/ThreadingTests.swift",
        "Models/UserConfigTests.swift",
        "Networking/DevCycleServiceTests.swift",
        "Utils/GetTestConfig.swift",
        "Utils/IsEqualTests.swift",
        "Utils/RequestConsolidatorTests.swift"
      ],
      "target_dependencies" : [
        "DevCycle"
      ],
      "type" : "test"
    },
    {
      "c99name" : "DevCycle",
      "module_type" : "SwiftTarget",
      "name" : "DevCycle",
      "path" : "DevCycle",
      "product_dependencies" : [
        "LDSwiftEventSource"
      ],
      "product_memberships" : [
        "DevCycle"
      ],
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/DevCycle/PrivacyInfo.xcprivacy",
          "rule" : {
            "process" : {
            }
          }
        }
      ],
      "sources" : [
        "DVCVariable.swift",
        "DevCycleClient.swift",
        "DevCycleUser.swift",
        "Models/Cache.swift",
        "Models/CustomData.swift",
        "Models/DVCConfig.swift",
        "Models/DevCycleEvent.swift",
        "Models/DevCycleOptions.swift",
        "Models/EventQueue.swift",
        "Models/PlatformDetails.swift",
        "Models/UserConfig.swift",
        "Networking/DevCycleService.swift",
        "ObjC/ObjCDVCVariable.swift",
        "ObjC/ObjCDevCycleClient.swift",
        "ObjC/ObjCDevCycleEvent.swift",
        "ObjC/ObjCDevCycleOptions.swift",
        "ObjC/ObjCDevCycleUser.swift",
        "ObjC/ObjCErrors.swift",
        "ObjC/ObjCUserConfig.swift",
        "SSEConnection.swift",
        "Utils/Log.swift",
        "Utils/NotificationNames.swift",
        "Utils/ProcessConfig.swift",
        "Utils/RequestConsolidator.swift",
        "Utils/isEqual.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.3"
}
Done.