Build Information
Successful build of ParserCombinator, reference master (320428), with Swift 6.3 for macOS (SPM) on 11 Apr 2026 00:38:10 UTC.
Swift 6 data race errors: 0
Build Command
env DEVELOPER_DIR=/Applications/Xcode-26.4.0.app xcrun swift build --arch arm64Build Log
========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/stiivi/parsercombinator.git
Reference: master
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/stiivi/parsercombinator
* branch master -> FETCH_HEAD
* [new branch] master -> origin/master
HEAD is now at 3204281 Minor naming change and removal of self references.
Cloned https://github.com/stiivi/parsercombinator.git
Revision (git rev-parse @):
3204281df7ae77cd0723128fa146a467524fc8c9
SUCCESS checkout https://github.com/stiivi/parsercombinator.git at master
========================================
ResolveProductDependencies
========================================
Resolving dependencies ...
{
"identity": ".resolve-product-dependencies",
"name": "resolve-dependencies",
"url": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
"version": "unspecified",
"path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
"traits": [
"default"
],
"dependencies": [
{
"identity": "parsercombinator",
"name": "ParserCombinator",
"url": "https://github.com/stiivi/parsercombinator.git",
"version": "unspecified",
"path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/parsercombinator",
"traits": [
"default"
],
"dependencies": [
]
}
]
}
Fetching https://github.com/stiivi/parsercombinator.git
[1/160] Fetching parsercombinator
Fetched https://github.com/stiivi/parsercombinator.git from cache (0.59s)
Creating working copy for https://github.com/stiivi/parsercombinator.git
Working copy of https://github.com/stiivi/parsercombinator.git resolved at master (3204281)
warning: '.resolve-product-dependencies': dependency 'parsercombinator' is not used by any target
Found 0 product dependencies
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.3
Building package at path: $PWD
https://github.com/stiivi/parsercombinator.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.4.0.app xcrun swift build --arch arm64
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version--6988338F2F200930.txt
[3/10] Compiling ParserCombinator Recognizers.swift
[4/10] Compiling ParserCombinator Functions.swift
[5/10] Compiling ParserCombinator Stream.swift
[6/10] Compiling ParserCombinator Parser.swift
/Users/admin/builder/spi-builder-workspace/Sources/ParserCombinator/Parser.swift:45:20: warning: enum case 'Fail' has 2 associated values; matching them as a tuple is deprecated [#deprecation]
36 | /// Parser failed to match an expected input. Other parsers might continue
37 | /// parsing if their predecessors failed.
38 | case Fail(String, T)
| `- note: 'Fail' declared here
39 | /// Unrecoverable error
40 | case Error(String, T)
:
43 | switch self {
44 | case .OK(let value): return String(describing: value)
45 | case .Fail(let error): return "Fail: \(error)"
| `- warning: enum case 'Fail' has 2 associated values; matching them as a tuple is deprecated [#deprecation]
46 | case .Error(let error): return "Error: \(error)"
47 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParserCombinator/Parser.swift:46:21: warning: enum case 'Error' has 2 associated values; matching them as a tuple is deprecated [#deprecation]
38 | case Fail(String, T)
39 | /// Unrecoverable error
40 | case Error(String, T)
| `- note: 'Error' declared here
41 |
42 | public var description: String {
:
44 | case .OK(let value): return String(describing: value)
45 | case .Fail(let error): return "Fail: \(error)"
46 | case .Error(let error): return "Error: \(error)"
| `- warning: enum case 'Error' has 2 associated values; matching them as a tuple is deprecated [#deprecation]
47 | }
48 | }
[7/10] Compiling ParserCombinator Operators+Convenience.swift
[8/10] Compiling ParserCombinator Empty.swift
[9/10] Emitting module ParserCombinator
[10/10] Compiling ParserCombinator Combinators.swift
/Users/admin/builder/spi-builder-workspace/Sources/ParserCombinator/Combinators.swift:65:17: warning: enum case 'OK' has one associated value that is a tuple of 2 elements
63 |
64 | switch result {
65 | case .OK(let value, let input2):
| `- warning: enum case 'OK' has one associated value that is a tuple of 2 elements
66 | return f(value).parse(input2)
67 | case .Fail(let error, let token):
/Users/admin/builder/spi-builder-workspace/Sources/ParserCombinator/Parser.swift:35:10: note: 'OK' declared here
33 |
34 | /// Holds the parser result value if the parser succeeded
35 | case OK(Value)
| `- note: 'OK' declared here
36 | /// Parser failed to match an expected input. Other parsers might continue
37 | /// parsing if their predecessors failed.
Build complete! (0.79s)
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "ParserCombinator",
"name" : "ParserCombinator",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
],
"products" : [
{
"name" : "ParserCombinator",
"targets" : [
"ParserCombinator"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "ParserCombinatorTests",
"module_type" : "SwiftTarget",
"name" : "ParserCombinatorTests",
"path" : "Tests/ParserCombinatorTests",
"sources" : [
"ParserCombinatorTests.swift"
],
"target_dependencies" : [
"ParserCombinator"
],
"type" : "test"
},
{
"c99name" : "ParserCombinator",
"module_type" : "SwiftTarget",
"name" : "ParserCombinator",
"path" : "Sources/ParserCombinator",
"product_memberships" : [
"ParserCombinator"
],
"sources" : [
"Combinators.swift",
"Empty.swift",
"Functions.swift",
"Operators+Convenience.swift",
"Parser.swift",
"Recognizers.swift",
"Stream.swift"
],
"type" : "library"
}
],
"tools_version" : "4.0"
}
Done.