Build Information
Successful build of DevCycle, reference main (9fbec8), with Swift 6.3 for macOS (SPM) on 28 Apr 2026 23:31:57 UTC.
Swift 6 data race errors: 0
Build Command
env DEVELOPER_DIR=/Applications/Xcode-26.4.0.app xcrun swift build --arch arm64Build Log
========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/DevCycleHQ/ios-client-sdk.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/DevCycleHQ/ios-client-sdk
* branch main -> FETCH_HEAD
* [new branch] main -> origin/main
HEAD is now at 9fbec82 fix: resolve open dependabot security alerts (#263)
Cloned https://github.com/DevCycleHQ/ios-client-sdk.git
Revision (git rev-parse @):
9fbec829b3f0f4dcfcb65369747bf365f52aa998
SUCCESS checkout https://github.com/DevCycleHQ/ios-client-sdk.git at main
Fetching https://github.com/LaunchDarkly/swift-eventsource.git
[1/1795] Fetching swift-eventsource
Fetched https://github.com/LaunchDarkly/swift-eventsource.git from cache (1.01s)
Computing version for https://github.com/LaunchDarkly/swift-eventsource.git
Computed https://github.com/LaunchDarkly/swift-eventsource.git at 3.3.0 (1.69s)
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/5324] Fetching ios-client-sdk
Fetched https://github.com/DevCycleHQ/ios-client-sdk.git from cache (1.12s)
Fetching https://github.com/LaunchDarkly/swift-eventsource.git from cache
Fetched https://github.com/LaunchDarkly/swift-eventsource.git from cache (0.46s)
Computing version for https://github.com/LaunchDarkly/swift-eventsource.git
Computed https://github.com/LaunchDarkly/swift-eventsource.git at 3.3.0 (0.52s)
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 main (9fbec82)
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
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 Types.swift
[6/10] Compiling LDSwiftEventSource LDSwiftEventSource.swift
[7/10] Compiling LDSwiftEventSource EventParser.swift
[8/10] Emitting module LDSwiftEventSource
[9/10] Compiling LDSwiftEventSource UTF8LineParser.swift
[10/10] Compiling LDSwiftEventSource Logs.swift
[11/35] Compiling DevCycle ProcessConfig.swift
[12/35] Compiling DevCycle RequestConsolidator.swift
[13/37] Emitting module DevCycle
[14/37] Compiling DevCycle Log.swift
[15/37] Compiling DevCycle NotificationNames.swift
[16/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>
[17/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>
[18/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>
[19/37] Compiling DevCycle Cache.swift
[20/37] Compiling DevCycle CustomData.swift
[21/37] Compiling DevCycle DVCConfig.swift
[22/37] Compiling DevCycle ObjCUserConfig.swift
[23/37] Compiling DevCycle SSEConnection.swift
[24/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
[25/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
[26/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
[27/37] Compiling DevCycle isEqual.swift
[28/37] Compiling DevCycle resource_bundle_accessor.swift
[29/37] Compiling DevCycle PlatformDetails.swift
[30/37] Compiling DevCycle UserConfig.swift
[31/37] Compiling DevCycle DevCycleService.swift
[32/37] Compiling DevCycle DevCycleEvent.swift
[33/37] Compiling DevCycle DevCycleOptions.swift
[34/37] Compiling DevCycle EventQueue.swift
[35/37] Compiling DevCycle DVCVariable.swift
[36/37] Compiling DevCycle DevCycleClient.swift
[37/37] Compiling DevCycle DevCycleUser.swift
Build complete! (10.13s)
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.