Build Information
Failed to build csv-dialect-swift with Swift 6.0 for Linux.
Build Command
bash -c docker run --rm -v "checkouts-4606859-1":/host -w "$workDir" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete 2>&1
Build Log
========================================
RunAll
========================================
Builder version: 4.40.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/chrispomeroyhale/csv-dialect-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/chrispomeroyhale/csv-dialect-swift
* branch main -> FETCH_HEAD
* [new branch] main -> origin/main
HEAD is now at 89c6c11 GH-7: Optionally specify import data encoding.
Cloned https://github.com/chrispomeroyhale/csv-dialect-swift.git
Revision (git rev-parse @):
89c6c1195da0aa86f201b4dc3bf5011cd7dd6adc
SUCCESS checkout https://github.com/chrispomeroyhale/csv-dialect-swift.git at main
========================================
Build
========================================
Selected platform: linux
Swift version: 6.0
Building package at path: $workDir
https://github.com/chrispomeroyhale/csv-dialect-swift.git
Running build ...
bash -c docker run --rm -v "checkouts-4606859-1":/host -w "$workDir" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete 2>&1
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-24593BA9C3E375BF.txt
[3/10] Compiling DialectalCSV InputIterator.swift
[4/11] Compiling DialectalCSV InputHandler.swift
/host/spi-builder-workspace/Sources/InputHandler.swift:157:37: error: 'seek(toOffset:)' is unavailable
155 | if #available(iOS 13, macOS 10.15, *) {
156 | do {
157 | try self.fileHandle.seek(toOffset: startOffset)
| `- error: 'seek(toOffset:)' is unavailable
158 | } catch {
159 | return false
Foundation.FileHandle:21:17: note: 'seek(toOffset:)' was introduced in Swift 5.0
19 | public func seekToEnd() throws -> UInt64
20 | @available(swift 5.0)
21 | public func seek(toOffset offset: UInt64) throws
| `- note: 'seek(toOffset:)' was introduced in Swift 5.0
22 | @available(swift 5.0)
23 | public func truncate(atOffset offset: UInt64) throws
[5/11] Compiling DialectalCSV Aliases.swift
[6/11] Emitting module DialectalCSV
[7/11] Compiling DialectalCSV Document.swift
[8/11] Compiling DialectalCSV ExportParser.swift
[9/11] Compiling DialectalCSV Dialect.swift
[10/11] Compiling DialectalCSV ImportParser.swift
/host/spi-builder-workspace/Sources/ImportParser.swift:66:70: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
64 | while true {
65 | var fieldPartition: NSString?
66 | if !scanner.scanUpToCharacters(from: characterSet, into: &fieldPartition), scanner.isAtEnd {
| |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
| `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
67 | break
68 | }
/host/spi-builder-workspace/Sources/ImportParser.swift:79:68: error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
77 |
78 | var characters: NSString?
79 | guard scanner.scanCharacters(from: characterSet, into: &characters), let specials = characters as String? else {
| |- error: cannot convert value of type 'UnsafeMutablePointer<NSString?>' to expected argument type 'UnsafeMutablePointer<String?>'
| `- note: arguments to generic parameter 'Pointee' ('NSString?' and 'String?') are expected to be equal
80 | break
81 | }
[11/11] Compiling DialectalCSV OutputHandler.swift
BUILD FAILURE 6.0 linux