Build Information
Successful build of SimpleMDM-Swift, reference 0.10.0 (f5557f), with Swift 6.3 for macOS (SPM) on 13 Apr 2026 01:12:35 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/guillaumealgis/SimpleMDM-Swift.git
Reference: 0.10.0
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/guillaumealgis/SimpleMDM-Swift
* tag 0.10.0 -> FETCH_HEAD
HEAD is now at f5557fb Bump version 0.9.0 -> 0.10.0
Cloned https://github.com/guillaumealgis/SimpleMDM-Swift.git
Revision (git rev-parse @):
f5557fb43306c33e2537aec76d35c47ca97b607d
SUCCESS checkout https://github.com/guillaumealgis/SimpleMDM-Swift.git at 0.10.0
Fetching https://github.com/mxcl/PromiseKit.git
[1/17242] Fetching promisekit
Fetched https://github.com/mxcl/PromiseKit.git from cache (1.67s)
Computing version for https://github.com/mxcl/PromiseKit.git
Computed https://github.com/mxcl/PromiseKit.git at 6.13.1 (2.59s)
Creating working copy for https://github.com/mxcl/PromiseKit.git
Working copy of https://github.com/mxcl/PromiseKit.git resolved at 6.13.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": "simplemdm-swift",
"name": "SimpleMDM-Swift",
"url": "https://github.com/guillaumealgis/SimpleMDM-Swift.git",
"version": "unspecified",
"path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/SimpleMDM-Swift",
"traits": [
"default"
],
"dependencies": [
{
"identity": "promisekit",
"name": "PromiseKit",
"url": "https://github.com/mxcl/PromiseKit.git",
"version": "6.22.1",
"path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/PromiseKit",
"traits": [
"default"
],
"dependencies": [
]
}
]
}
]
}
Fetching https://github.com/guillaumealgis/SimpleMDM-Swift.git
[1/3514] Fetching simplemdm-swift
Fetched https://github.com/guillaumealgis/SimpleMDM-Swift.git from cache (1.06s)
Fetching https://github.com/mxcl/PromiseKit.git from cache
Fetched https://github.com/mxcl/PromiseKit.git from cache (0.54s)
Computing version for https://github.com/mxcl/PromiseKit.git
Computed https://github.com/mxcl/PromiseKit.git at 6.22.1 (1.26s)
Creating working copy for https://github.com/guillaumealgis/SimpleMDM-Swift.git
Working copy of https://github.com/guillaumealgis/SimpleMDM-Swift.git resolved at 0.10.0 (f5557fb)
Creating working copy for https://github.com/mxcl/PromiseKit.git
Working copy of https://github.com/mxcl/PromiseKit.git resolved at 6.22.1
warning: '.resolve-product-dependencies': dependency 'simplemdm-swift' is not used by any target
Found 1 product dependencies
- PromiseKit
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.3
Building package at path: $PWD
https://github.com/guillaumealgis/SimpleMDM-Swift.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.4.0.app xcrun swift build --arch arm64
Building for debugging...
[0/3] Write sources
[2/3] Write swift-version--6988338F2F200930.txt
[4/18] Compiling PromiseKit firstly.swift
[5/18] Compiling PromiseKit Resolver.swift
[6/18] Compiling PromiseKit Thenable.swift
[7/18] Compiling PromiseKit LogEvent.swift
[8/18] Compiling PromiseKit Promise.swift
[9/18] Compiling PromiseKit Error.swift
[10/18] Compiling PromiseKit Guarantee.swift
[11/18] Compiling PromiseKit Box.swift
[12/18] Compiling PromiseKit Catchable.swift
[13/18] Compiling PromiseKit after.swift
[14/18] Compiling PromiseKit Configuration.swift
[15/18] Compiling PromiseKit CustomStringConvertible.swift
[16/18] Emitting module PromiseKit
[17/18] Compiling PromiseKit hang.swift
[18/18] Compiling PromiseKit race.swift
[19/19] Compiling PromiseKit when.swift
[20/42] Compiling SimpleMDM CustomAttributeValue.swift
[21/42] Compiling SimpleMDM CustomConfigurationProfile.swift
[22/44] Emitting module SimpleMDM
/Users/admin/builder/spi-builder-workspace/Sources/Relationship.swift:251:17: warning: cannot use generic enum 'Result' here; 'PromiseKit' was not imported by this file
249 | /// - index: The index of the resource to fetch in the collection.
250 | /// - completion: A completion handler called with the fetched resource, or an error.
251 | public func get(id: Element.ID, completion: @escaping (Result<Element>) -> Void) {
| `- warning: cannot use generic enum 'Result' here; 'PromiseKit' was not imported by this file
252 | get(SimpleMDM.shared.networking, id: id, completion: completion)
253 | }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PromiseKit/Sources/Resolver.swift:85:13: note: generic enum declared here
83 | #endif
84 |
85 | public enum Result<T> {
| `- note: generic enum declared here
86 | case fulfilled(T)
87 | case rejected(Error)
/Users/admin/builder/spi-builder-workspace/Sources/Resources/Resource.swift:9:18: warning: cannot use generic enum 'Result' here; 'PromiseKit' was not imported by this file
7 |
8 | /// A completion clusure used to return a Result type asynchronously.
9 | public typealias CompletionClosure<Value> = (Result<Value>) -> Void
| `- warning: cannot use generic enum 'Result' here; 'PromiseKit' was not imported by this file
10 |
11 | /// A protocol adopted by all resources types of the library.
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PromiseKit/Sources/Resolver.swift:85:13: note: generic enum declared here
83 | #endif
84 |
85 | public enum Result<T> {
| `- note: generic enum declared here
86 | case fulfilled(T)
87 | case rejected(Error)
[23/44] Compiling SimpleMDM Payload.swift
/Users/admin/builder/spi-builder-workspace/Sources/Relationship.swift:251:17: warning: cannot use generic enum 'Result' here; 'PromiseKit' was not imported by this file
249 | /// - index: The index of the resource to fetch in the collection.
250 | /// - completion: A completion handler called with the fetched resource, or an error.
251 | public func get(id: Element.ID, completion: @escaping (Result<Element>) -> Void) {
| `- warning: cannot use generic enum 'Result' here; 'PromiseKit' was not imported by this file
252 | get(SimpleMDM.shared.networking, id: id, completion: completion)
253 | }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PromiseKit/Sources/Resolver.swift:85:13: note: generic enum declared here
83 | #endif
84 |
85 | public enum Result<T> {
| `- note: generic enum declared here
86 | case fulfilled(T)
87 | case rejected(Error)
[24/44] Compiling SimpleMDM Relationship.swift
/Users/admin/builder/spi-builder-workspace/Sources/Relationship.swift:251:17: warning: cannot use generic enum 'Result' here; 'PromiseKit' was not imported by this file
249 | /// - index: The index of the resource to fetch in the collection.
250 | /// - completion: A completion handler called with the fetched resource, or an error.
251 | public func get(id: Element.ID, completion: @escaping (Result<Element>) -> Void) {
| `- warning: cannot use generic enum 'Result' here; 'PromiseKit' was not imported by this file
252 | get(SimpleMDM.shared.networking, id: id, completion: completion)
253 | }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PromiseKit/Sources/Resolver.swift:85:13: note: generic enum declared here
83 | #endif
84 |
85 | public enum Result<T> {
| `- note: generic enum declared here
86 | case fulfilled(T)
87 | case rejected(Error)
[25/44] Compiling SimpleMDM Account.swift
/Users/admin/builder/spi-builder-workspace/Sources/Relationship.swift:251:17: warning: cannot use generic enum 'Result' here; 'PromiseKit' was not imported by this file
249 | /// - index: The index of the resource to fetch in the collection.
250 | /// - completion: A completion handler called with the fetched resource, or an error.
251 | public func get(id: Element.ID, completion: @escaping (Result<Element>) -> Void) {
| `- warning: cannot use generic enum 'Result' here; 'PromiseKit' was not imported by this file
252 | get(SimpleMDM.shared.networking, id: id, completion: completion)
253 | }
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PromiseKit/Sources/Resolver.swift:85:13: note: generic enum declared here
83 | #endif
84 |
85 | public enum Result<T> {
| `- note: generic enum declared here
86 | case fulfilled(T)
87 | case rejected(Error)
[26/44] Compiling SimpleMDM URL+CustomInit.swift
[27/44] Compiling SimpleMDM URLSession.swift
[28/44] Compiling SimpleMDM InstalledApp.swift
[29/44] Compiling SimpleMDM ManagedConfig.swift
[30/44] Compiling SimpleMDM Resource.swift
/Users/admin/builder/spi-builder-workspace/Sources/Resources/Resource.swift:9:18: warning: cannot use generic enum 'Result' here; 'PromiseKit' was not imported by this file
7 |
8 | /// A completion clusure used to return a Result type asynchronously.
9 | public typealias CompletionClosure<Value> = (Result<Value>) -> Void
| `- warning: cannot use generic enum 'Result' here; 'PromiseKit' was not imported by this file
10 |
11 | /// A protocol adopted by all resources types of the library.
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PromiseKit/Sources/Resolver.swift:85:13: note: generic enum declared here
83 | #endif
84 |
85 | public enum Result<T> {
| `- note: generic enum declared here
86 | case fulfilled(T)
87 | case rejected(Error)
[31/44] Compiling SimpleMDM SimpleMDM.swift
/Users/admin/builder/spi-builder-workspace/Sources/Resources/Resource.swift:9:18: warning: cannot use generic enum 'Result' here; 'PromiseKit' was not imported by this file
7 |
8 | /// A completion clusure used to return a Result type asynchronously.
9 | public typealias CompletionClosure<Value> = (Result<Value>) -> Void
| `- warning: cannot use generic enum 'Result' here; 'PromiseKit' was not imported by this file
10 |
11 | /// A protocol adopted by all resources types of the library.
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PromiseKit/Sources/Resolver.swift:85:13: note: generic enum declared here
83 | #endif
84 |
85 | public enum Result<T> {
| `- note: generic enum declared here
86 | case fulfilled(T)
87 | case rejected(Error)
[32/44] Compiling SimpleMDM Device.swift
[33/44] Compiling SimpleMDM DeviceGroup.swift
[34/44] Compiling SimpleMDM Cursor.swift
[35/44] Compiling SimpleMDM Decoding.swift
[36/44] Compiling SimpleMDM Error.swift
[37/44] Compiling SimpleMDM App.swift
[38/44] Compiling SimpleMDM AppGroup.swift
[39/44] Compiling SimpleMDM CustomAttribute.swift
[40/44] Compiling SimpleMDM PushCertificate.swift
[41/44] Compiling SimpleMDM Resource.generated.swift
[42/44] Compiling SimpleMDM SimpleMDM+PromiseKit.swift
[43/44] Compiling SimpleMDM Version.swift
[44/44] Compiling SimpleMDM Networking.swift
Build complete! (5.21s)
Build complete.
{
"dependencies" : [
{
"identity" : "promisekit",
"requirement" : {
"range" : [
{
"lower_bound" : "6.8.0",
"upper_bound" : "7.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/mxcl/PromiseKit.git"
}
],
"manifest_display_name" : "SimpleMDM-Swift",
"name" : "SimpleMDM-Swift",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "ios",
"version" : "11.0"
},
{
"name" : "macos",
"version" : "10.13"
},
{
"name" : "tvos",
"version" : "11.0"
},
{
"name" : "watchos",
"version" : "4.0"
}
],
"products" : [
{
"name" : "SimpleMDM",
"targets" : [
"SimpleMDM"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"swift_languages_versions" : [
"5"
],
"targets" : [
{
"c99name" : "SimpleMDM_Tests",
"module_type" : "SwiftTarget",
"name" : "SimpleMDM-Tests",
"path" : "Tests",
"sources" : [
"APIKeyTests.swift",
"CursorTests.swift",
"DecodingTests.swift",
"FieldTypes/VersionTests.swift",
"NetworkingTests.swift",
"PromiseKit/SimpleMDM+PromiseKitTests.swift",
"PromiseKit/SimpleMDMSingleton+PromiseKitTests.swift",
"Resources/AccountTests.swift",
"Resources/AppGroupTests.swift",
"Resources/AppTests.swift",
"Resources/CustomAttributeTests.swift",
"Resources/CustomConfigurationProfileTests.swift",
"Resources/DeviceGroupTests.swift",
"Resources/DeviceTests.swift",
"Resources/InstalledAppTests.swift",
"Resources/PushCertificateTests.swift",
"Resources/ResourcesTests.swift",
"SimpleMDMSingletonTests.swift",
"Tools/ResourceMock.swift",
"Tools/URLSessionMock.swift",
"Tools/Utils.swift"
],
"target_dependencies" : [
"SimpleMDM"
],
"type" : "test"
},
{
"c99name" : "SimpleMDM",
"module_type" : "SwiftTarget",
"name" : "SimpleMDM",
"path" : "Sources",
"product_dependencies" : [
"PromiseKit"
],
"product_memberships" : [
"SimpleMDM"
],
"sources" : [
"Cursor.swift",
"Decoding.swift",
"Error.swift",
"Extensions/SimpleMDM+PromiseKit.swift",
"FieldTypes/Version.swift",
"Networking.swift",
"Payload.swift",
"Relationship.swift",
"Resources/Account.swift",
"Resources/App.swift",
"Resources/AppGroup.swift",
"Resources/CustomAttribute.swift",
"Resources/CustomAttributeValue.swift",
"Resources/CustomConfigurationProfile.swift",
"Resources/Device.swift",
"Resources/DeviceGroup.swift",
"Resources/InstalledApp.swift",
"Resources/ManagedConfig.swift",
"Resources/PushCertificate.swift",
"Resources/Resource.generated.swift",
"Resources/Resource.swift",
"SimpleMDM.swift",
"URL+CustomInit.swift",
"URLSession.swift"
],
"type" : "library"
}
],
"tools_version" : "5.0"
}
Done.