The Swift Package Index logo.Swift Package Index

Build Information

Failed to build ISO9660, reference v0.1.0 (fd2362), with Swift 6.2 for Linux on 20 Jun 2025 06:11:21 UTC.

Build Command

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

Build Log

========================================
RunAll
========================================
Builder version: 4.64.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.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-2":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.2-latest swift build --triple x86_64-unknown-linux-gnu 2>&1
basic-6.2-latest: Pulling from finestructure/spi-images
Digest: sha256:f81a7bd7aa87a0f81848d48c5bcc03f5f78deebd37fa5f9be9913077205d3687
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-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.07s)
Computing version for https://github.com/apple/swift-argument-parser
Computed https://github.com/apple/swift-argument-parser at 1.5.1 (1.52s)
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-24593BA9C3E375BF.txt
[7/32] Emitting module ISO9660
[8/34] Emitting module ArgumentParserToolInfo
[9/34] Compiling ArgumentParserToolInfo ToolInfo.swift
[10/35] Wrapping AST for ArgumentParserToolInfo for debugging
[12/73] Compiling ArgumentParser HelpGenerator.swift
[13/73] Compiling ArgumentParser MessageInfo.swift
[14/73] Compiling ArgumentParser AsyncParsableCommand.swift
[15/73] Compiling ArgumentParser CommandConfiguration.swift
[16/73] Compiling ArgumentParser CommandGroup.swift
[17/73] Compiling ArgumentParser Parsed.swift
[18/73] Compiling ArgumentParser ParsedValues.swift
[19/73] Compiling ArgumentParser UsageGenerator.swift
[20/73] Compiling ArgumentParser OptionGroup.swift
[21/73] Compiling ArgumentParser DumpHelpGenerator.swift
[22/73] Compiling ArgumentParser HelpCommand.swift
[23/73] Compiling ArgumentParser ArgumentVisibility.swift
[24/73] Compiling ArgumentParser CompletionKind.swift
[25/73] Compiling ArgumentParser Errors.swift
[26/73] Compiling ArgumentParser EnumerableFlag.swift
[27/73] Compiling ArgumentParser Name.swift
[28/73] Compiling ArgumentParser Flag.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
[29/73] Compiling ArgumentParser NameSpecification.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
[30/73] Compiling ArgumentParser Option.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
BUILD FAILURE 6.2 linux