Build Information
Failed to build JunimoFire, reference 0.2.0 (618144), with Swift 6.3 for macOS (SPM) on 14 Apr 2026 17:52:51 UTC.
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/J0onYEong/Junimofire.git
Reference: 0.2.0
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/J0onYEong/Junimofire
* tag 0.2.0 -> FETCH_HEAD
HEAD is now at 618144b [Release: 0.2.0] Session기본 interceptor기능 추가(test완료)
Cloned https://github.com/J0onYEong/Junimofire.git
Revision (git rev-parse @):
618144b51bc9335f785525ee8f92d999efd147a5
SUCCESS checkout https://github.com/J0onYEong/Junimofire.git at 0.2.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": "junimofire",
"name": "JunimoFire",
"url": "https://github.com/J0onYEong/Junimofire.git",
"version": "unspecified",
"path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/Junimofire",
"traits": [
"default"
],
"dependencies": [
]
}
]
}
Fetching https://github.com/J0onYEong/Junimofire.git
[1/90] Fetching junimofire
Fetched https://github.com/J0onYEong/Junimofire.git from cache (0.64s)
Creating working copy for https://github.com/J0onYEong/Junimofire.git
Working copy of https://github.com/J0onYEong/Junimofire.git resolved at 0.2.0 (618144b)
warning: '.resolve-product-dependencies': dependency 'junimofire' is not used by any target
Found 0 product dependencies
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.3
Building package at path: $PWD
https://github.com/J0onYEong/Junimofire.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.4.0.app xcrun swift build --arch arm64
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version--6988338F2F200930.txt
[3/12] Compiling JunimoFire JuniosSessionDelegate.swift
[4/12] Compiling JunimoFire JFValidation.swift
[5/13] Compiling JunimoFire JuniosSession.swift
[6/13] Compiling JunimoFire JFError.swift
[7/13] Compiling JunimoFire JFRetrier.swift
[8/13] Compiling JunimoFire JF.swift
[9/13] Compiling JunimoFire JFAdapter.swift
[10/13] Compiling JunimoFire JFInterceptor.swift
[11/13] Emitting module JunimoFire
[12/13] Compiling JunimoFire JFDataRequest.swift
/Users/admin/builder/spi-builder-workspace/Sources/JunimoFire/Request/DataRequest/JFDataRequest.swift:95:50: error: 'data(for:delegate:)' is only available in macOS 12.0 or newer
8 | import Foundation
9 |
10 | public class JFDataRequest {
| `- note: add '@available' attribute to enclosing class
11 |
12 | private var interceptor: JFRequestInterceptor?
:
91 | }
92 |
93 | private func perform() async throws -> (Data, URLResponse) {
| `- note: add '@available' attribute to enclosing instance method
94 |
95 | let (data, response) = try await session.data(for: currentRequest())
| |- error: 'data(for:delegate:)' is only available in macOS 12.0 or newer
| `- note: add 'if #available' version check
96 |
97 | let validationInfo = try await startValidation(data: data, response: response)
/Users/admin/builder/spi-builder-workspace/Sources/JunimoFire/Request/DataRequest/JFDataRequest.swift:130:23: error: 'Task' is only available in macOS 10.15 or newer
8 | import Foundation
9 |
10 | public class JFDataRequest {
| `- note: add '@available' attribute to enclosing class
11 |
12 | private var interceptor: JFRequestInterceptor?
:
116 | }
117 |
118 | private func retry(validationInfo: ValidationInfo, response: URLResponse, data: Data) async throws -> (Data, URLResponse) {
| `- note: add '@available' attribute to enclosing instance method
119 |
120 | guard let retrier = retrier() else { return (data, response) }
:
128 | case .retryWithDelay(let request, let delayAmount):
129 | await self.requestIsUpdated(request: request)
130 | try await Task.sleep(nanoseconds: UInt64(delayAmount * 1_000_000_000))
| |- error: 'Task' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
131 | return try await perform()
132 | case .finish, .doNotRetry:
/Users/admin/builder/spi-builder-workspace/Sources/JunimoFire/Request/DataRequest/JFDataRequest.swift:130:28: error: 'sleep(nanoseconds:)' is only available in macOS 10.15 or newer
8 | import Foundation
9 |
10 | public class JFDataRequest {
| `- note: add '@available' attribute to enclosing class
11 |
12 | private var interceptor: JFRequestInterceptor?
:
116 | }
117 |
118 | private func retry(validationInfo: ValidationInfo, response: URLResponse, data: Data) async throws -> (Data, URLResponse) {
| `- note: add '@available' attribute to enclosing instance method
119 |
120 | guard let retrier = retrier() else { return (data, response) }
:
128 | case .retryWithDelay(let request, let delayAmount):
129 | await self.requestIsUpdated(request: request)
130 | try await Task.sleep(nanoseconds: UInt64(delayAmount * 1_000_000_000))
| |- error: 'sleep(nanoseconds:)' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
131 | return try await perform()
132 | case .finish, .doNotRetry:
[13/13] Compiling JunimoFire MutableProperty.swift
BUILD FAILURE 6.3 macosSpm