Build Information
Failed to build SwiftParser, reference 1.1.1 (b3aaf8), with Swift 6.2 for macOS (SPM) on 18 Jun 2025 02:02:06 UTC.
Build Command
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64Build Log
========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/dparnell/swift-parser-generator.git
Reference: 1.1.1
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/dparnell/swift-parser-generator
* tag 1.1.1 -> FETCH_HEAD
HEAD is now at b3aaf80 Merge pull request #15 from pixelspark/swift4
Cloned https://github.com/dparnell/swift-parser-generator.git
Revision (git rev-parse @):
b3aaf8070dad2a84a3ffb45a9cff30b22f703019
SUCCESS checkout https://github.com/dparnell/swift-parser-generator.git at 1.1.1
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.2
Building package at path: $PWD
https://github.com/dparnell/swift-parser-generator.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-1EA4D86E10B52AF.txt
[3/6] Compiling SwiftParser StringReader.swift
[4/6] Compiling SwiftParser Reader.swift
[5/6] Emitting module SwiftParser
[6/6] Compiling SwiftParser Parser.swift
/Users/admin/builder/spi-builder-workspace/Sources/Parser.swift:65:39: warning: 'characters' is deprecated: Please use String directly [#DeprecatedDeclaration]
63 | let res = target.substring(with: m.range)
64 | // reset to end of match
65 | reader.seek(pos + res.characters.count)
| `- warning: 'characters' is deprecated: Please use String directly [#DeprecatedDeclaration]
66 |
67 | parser.leave("regex", true)
/Users/admin/builder/spi-builder-workspace/Sources/Parser.swift:95:26: warning: 'characters' is deprecated: Please use String directly [#DeprecatedDeclaration]
93 | let pos = reader.position
94 |
95 | for ch in string.characters {
| `- warning: 'characters' is deprecated: Please use String directly [#DeprecatedDeclaration]
96 | let flag = ch == reader.read()
97 | if !flag {
/Users/admin/builder/spi-builder-workspace/Sources/Parser.swift:392:25: error: extra arguments at positions #1, #2 in call
390 |
391 | public init(rule_def: @escaping () -> ParserRule) {
392 | rule_definition = rule_def
| `- error: extra arguments at positions #1, #2 in call
393 | }
394 |
/Users/admin/builder/spi-builder-workspace/Sources/Parser.swift:392:27: error: cannot assign value of type 'ParserRule' (aka '(Parser, any Reader) -> Bool') to type 'ParserRuleDefinition' (aka '() -> (Parser, any Reader) -> Bool')
390 |
391 | public init(rule_def: @escaping () -> ParserRule) {
392 | rule_definition = rule_def
| `- error: cannot assign value of type 'ParserRule' (aka '(Parser, any Reader) -> Bool') to type 'ParserRuleDefinition' (aka '() -> (Parser, any Reader) -> Bool')
393 | }
394 |
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
BUILD FAILURE 6.2 macosSpm