Build Information
Failed to build ISO9660, reference main (fd2362), with Swift 6.2 for Android on 20 Jun 2025 06:11:45 UTC.
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4606859-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:android-6.2-latest swift build --swift-sdk aarch64-unknown-linux-android28 2>&1Build Log
========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/amodm/iso9660-swift.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/amodm/iso9660-swift
* branch main -> FETCH_HEAD
* [new branch] main -> origin/main
HEAD is now at fd2362b base commit
Cloned https://github.com/amodm/iso9660-swift.git
Revision (git rev-parse @):
fd2362bc51bb2663e18be15d38d4ba16dbacddd8
SUCCESS checkout https://github.com/amodm/iso9660-swift.git at main
========================================
Build
========================================
Selected platform: android
Swift version: 6.2
Building package at path: $PWD
https://github.com/amodm/iso9660-swift.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-1":/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-argument-parser
[1/15380] Fetching swift-argument-parser
Fetched https://github.com/apple/swift-argument-parser from cache (1.49s)
Computing version for https://github.com/apple/swift-argument-parser
Computed https://github.com/apple/swift-argument-parser at 1.5.1 (2.73s)
Creating working copy for https://github.com/apple/swift-argument-parser
Working copy of https://github.com/apple/swift-argument-parser resolved at 1.5.1
[1/1] Compiling plugin GenerateManual
Building for debugging...
[1/12] Write sources
[5/12] Write swift-version-8C5A4AE7A8CE2BA.txt
[7/32] Emitting module ArgumentParserToolInfo
[8/32] Compiling ArgumentParserToolInfo ToolInfo.swift
[9/33] Wrapping AST for ArgumentParserToolInfo for debugging
[11/71] Emitting module ArgumentParser
[12/76] Compiling ArgumentParser OptionGroup.swift
[13/76] Compiling ArgumentParser AsyncParsableCommand.swift
[14/76] Compiling ArgumentParser CommandConfiguration.swift
[15/76] Compiling ArgumentParser CommandGroup.swift
[16/76] Compiling ArgumentParser EnumerableFlag.swift
[17/76] Compiling ArgumentParser Name.swift
[18/76] Compiling ArgumentParser Parsed.swift
[19/76] Compiling ArgumentParser ParsedValues.swift
[20/76] Compiling ArgumentParser ParserError.swift
[21/76] Compiling ArgumentParser SplitArguments.swift
[22/76] Compiling ArgumentParser BashCompletionsGenerator.swift
[23/76] Compiling ArgumentParser CompletionsGenerator.swift
[24/76] Compiling ArgumentParser FishCompletionsGenerator.swift
[25/76] Compiling ArgumentParser ZshCompletionsGenerator.swift
[26/76] Compiling ArgumentParser Argument.swift
[27/76] Compiling ArgumentParser ArgumentHelp.swift
[28/76] Compiling ArgumentParser CollectionExtensions.swift
[29/76] Compiling ArgumentParser Platform.swift
[30/76] Compiling ArgumentParser SequenceExtensions.swift
[31/76] Compiling ArgumentParser StringExtensions.swift
[32/76] Compiling ArgumentParser Tree.swift
[33/76] Compiling ArgumentParser ExpressibleByArgument.swift
[34/76] Compiling ArgumentParser ParsableArguments.swift
[35/76] Compiling ArgumentParser ParsableArgumentsValidation.swift
[36/76] Compiling ArgumentParser ParsableCommand.swift
[37/76] Compiling ArgumentParser ArgumentDecoder.swift
[38/76] Compiling ArgumentParser ArgumentDefinition.swift
[39/76] Compiling ArgumentParser ArgumentSet.swift
[40/76] Compiling ArgumentParser CommandParser.swift
[41/76] Compiling ArgumentParser InputKey.swift
[42/76] Compiling ArgumentParser InputOrigin.swift
/host/spi-builder-workspace/Sources/ISO9660/ISOFileSystem.swift:689:20: error: missing argument for parameter 'data' in call
687 | self.currentOffset = 0
688 | self.buffer = UnsafeMutablePointer<UInt8>.allocate(capacity: blockSize)
689 | super.init()
| `- error: missing argument for parameter 'data' in call
690 | }
691 |
Foundation.InputStream.init:2:8: note: 'init(data:)' declared here
1 | class InputStream {
2 | public init(data: Data)}
| `- note: 'init(data:)' declared here
3 |
/host/spi-builder-workspace/Sources/ISO9660/ISOImageMedia.swift:82:37: warning: result of call to 'createFile(atPath:contents:attributes:)' is unused [#no-usage]
80 | self.fileLen = try FileManager.default.attributesOfItem(atPath: url.path)[.size] as! UInt64
81 | } else {
82 | FileManager.default.createFile(atPath: url.path, contents: nil, attributes: nil)
| `- warning: result of call to 'createFile(atPath:contents:attributes:)' is unused [#no-usage]
83 | self.fileHandle = try FileHandle(forWritingTo: url)
84 | self.fileLen = 0
[50/78] Compiling ArgumentParser DumpHelpGenerator.swift
/host/spi-builder-workspace/Sources/ISO9660/ISOFileSystem.swift:689:20: error: missing argument for parameter 'data' in call
687 | self.currentOffset = 0
688 | self.buffer = UnsafeMutablePointer<UInt8>.allocate(capacity: blockSize)
689 | super.init()
| `- error: missing argument for parameter 'data' in call
690 | }
691 |
Foundation.InputStream.init:2:8: note: 'init(data:)' declared here
1 | class InputStream {
2 | public init(data: Data)}
| `- note: 'init(data:)' declared here
3 |
/host/spi-builder-workspace/Sources/ISO9660/ISOImageMedia.swift:82:37: warning: result of call to 'createFile(atPath:contents:attributes:)' is unused [#no-usage]
80 | self.fileLen = try FileManager.default.attributesOfItem(atPath: url.path)[.size] as! UInt64
81 | } else {
82 | FileManager.default.createFile(atPath: url.path, contents: nil, attributes: nil)
| `- warning: result of call to 'createFile(atPath:contents:attributes:)' is unused [#no-usage]
83 | self.fileHandle = try FileHandle(forWritingTo: url)
84 | self.fileLen = 0
[51/78] Compiling ArgumentParser HelpCommand.swift
/host/spi-builder-workspace/Sources/ISO9660/ISOFileSystem.swift:689:20: error: missing argument for parameter 'data' in call
687 | self.currentOffset = 0
688 | self.buffer = UnsafeMutablePointer<UInt8>.allocate(capacity: blockSize)
689 | super.init()
| `- error: missing argument for parameter 'data' in call
690 | }
691 |
Foundation.InputStream.init:2:8: note: 'init(data:)' declared here
1 | class InputStream {
2 | public init(data: Data)}
| `- note: 'init(data:)' declared here
3 |
/host/spi-builder-workspace/Sources/ISO9660/ISOImageMedia.swift:82:37: warning: result of call to 'createFile(atPath:contents:attributes:)' is unused [#no-usage]
80 | self.fileLen = try FileManager.default.attributesOfItem(atPath: url.path)[.size] as! UInt64
81 | } else {
82 | FileManager.default.createFile(atPath: url.path, contents: nil, attributes: nil)
| `- warning: result of call to 'createFile(atPath:contents:attributes:)' is unused [#no-usage]
83 | self.fileHandle = try FileHandle(forWritingTo: url)
84 | self.fileLen = 0
[52/78] Emitting module ISO9660
[61/78] Compiling ArgumentParser ArgumentVisibility.swift
[62/78] Compiling ArgumentParser CompletionKind.swift
[63/78] Compiling ArgumentParser Errors.swift
[64/78] Compiling ArgumentParser Flag.swift
[65/78] Compiling ArgumentParser NameSpecification.swift
[66/78] Compiling ArgumentParser Option.swift
[69/78] Compiling ISO9660 VolumeGenericDescriptor.swift
[70/78] Compiling ISO9660 VolumePartitionDescriptor.swift
[71/78] Compiling ArgumentParser UsageGenerator.swift
[72/79] Wrapping AST for ArgumentParser for debugging
BUILD FAILURE 6.2 android