The Swift Package Index logo.Swift Package Index

Build Information

Failed to build ISO9660, reference v0.1.0 (fd2362), with Swift 6.3 for Linux on 20 Apr 2026 19:26:17 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/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

Build Log

========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/amodm/iso9660-swift.git
Reference: v0.1.0
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
 * tag               v0.1.0     -> FETCH_HEAD
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 v0.1.0
========================================
Build
========================================
Selected platform:         linux
Swift version:             6.3
Building package at path:  $PWD
https://github.com/amodm/iso9660-swift.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/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/apple/swift-argument-parser
[1/17529] Fetching swift-argument-parser
Fetched https://github.com/apple/swift-argument-parser from cache (0.79s)
Computing version for https://github.com/apple/swift-argument-parser
Computed https://github.com/apple/swift-argument-parser at 1.7.1 (1.25s)
Creating working copy for https://github.com/apple/swift-argument-parser
Working copy of https://github.com/apple/swift-argument-parser resolved at 1.7.1
[1/1] Compiling plugin GenerateManual
[2/2] Compiling plugin GenerateDoccReference
Building for debugging...
[2/13] Write sources
[6/13] Write swift-version-24593BA9C3E375BF.txt
[8/33] Emitting module ISO9660
[9/35] Compiling ArgumentParserToolInfo ToolInfo.swift
[10/35] Emitting module ArgumentParserToolInfo
[11/36] Wrapping AST for ArgumentParserToolInfo for debugging
[13/82] Compiling ArgumentParser ParentCommand.swift
[14/82] Compiling ArgumentParser AsyncParsableCommand.swift
[15/82] Compiling ArgumentParser CommandConfiguration.swift
[16/82] Compiling ArgumentParser CommandGroup.swift
[17/82] Compiling ArgumentParser EnumerableFlag.swift
[18/82] Compiling ArgumentParser ExpressibleByArgument.swift
[19/82] Compiling ArgumentParser ParsableArguments.swift
[20/88] Compiling ArgumentParser Flag.swift
[21/88] Compiling ArgumentParser NameSpecification.swift
[22/88] Compiling ArgumentParser Foundation.swift
[23/88] Compiling ArgumentParser Mutex.swift
[24/88] Compiling ArgumentParser Platform.swift
[25/88] Compiling ArgumentParser SequenceExtensions.swift
[26/88] Compiling ArgumentParser StringExtensions.swift
[27/88] Compiling ArgumentParser SwiftExtensions.swift
[28/88] Emitting module ArgumentParser
[29/88] Compiling ArgumentParser BashCompletionsGenerator.swift
[30/88] Compiling ArgumentParser CompletionsGenerator.swift
[31/88] Compiling ArgumentParser FishCompletionsGenerator.swift
[32/88] Compiling ArgumentParser ZshCompletionsGenerator.swift
[33/88] Compiling ArgumentParser Argument.swift
[36/88] Compiling ArgumentParser ArgumentVisibility.swift
[37/88] Compiling ArgumentParser CompletionKind.swift
[38/88] Compiling ArgumentParser Errors.swift
[39/88] Compiling ArgumentParser ArgumentDiscussion.swift
[40/88] Compiling ArgumentParser ArgumentHelp.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
/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
/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
BUILD FAILURE 6.3 linux