The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Failed to build SpectreKit, reference main (05b531), with Swift 6.2 (beta) for Android on 22 Jun 2025 08:09:01 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4606859-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:android-6.2-latest swift build --swift-sdk aarch64-unknown-linux-android28 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/patriksvensson/spectre-kit.git
Reference: main
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/patriksvensson/spectre-kit
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at 05b5314 Merge pull request #11 from patriksvensson/feature/windows
Cloned https://github.com/patriksvensson/spectre-kit.git
Revision (git rev-parse @):
05b531447809b92969bd8688d7b842bbd796f469
SUCCESS checkout https://github.com/patriksvensson/spectre-kit.git at main
========================================
Build
========================================
Selected platform:         android
Swift version:             6.2
Building package at path:  $PWD
https://github.com/patriksvensson/spectre-kit.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:android-6.2-latest swift build --swift-sdk aarch64-unknown-linux-android28 2>&1
android-6.2-latest: Pulling from finestructure/spi-images
Digest: sha256:b7c4a6b4153ff40ef9277e2157e708f835b8eb011095d53bd8db4594eb2b7798
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:android-6.2-latest
Fetching https://github.com/apple/swift-docc-plugin
[1/2082] Fetching swift-docc-plugin
Fetched https://github.com/apple/swift-docc-plugin from cache (0.39s)
Computing version for https://github.com/apple/swift-docc-plugin
Computed https://github.com/apple/swift-docc-plugin at 1.4.4 (3.02s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit
[1/3414] Fetching swift-docc-symbolkit
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (0.39s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (0.91s)
Creating working copy for https://github.com/apple/swift-docc-plugin
Working copy of https://github.com/apple/swift-docc-plugin resolved at 1.4.4
Creating working copy for https://github.com/swiftlang/swift-docc-symbolkit
Working copy of https://github.com/swiftlang/swift-docc-symbolkit resolved at 1.0.0
[1/1] Compiling plugin Swift-DocC Preview
[2/2] Compiling plugin Swift-DocC
Building for debugging...
[2/9] Write sources
[4/9] Write swift-version-8C5A4AE7A8CE2BA.txt
[6/68] Compiling SpectreKit MinimalDoubleHeadTableBorder.swift
[7/68] Compiling SpectreKit MinimalHeavyHeadTableBorder.swift
[8/68] Compiling SpectreKit MinimalTableBorder.swift
[9/68] Compiling SpectreKit NoTableBorder.swift
[10/68] Compiling SpectreKit RoundedTableBorder.swift
[11/68] Compiling SpectreKit SimpleHeavyTableBorder.swift
[12/68] Compiling SpectreKit SimpleTableBorder.swift
[13/68] Compiling SpectreKit SquareTableBorder.swift
[14/76] Compiling SpectreKit Array.swift
/host/spi-builder-workspace/Sources/SpectreKit/Internal/Platform.swift:17:21: error: cannot find 'isatty' in scope
15 | class PosixPlatform : Platform {
16 |     func getTerminalType() -> TerminalType {
17 |         let isTTY = isatty(FileHandle.standardOutput.fileDescriptor) == 1
   |                     `- error: cannot find 'isatty' in scope
18 |         return isTTY ? .tty : .file
19 |     }
/host/spi-builder-workspace/Sources/SpectreKit/Internal/Platform.swift:27:22: error: cannot find 'winsize' in scope
25 |         // a temporary arrangement and needs to be fixed.
26 |         #if !arch(powerpc64le)
27 |             var ws = winsize()
   |                      `- error: cannot find 'winsize' in scope
28 |             #if os(OpenBSD)
29 |                 let tiocgwinsz = 0x4008_7468
/host/spi-builder-workspace/Sources/SpectreKit/Internal/Platform.swift:32:27: error: cannot find 'ioctl' in scope
30 |                 let err = ioctl(1, UInt(tiocgwinsz), &ws)
31 |             #else
32 |                 let err = ioctl(1, UInt(TIOCGWINSZ), &ws)
   |                           `- error: cannot find 'ioctl' in scope
33 |             #endif
34 |
/host/spi-builder-workspace/Sources/SpectreKit/Internal/Platform.swift:32:41: error: cannot find 'TIOCGWINSZ' in scope
30 |                 let err = ioctl(1, UInt(tiocgwinsz), &ws)
31 |             #else
32 |                 let err = ioctl(1, UInt(TIOCGWINSZ), &ws)
   |                                         `- error: cannot find 'TIOCGWINSZ' in scope
33 |             #endif
34 |
[15/76] Compiling SpectreKit Character.swift
/host/spi-builder-workspace/Sources/SpectreKit/Internal/Platform.swift:17:21: error: cannot find 'isatty' in scope
15 | class PosixPlatform : Platform {
16 |     func getTerminalType() -> TerminalType {
17 |         let isTTY = isatty(FileHandle.standardOutput.fileDescriptor) == 1
   |                     `- error: cannot find 'isatty' in scope
18 |         return isTTY ? .tty : .file
19 |     }
/host/spi-builder-workspace/Sources/SpectreKit/Internal/Platform.swift:27:22: error: cannot find 'winsize' in scope
25 |         // a temporary arrangement and needs to be fixed.
26 |         #if !arch(powerpc64le)
27 |             var ws = winsize()
   |                      `- error: cannot find 'winsize' in scope
28 |             #if os(OpenBSD)
29 |                 let tiocgwinsz = 0x4008_7468
/host/spi-builder-workspace/Sources/SpectreKit/Internal/Platform.swift:32:27: error: cannot find 'ioctl' in scope
30 |                 let err = ioctl(1, UInt(tiocgwinsz), &ws)
31 |             #else
32 |                 let err = ioctl(1, UInt(TIOCGWINSZ), &ws)
   |                           `- error: cannot find 'ioctl' in scope
33 |             #endif
34 |
/host/spi-builder-workspace/Sources/SpectreKit/Internal/Platform.swift:32:41: error: cannot find 'TIOCGWINSZ' in scope
30 |                 let err = ioctl(1, UInt(tiocgwinsz), &ws)
31 |             #else
32 |                 let err = ioctl(1, UInt(TIOCGWINSZ), &ws)
   |                                         `- error: cannot find 'TIOCGWINSZ' in scope
33 |             #endif
34 |
[16/76] Compiling SpectreKit Sequence.swift
/host/spi-builder-workspace/Sources/SpectreKit/Internal/Platform.swift:17:21: error: cannot find 'isatty' in scope
15 | class PosixPlatform : Platform {
16 |     func getTerminalType() -> TerminalType {
17 |         let isTTY = isatty(FileHandle.standardOutput.fileDescriptor) == 1
   |                     `- error: cannot find 'isatty' in scope
18 |         return isTTY ? .tty : .file
19 |     }
/host/spi-builder-workspace/Sources/SpectreKit/Internal/Platform.swift:27:22: error: cannot find 'winsize' in scope
25 |         // a temporary arrangement and needs to be fixed.
26 |         #if !arch(powerpc64le)
27 |             var ws = winsize()
   |                      `- error: cannot find 'winsize' in scope
28 |             #if os(OpenBSD)
29 |                 let tiocgwinsz = 0x4008_7468
/host/spi-builder-workspace/Sources/SpectreKit/Internal/Platform.swift:32:27: error: cannot find 'ioctl' in scope
30 |                 let err = ioctl(1, UInt(tiocgwinsz), &ws)
31 |             #else
32 |                 let err = ioctl(1, UInt(TIOCGWINSZ), &ws)
   |                           `- error: cannot find 'ioctl' in scope
33 |             #endif
34 |
/host/spi-builder-workspace/Sources/SpectreKit/Internal/Platform.swift:32:41: error: cannot find 'TIOCGWINSZ' in scope
30 |                 let err = ioctl(1, UInt(tiocgwinsz), &ws)
31 |             #else
32 |                 let err = ioctl(1, UInt(TIOCGWINSZ), &ws)
   |                                         `- error: cannot find 'TIOCGWINSZ' in scope
33 |             #endif
34 |
[17/76] Compiling SpectreKit String.swift
/host/spi-builder-workspace/Sources/SpectreKit/Internal/Platform.swift:17:21: error: cannot find 'isatty' in scope
15 | class PosixPlatform : Platform {
16 |     func getTerminalType() -> TerminalType {
17 |         let isTTY = isatty(FileHandle.standardOutput.fileDescriptor) == 1
   |                     `- error: cannot find 'isatty' in scope
18 |         return isTTY ? .tty : .file
19 |     }
/host/spi-builder-workspace/Sources/SpectreKit/Internal/Platform.swift:27:22: error: cannot find 'winsize' in scope
25 |         // a temporary arrangement and needs to be fixed.
26 |         #if !arch(powerpc64le)
27 |             var ws = winsize()
   |                      `- error: cannot find 'winsize' in scope
28 |             #if os(OpenBSD)
29 |                 let tiocgwinsz = 0x4008_7468
/host/spi-builder-workspace/Sources/SpectreKit/Internal/Platform.swift:32:27: error: cannot find 'ioctl' in scope
30 |                 let err = ioctl(1, UInt(tiocgwinsz), &ws)
31 |             #else
32 |                 let err = ioctl(1, UInt(TIOCGWINSZ), &ws)
   |                           `- error: cannot find 'ioctl' in scope
33 |             #endif
34 |
/host/spi-builder-workspace/Sources/SpectreKit/Internal/Platform.swift:32:41: error: cannot find 'TIOCGWINSZ' in scope
30 |                 let err = ioctl(1, UInt(tiocgwinsz), &ws)
31 |             #else
32 |                 let err = ioctl(1, UInt(TIOCGWINSZ), &ws)
   |                                         `- error: cannot find 'TIOCGWINSZ' in scope
33 |             #endif
34 |
[18/76] Compiling SpectreKit Iterators.swift
/host/spi-builder-workspace/Sources/SpectreKit/Internal/Platform.swift:17:21: error: cannot find 'isatty' in scope
15 | class PosixPlatform : Platform {
16 |     func getTerminalType() -> TerminalType {
17 |         let isTTY = isatty(FileHandle.standardOutput.fileDescriptor) == 1
   |                     `- error: cannot find 'isatty' in scope
18 |         return isTTY ? .tty : .file
19 |     }
/host/spi-builder-workspace/Sources/SpectreKit/Internal/Platform.swift:27:22: error: cannot find 'winsize' in scope
25 |         // a temporary arrangement and needs to be fixed.
26 |         #if !arch(powerpc64le)
27 |             var ws = winsize()
   |                      `- error: cannot find 'winsize' in scope
28 |             #if os(OpenBSD)
29 |                 let tiocgwinsz = 0x4008_7468
/host/spi-builder-workspace/Sources/SpectreKit/Internal/Platform.swift:32:27: error: cannot find 'ioctl' in scope
30 |                 let err = ioctl(1, UInt(tiocgwinsz), &ws)
31 |             #else
32 |                 let err = ioctl(1, UInt(TIOCGWINSZ), &ws)
   |                           `- error: cannot find 'ioctl' in scope
33 |             #endif
34 |
/host/spi-builder-workspace/Sources/SpectreKit/Internal/Platform.swift:32:41: error: cannot find 'TIOCGWINSZ' in scope
30 |                 let err = ioctl(1, UInt(tiocgwinsz), &ws)
31 |             #else
32 |                 let err = ioctl(1, UInt(TIOCGWINSZ), &ws)
   |                                         `- error: cannot find 'TIOCGWINSZ' in scope
33 |             #endif
34 |
[19/76] Compiling SpectreKit Platform.swift
/host/spi-builder-workspace/Sources/SpectreKit/Internal/Platform.swift:17:21: error: cannot find 'isatty' in scope
15 | class PosixPlatform : Platform {
16 |     func getTerminalType() -> TerminalType {
17 |         let isTTY = isatty(FileHandle.standardOutput.fileDescriptor) == 1
   |                     `- error: cannot find 'isatty' in scope
18 |         return isTTY ? .tty : .file
19 |     }
/host/spi-builder-workspace/Sources/SpectreKit/Internal/Platform.swift:27:22: error: cannot find 'winsize' in scope
25 |         // a temporary arrangement and needs to be fixed.
26 |         #if !arch(powerpc64le)
27 |             var ws = winsize()
   |                      `- error: cannot find 'winsize' in scope
28 |             #if os(OpenBSD)
29 |                 let tiocgwinsz = 0x4008_7468
/host/spi-builder-workspace/Sources/SpectreKit/Internal/Platform.swift:32:27: error: cannot find 'ioctl' in scope
30 |                 let err = ioctl(1, UInt(tiocgwinsz), &ws)
31 |             #else
32 |                 let err = ioctl(1, UInt(TIOCGWINSZ), &ws)
   |                           `- error: cannot find 'ioctl' in scope
33 |             #endif
34 |
/host/spi-builder-workspace/Sources/SpectreKit/Internal/Platform.swift:32:41: error: cannot find 'TIOCGWINSZ' in scope
30 |                 let err = ioctl(1, UInt(tiocgwinsz), &ws)
31 |             #else
32 |                 let err = ioctl(1, UInt(TIOCGWINSZ), &ws)
   |                                         `- error: cannot find 'TIOCGWINSZ' in scope
33 |             #endif
34 |
[20/76] Compiling SpectreKit Ratio.swift
/host/spi-builder-workspace/Sources/SpectreKit/Internal/Platform.swift:17:21: error: cannot find 'isatty' in scope
15 | class PosixPlatform : Platform {
16 |     func getTerminalType() -> TerminalType {
17 |         let isTTY = isatty(FileHandle.standardOutput.fileDescriptor) == 1
   |                     `- error: cannot find 'isatty' in scope
18 |         return isTTY ? .tty : .file
19 |     }
/host/spi-builder-workspace/Sources/SpectreKit/Internal/Platform.swift:27:22: error: cannot find 'winsize' in scope
25 |         // a temporary arrangement and needs to be fixed.
26 |         #if !arch(powerpc64le)
27 |             var ws = winsize()
   |                      `- error: cannot find 'winsize' in scope
28 |             #if os(OpenBSD)
29 |                 let tiocgwinsz = 0x4008_7468
/host/spi-builder-workspace/Sources/SpectreKit/Internal/Platform.swift:32:27: error: cannot find 'ioctl' in scope
30 |                 let err = ioctl(1, UInt(tiocgwinsz), &ws)
31 |             #else
32 |                 let err = ioctl(1, UInt(TIOCGWINSZ), &ws)
   |                           `- error: cannot find 'ioctl' in scope
33 |             #endif
34 |
/host/spi-builder-workspace/Sources/SpectreKit/Internal/Platform.swift:32:41: error: cannot find 'TIOCGWINSZ' in scope
30 |                 let err = ioctl(1, UInt(tiocgwinsz), &ws)
31 |             #else
32 |                 let err = ioctl(1, UInt(TIOCGWINSZ), &ws)
   |                                         `- error: cannot find 'TIOCGWINSZ' in scope
33 |             #endif
34 |
[21/76] Compiling SpectreKit Wcwidth.swift
/host/spi-builder-workspace/Sources/SpectreKit/Internal/Platform.swift:17:21: error: cannot find 'isatty' in scope
15 | class PosixPlatform : Platform {
16 |     func getTerminalType() -> TerminalType {
17 |         let isTTY = isatty(FileHandle.standardOutput.fileDescriptor) == 1
   |                     `- error: cannot find 'isatty' in scope
18 |         return isTTY ? .tty : .file
19 |     }
/host/spi-builder-workspace/Sources/SpectreKit/Internal/Platform.swift:27:22: error: cannot find 'winsize' in scope
25 |         // a temporary arrangement and needs to be fixed.
26 |         #if !arch(powerpc64le)
27 |             var ws = winsize()
   |                      `- error: cannot find 'winsize' in scope
28 |             #if os(OpenBSD)
29 |                 let tiocgwinsz = 0x4008_7468
/host/spi-builder-workspace/Sources/SpectreKit/Internal/Platform.swift:32:27: error: cannot find 'ioctl' in scope
30 |                 let err = ioctl(1, UInt(tiocgwinsz), &ws)
31 |             #else
32 |                 let err = ioctl(1, UInt(TIOCGWINSZ), &ws)
   |                           `- error: cannot find 'ioctl' in scope
33 |             #endif
34 |
/host/spi-builder-workspace/Sources/SpectreKit/Internal/Platform.swift:32:41: error: cannot find 'TIOCGWINSZ' in scope
30 |                 let err = ioctl(1, UInt(tiocgwinsz), &ws)
31 |             #else
32 |                 let err = ioctl(1, UInt(TIOCGWINSZ), &ws)
   |                                         `- error: cannot find 'TIOCGWINSZ' in scope
33 |             #endif
34 |
[22/76] Compiling SpectreKit Justify.swift
/host/spi-builder-workspace/Sources/SpectreKit/Internal/Platform.swift:17:21: error: cannot find 'isatty' in scope
15 | class PosixPlatform : Platform {
16 |     func getTerminalType() -> TerminalType {
17 |         let isTTY = isatty(FileHandle.standardOutput.fileDescriptor) == 1
   |                     `- error: cannot find 'isatty' in scope
18 |         return isTTY ? .tty : .file
19 |     }
/host/spi-builder-workspace/Sources/SpectreKit/Internal/Platform.swift:27:22: error: cannot find 'winsize' in scope
25 |         // a temporary arrangement and needs to be fixed.
26 |         #if !arch(powerpc64le)
27 |             var ws = winsize()
   |                      `- error: cannot find 'winsize' in scope
28 |             #if os(OpenBSD)
29 |                 let tiocgwinsz = 0x4008_7468
/host/spi-builder-workspace/Sources/SpectreKit/Internal/Platform.swift:32:27: error: cannot find 'ioctl' in scope
30 |                 let err = ioctl(1, UInt(tiocgwinsz), &ws)
31 |             #else
32 |                 let err = ioctl(1, UInt(TIOCGWINSZ), &ws)
   |                           `- error: cannot find 'ioctl' in scope
33 |             #endif
34 |
/host/spi-builder-workspace/Sources/SpectreKit/Internal/Platform.swift:32:41: error: cannot find 'TIOCGWINSZ' in scope
30 |                 let err = ioctl(1, UInt(tiocgwinsz), &ws)
31 |             #else
32 |                 let err = ioctl(1, UInt(TIOCGWINSZ), &ws)
   |                                         `- error: cannot find 'TIOCGWINSZ' in scope
33 |             #endif
34 |
[23/76] Compiling SpectreKit AsciiTableBorder.swift
[24/76] Compiling SpectreKit DoubleEdgeTableBorder.swift
[25/76] Compiling SpectreKit DoubleTableBorder.swift
[26/76] Compiling SpectreKit HeavyEdgeTableBorder.swift
[27/76] Compiling SpectreKit HeavyHeadTableBorder.swift
[28/76] Compiling SpectreKit HeavyTableBorder.swift
[29/76] Compiling SpectreKit HorizontalTableBorder.swift
[30/76] Compiling SpectreKit MarkdownTableBorder.swift
[31/76] Compiling SpectreKit Size.swift
[32/76] Compiling SpectreKit SpectreKit.swift
[33/76] Compiling SpectreKit Styles.swift
[34/76] Compiling SpectreKit TableBorder.swift
[35/76] Compiling SpectreKit TableBordereable.swift
[36/76] Compiling SpectreKit Terminal.swift
[37/76] Compiling SpectreKit BoxBorderPart.swift
[38/76] Compiling SpectreKit AsciiBoxBorder.swift
[39/76] Compiling SpectreKit DoubleBoxBorder.swift
[40/76] Compiling SpectreKit HeavyBoxBorder.swift
[41/76] Compiling SpectreKit NoBoxBorder.swift
[42/76] Compiling SpectreKit RoundedBoxCorner.swift
[43/76] Compiling SpectreKit SquareBoxBorder.swift
[44/76] Compiling SpectreKit TableBorderPart.swift
[45/76] Compiling SpectreKit Ascii2TableBorder.swift
[46/76] Compiling SpectreKit AsciiDoubleHeadTableBorder.swift
[47/76] Compiling SpectreKit Overflow.swift
[48/76] Compiling SpectreKit Paddable.swift
[49/76] Compiling SpectreKit Padding.swift
[50/76] Compiling SpectreKit Aligner.swift
[51/76] Compiling SpectreKit Ansi.swift
[52/76] Compiling SpectreKit Renderable.swift
[53/76] Compiling SpectreKit Segments.swift
[54/76] Compiling SpectreKit TablePart.swift
[55/76] Emitting module SpectreKit
[56/76] Compiling SpectreKit Alignable.swift
[57/76] Compiling SpectreKit Borderable.swift
[58/76] Compiling SpectreKit BoxBorder.swift
[59/76] Compiling SpectreKit BoxBordereable.swift
[60/76] Compiling SpectreKit Colors.swift
[61/76] Compiling SpectreKit Column.swift
[62/76] Compiling SpectreKit Environment.swift
[63/76] Compiling SpectreKit Expandable.swift
[64/76] Compiling SpectreKit DataStructures.swift
[65/76] Compiling SpectreKit Grid.swift
[66/76] Compiling SpectreKit Markup.swift
[67/76] Compiling SpectreKit Padder.swift
[68/76] Compiling SpectreKit Panel.swift
[69/76] Compiling SpectreKit Paragraph.swift
[70/76] Compiling SpectreKit Rule.swift
[71/76] Compiling SpectreKit Table.swift
[72/76] Compiling SpectreKit Text.swift
BUILD FAILURE 6.2 android