Build Information
Successful build of DevCycle, reference v1.24.5 (efe19d), with Swift 6.0 for macOS (SPM) on 16 Mar 2026 22:37:56 UTC.
Swift 6 data race errors: 0
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.2.0.app xcrun swift build --arch arm64Build Log
========================================
RunAll
========================================
Builder version: 4.69.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
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.0
Building package at path: $PWD
https://github.com/DevCycleHQ/ios-client-sdk.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.2.0.app xcrun swift build --arch arm64
Building for debugging...
[0/4] Write sources
[2/4] Copying PrivacyInfo.xcprivacy
[3/4] Write swift-version-5BDAB9E9C0126B9D.txt
[5/10] Compiling LDSwiftEventSource UTF8LineParser.swift
[6/10] Compiling LDSwiftEventSource Types.swift
[7/10] Compiling LDSwiftEventSource Logs.swift
[8/10] Emitting module LDSwiftEventSource
[9/10] Compiling LDSwiftEventSource EventParser.swift
[10/10] Compiling LDSwiftEventSource LDSwiftEventSource.swift
[11/35] Compiling DevCycle Log.swift
[12/35] Compiling DevCycle NotificationNames.swift
[13/37] Emitting module DevCycle
[14/37] Compiling DevCycle ObjCUserConfig.swift
[15/37] Compiling DevCycle SSEConnection.swift
[16/37] Compiling DevCycle Cache.swift
[17/37] Compiling DevCycle CustomData.swift
[18/37] Compiling DevCycle DVCConfig.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 ObjCDevCycleOptions.swift
/Users/admin/builder/spi-builder-workspace/DevCycle/ObjC/ObjCDevCycleOptions.swift:35:52: warning: 'flushEventsIntervalMs' is deprecated: Use eventFlushIntervalMS
33 | let interval = eventFlushIntervalMS as? Int {
34 | optionsBuilder = optionsBuilder.eventFlushIntervalMS(interval)
35 | } else if let flushEventsIntervalMs = self.flushEventsIntervalMs,
| `- warning: 'flushEventsIntervalMs' is deprecated: Use eventFlushIntervalMS
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
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
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 | }
[23/37] Compiling DevCycle ObjCDevCycleUser.swift
/Users/admin/builder/spi-builder-workspace/DevCycle/ObjC/ObjCDevCycleOptions.swift:35:52: warning: 'flushEventsIntervalMs' is deprecated: Use eventFlushIntervalMS
33 | let interval = eventFlushIntervalMS as? Int {
34 | optionsBuilder = optionsBuilder.eventFlushIntervalMS(interval)
35 | } else if let flushEventsIntervalMs = self.flushEventsIntervalMs,
| `- warning: 'flushEventsIntervalMs' is deprecated: Use eventFlushIntervalMS
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
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
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 | }
[24/37] Compiling DevCycle ObjCErrors.swift
/Users/admin/builder/spi-builder-workspace/DevCycle/ObjC/ObjCDevCycleOptions.swift:35:52: warning: 'flushEventsIntervalMs' is deprecated: Use eventFlushIntervalMS
33 | let interval = eventFlushIntervalMS as? Int {
34 | optionsBuilder = optionsBuilder.eventFlushIntervalMS(interval)
35 | } else if let flushEventsIntervalMs = self.flushEventsIntervalMs,
| `- warning: 'flushEventsIntervalMs' is deprecated: Use eventFlushIntervalMS
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
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
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 | }
[25/37] Compiling DevCycle isEqual.swift
[26/37] Compiling DevCycle resource_bundle_accessor.swift
[27/37] Compiling DevCycle PlatformDetails.swift
[28/37] Compiling DevCycle UserConfig.swift
[29/37] Compiling DevCycle DevCycleService.swift
[30/37] Compiling DevCycle DevCycleEvent.swift
[31/37] Compiling DevCycle DevCycleOptions.swift
[32/37] Compiling DevCycle EventQueue.swift
[33/37] Compiling DevCycle DVCVariable.swift
[34/37] Compiling DevCycle DevCycleClient.swift
[35/37] Compiling DevCycle DevCycleUser.swift
[36/37] Compiling DevCycle ProcessConfig.swift
[37/37] Compiling DevCycle RequestConsolidator.swift
Build complete! (11.05s)
Fetching https://github.com/LaunchDarkly/swift-eventsource.git
[1/1778] Fetching swift-eventsource
Fetched https://github.com/LaunchDarkly/swift-eventsource.git from cache (1.05s)
Computing version for https://github.com/LaunchDarkly/swift-eventsource.git
Computed https://github.com/LaunchDarkly/swift-eventsource.git at 3.3.0 (0.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
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.