Build Information
Failed to build MaverickModels, reference master (7890b0), with Swift 6.3 for Linux on 21 Apr 2026 07:45:16 UTC.
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4609320-3":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:basic-6.3-latest swift build --triple x86_64-unknown-linux-gnu 2>&1Build Log
========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/jsorge/maverick-models.git
Reference: master
Initialized empty Git repository in /host/spi-builder-workspace/.git/
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: git branch -m <name>
From https://github.com/jsorge/maverick-models
* branch master -> FETCH_HEAD
* [new branch] master -> origin/master
HEAD is now at 7890b08 Move version checks to the package manifest
Cloned https://github.com/jsorge/maverick-models.git
Revision (git rev-parse @):
7890b087fcca0dc7d3b57f7dcb412e2f0e91eef6
SUCCESS checkout https://github.com/jsorge/maverick-models.git at master
========================================
Build
========================================
Selected platform: linux
Swift version: 6.3
Building package at path: $PWD
https://github.com/jsorge/maverick-models.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-3":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:basic-6.3-latest swift build --triple x86_64-unknown-linux-gnu 2>&1
basic-6.3-latest: Pulling from swiftpackageindex/spi-images
Digest: sha256:5a7d791d2ead8a924b1292cb31bf3288eabcfe8880e0b005b00b45b71a5bc36a
Status: Image is up to date for registry.gitlab.com/swiftpackageindex/spi-images:basic-6.3-latest
Fetching https://github.com/dduan/Pathos.git
[1/5004] Fetching pathos
Fetched https://github.com/dduan/Pathos.git from cache (0.65s)
Computing version for https://github.com/dduan/Pathos.git
Computed https://github.com/dduan/Pathos.git at 0.4.2 (1.06s)
Creating working copy for https://github.com/dduan/Pathos.git
Working copy of https://github.com/dduan/Pathos.git resolved at 0.4.2
Building for debugging...
[0/5] Write sources
[2/5] Compiling WindowsHelpers dummy.c
[3/5] Compiling LinuxHelpers dummy.c
[4/5] Write swift-version-24593BA9C3E375BF.txt
[6/39] Compiling Pathos Algorithms.swift
[7/39] Compiling Pathos BinaryString.swift
[8/39] Compiling Pathos Box.swift
[9/39] Compiling Pathos Constants.swift
[10/39] Compiling Pathos Metadata+Darwin.swift
[11/39] Emitting module Pathos
[12/43] Compiling Pathos Path+Joining.swift
[13/43] Compiling Pathos Path+Temporary.swift
[14/43] Compiling Pathos Path.swift
[15/43] Compiling Pathos PathParts.swift
[16/43] Compiling Pathos Permissions.swift
[17/43] Compiling Pathos POSIXPathConvertible.swift
[18/43] Compiling Pathos POSIXPermissions.swift
[19/43] Compiling Pathos Path+POSIX.swift
[20/43] Compiling Pathos PathParts+POSIX.swift
[21/43] Compiling Pathos PurePOSIXPath.swift
[22/43] Compiling Pathos WindowsAttributes.swift
[23/43] Compiling Pathos WindowsConstants.swift
[24/43] Compiling Pathos WindowsFileType.swift
[25/43] Compiling Pathos WindowsPathConvertible.swift
[26/43] Compiling Pathos Path+Darwin.swift
[27/43] Compiling Pathos FileTime.swift
[28/43] Compiling Pathos FileType.swift
[29/43] Compiling Pathos LazyBoxed.swift
[30/43] Compiling Pathos Metadata+Glibc.swift
[31/43] Compiling Pathos PurePath.swift
[32/43] Compiling Pathos PurePathRepresentable.swift
[33/43] Compiling Pathos SystemError.swift
[34/43] Compiling Pathos FileTime+Windows.swift
[35/43] Compiling Pathos Metadata+Windows.swift
[36/43] Compiling Pathos Path+Windows.swift
[37/43] Compiling Pathos PathParts+Windows.swift
[38/43] Compiling Pathos PureWindowsPath.swift
[39/43] Compiling Pathos Path+Glibc.swift
[40/43] Compiling Pathos Metadata.swift
[41/43] Compiling Pathos FileTime+POSIX.swift
[42/43] Compiling Pathos POSIXConstants.swift
[43/43] Compiling Pathos POSIXFileType.swift
[45/52] Compiling MaverickModels PostList.swift
[46/53] Compiling MaverickModels SiteConfig.swift
[47/53] Compiling MaverickModels PostPath.swift
[48/53] Compiling MaverickModels Page.swift
[49/53] Compiling MaverickModels FrontMatter.swift
[50/53] Compiling MaverickModels BundleInfo.swift
[51/53] Compiling MaverickModels Post.swift
[52/53] Emitting module MaverickModels
[53/53] Compiling MaverickModels TextBundleReader.swift
/host/spi-builder-workspace/Sources/MaverickModels/TextBundleReader.swift:21:33: error: generic parameter 'Encoding' could not be inferred
19 | let textPath = path + Path("text.md")
20 |
21 | let markdown = textPath.readString()
| `- error: generic parameter 'Encoding' could not be inferred
22 |
23 | guard
/host/spi-builder-workspace/.build/checkouts/Pathos/Sources/Pathos/Path.swift:276:17: note: in call to function 'readString(as:)'
274 | ///
275 | /// - Returns: The file's content decoded using `encoding`.
276 | public func readString<Encoding>(as encoding: Encoding.Type) throws -> String
| `- note: in call to function 'readString(as:)'
277 | where Encoding: _UnicodeEncoding
278 | {
/host/spi-builder-workspace/Sources/MaverickModels/TextBundleReader.swift:21:44: error: missing argument for parameter 'as' in call
19 | let textPath = path + Path("text.md")
20 |
21 | let markdown = textPath.readString()
| `- error: missing argument for parameter 'as' in call
22 |
23 | guard
/host/spi-builder-workspace/.build/checkouts/Pathos/Sources/Pathos/Path.swift:276:17: note: 'readString(as:)' declared here
274 | ///
275 | /// - Returns: The file's content decoded using `encoding`.
276 | public func readString<Encoding>(as encoding: Encoding.Type) throws -> String
| `- note: 'readString(as:)' declared here
277 | where Encoding: _UnicodeEncoding
278 | {
/host/spi-builder-workspace/Sources/MaverickModels/TextBundleReader.swift:24:39: error: generic parameter 'Encoding' could not be inferred
22 |
23 | guard
24 | let bundleData = infoPath.readString().data(using: .utf8),
| `- error: generic parameter 'Encoding' could not be inferred
25 | let bundleInfo = BundleInfo(json: bundleData),
26 | let frontMatter = bundleInfo.frontMatter else
/host/spi-builder-workspace/.build/checkouts/Pathos/Sources/Pathos/Path.swift:276:17: note: in call to function 'readString(as:)'
274 | ///
275 | /// - Returns: The file's content decoded using `encoding`.
276 | public func readString<Encoding>(as encoding: Encoding.Type) throws -> String
| `- note: in call to function 'readString(as:)'
277 | where Encoding: _UnicodeEncoding
278 | {
/host/spi-builder-workspace/Sources/MaverickModels/TextBundleReader.swift:24:50: error: missing argument for parameter 'as' in call
22 |
23 | guard
24 | let bundleData = infoPath.readString().data(using: .utf8),
| `- error: missing argument for parameter 'as' in call
25 | let bundleInfo = BundleInfo(json: bundleData),
26 | let frontMatter = bundleInfo.frontMatter else
/host/spi-builder-workspace/.build/checkouts/Pathos/Sources/Pathos/Path.swift:276:17: note: 'readString(as:)' declared here
274 | ///
275 | /// - Returns: The file's content decoded using `encoding`.
276 | public func readString<Encoding>(as encoding: Encoding.Type) throws -> String
| `- note: 'readString(as:)' declared here
277 | where Encoding: _UnicodeEncoding
278 | {
BUILD FAILURE 6.3 linux