Build Information
Failed to build WordpressReader, reference main (4f0062), with Swift 6.3 for macOS (SPM) on 15 Apr 2026 20:43:32 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/ryanlintott/WordpressReader.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/ryanlintott/WordpressReader
* branch main -> FETCH_HEAD
* [new branch] main -> origin/main
HEAD is now at 4f00626 Added option to set a max number of concurrent tasks when streaming or fetching content. Clamped the per page number between 1 and 100 to prevent errors
Cloned https://github.com/ryanlintott/WordpressReader.git
Revision (git rev-parse @):
4f00626c8d5b9c47ab4109bc307821cccaf0030b
SUCCESS checkout https://github.com/ryanlintott/WordpressReader.git at main
========================================
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": "wordpressreader",
"name": "WordpressReader",
"url": "https://github.com/ryanlintott/WordpressReader.git",
"version": "unspecified",
"path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/WordpressReader",
"traits": [
"default"
],
"dependencies": [
]
}
]
}
Fetching https://github.com/ryanlintott/WordpressReader.git
[1/399] Fetching wordpressreader
Fetched https://github.com/ryanlintott/WordpressReader.git from cache (1.10s)
Creating working copy for https://github.com/ryanlintott/WordpressReader.git
Working copy of https://github.com/ryanlintott/WordpressReader.git resolved at main (4f00626)
warning: '.resolve-product-dependencies': dependency 'wordpressreader' 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/ryanlintott/WordpressReader.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.4.0.app xcrun swift build --arch arm64
Building for debugging...
[0/3] Copying PrivacyInfo.xcprivacy
[1/3] Write sources
[2/3] Write swift-version--6988338F2F200930.txt
[4/26] Emitting module WordpressReader
[5/28] Compiling WordpressReader WordpressTag.swift
[6/28] Compiling WordpressReader resource_bundle_accessor.swift
[7/28] Compiling WordpressReader WordpressSite+async-internal.swift
[8/28] Compiling WordpressReader WordpressSite+async-public.swift
[9/28] Compiling WordpressReader ParameterLabels.swift
[10/28] Compiling WordpressReader URL-extension.swift
[11/28] Compiling WordpressReader URLSession+async.swift
[12/28] Compiling WordpressReader WordpressExamples.swift
[13/28] Compiling WordpressReader WordpressIcon.swift
[14/28] Compiling WordpressReader WordpressLogo.swift
[15/28] Compiling WordpressReader WordpressContent.swift
[16/28] Compiling WordpressReader WordpressItem.swift
[17/28] Compiling WordpressReader WordpressTaxonomy.swift
[18/28] Compiling WordpressReader RenderedContent.swift
[19/28] Compiling WordpressReader WordpressCategory.swift
[20/28] Compiling WordpressReader WordpressDate.swift
[21/28] Compiling WordpressReader WordpressPage.swift
[22/28] Compiling WordpressReader WordpressPost.swift
[23/28] Compiling WordpressReader WordpressRequest.swift
[24/28] Compiling WordpressReader WordpressSettings.swift
[25/28] Compiling WordpressReader WordpressQueryItem.swift
[26/28] Compiling WordpressReader WordpressReaderError.swift
[27/28] Compiling WordpressReader WordpressSite+closures.swift
/Users/admin/builder/spi-builder-workspace/Sources/WordpressReader/WordpressSite.swift:59:28: error: 'appending(queryItems:)' is only available in macOS 13.0 or newer
11 | ///
12 | /// Does not yet work for sites hosted outside Wordpress.com.
13 | public struct WordpressSite: Codable, Hashable, Sendable {
| `- note: add '@available' attribute to enclosing struct
14 | /// Site domain excluding http or other prefix.
15 | ///
:
54 |
55 | /// URL that will redirect from the site URL to a page with a specific id.
56 | public func pageURL(id: Int) -> URL {
| `- note: add '@available' attribute to enclosing instance method
57 | let pageIDQueryItem = URLQueryItem(name: "page_id", value: "\(id)")
58 | if #available(iOS 16.0, *) {
59 | return siteURL.appending(queryItems: [pageIDQueryItem])
| |- error: 'appending(queryItems:)' is only available in macOS 13.0 or newer
| `- note: add 'if #available' version check
60 | } else {
61 | // Fallback on earlier versions
[28/28] Compiling WordpressReader WordpressSite.swift
/Users/admin/builder/spi-builder-workspace/Sources/WordpressReader/WordpressSite.swift:59:28: error: 'appending(queryItems:)' is only available in macOS 13.0 or newer
11 | ///
12 | /// Does not yet work for sites hosted outside Wordpress.com.
13 | public struct WordpressSite: Codable, Hashable, Sendable {
| `- note: add '@available' attribute to enclosing struct
14 | /// Site domain excluding http or other prefix.
15 | ///
:
54 |
55 | /// URL that will redirect from the site URL to a page with a specific id.
56 | public func pageURL(id: Int) -> URL {
| `- note: add '@available' attribute to enclosing instance method
57 | let pageIDQueryItem = URLQueryItem(name: "page_id", value: "\(id)")
58 | if #available(iOS 16.0, *) {
59 | return siteURL.appending(queryItems: [pageIDQueryItem])
| |- error: 'appending(queryItems:)' is only available in macOS 13.0 or newer
| `- note: add 'if #available' version check
60 | } else {
61 | // Fallback on earlier versions
BUILD FAILURE 6.3 macosSpm