Build Information
Failed to build Typology, reference 0.0.2 (f41e03
), with Swift 6.1 for Wasm on 27 May 2025 15:48:18 UTC.
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4609320-3":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi 2>&1
Build Log
========================================
RunAll
========================================
Builder version: 4.63.1
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/MaxDesiatov/typology.git
Reference: 0.0.2
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/MaxDesiatov/typology
* tag 0.0.2 -> FETCH_HEAD
HEAD is now at f41e03f Add named tuple case (#30)
Cloned https://github.com/MaxDesiatov/typology.git
Revision (git rev-parse @):
f41e03ff4927c4014ebd95b4d3077500155ac95a
SUCCESS checkout https://github.com/MaxDesiatov/typology.git at 0.0.2
========================================
Build
========================================
Selected platform: wasm
Swift version: 6.1
Building package at path: $PWD
https://github.com/MaxDesiatov/typology.git
https://github.com/MaxDesiatov/typology.git
WARNING: environment variable SUPPRESS_SWIFT_6_FLAGS is not set
{
"dependencies" : [
{
"identity" : "swift-syntax",
"requirement" : {
"exact" : [
"0.50000.0"
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-syntax.git"
}
],
"manifest_display_name" : "Typology",
"name" : "Typology",
"path" : "/host/spi-builder-workspace",
"platforms" : [
],
"products" : [
{
"name" : "Typology",
"targets" : [
"Typology"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "TypologyTests",
"module_type" : "SwiftTarget",
"name" : "TypologyTests",
"path" : "Tests/TypologyTests",
"sources" : [
"ASTTests.swift",
"Benchmarks.swift",
"InferenceTests.swift"
],
"target_dependencies" : [
"Typology"
],
"type" : "test"
},
{
"c99name" : "Typology",
"module_type" : "SwiftTarget",
"name" : "Typology",
"path" : "Sources/Typology",
"product_dependencies" : [
"SwiftSyntax"
],
"product_memberships" : [
"Typology"
],
"sources" : [
"AST/AST.swift",
"AST/Expr.swift",
"AST/Literal.swift",
"AST/SwiftSyntax.swift",
"ConstraintSystem.swift",
"Protocol.swift",
"Scheme.swift",
"Solver.swift",
"Substitution.swift",
"Type.swift",
"TypeError.swift"
],
"type" : "library"
}
],
"tools_version" : "4.0"
}
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-3":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures 2>&1
wasm-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:7e37457820e5f17452a98118754f345f2619722c485f2db0d8b666940a83afd2
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest
Fetching https://github.com/apple/swift-syntax.git
[1/70444] Fetching swift-syntax
Fetched https://github.com/apple/swift-syntax.git from cache (5.41s)
Computing version for https://github.com/apple/swift-syntax.git
Computed https://github.com/apple/swift-syntax.git at 0.50000.0 (7.38s)
Creating working copy for https://github.com/apple/swift-syntax.git
Working copy of https://github.com/apple/swift-syntax.git resolved at 0.50000.0
Building for debugging...
[0/3] Write sources
[2/3] Write swift-version-24593BA9C3E375BF.txt
[4/27] Emitting module SwiftSyntax
[5/30] Compiling SwiftSyntax SwiftSyntax.swift
/host/spi-builder-workspace/.build/checkouts/swift-syntax/Sources/SwiftSyntax/SwiftcInvocation.swift:55:22: error: cannot find 'DispatchSource' in scope
53 | let stdoutPipe = Pipe()
54 | var stdoutData = Data()
55 | let stdoutSource = DispatchSource.makeReadSource(
| `- error: cannot find 'DispatchSource' in scope
56 | fileDescriptor: stdoutPipe.fileHandleForReading.fileDescriptor)
57 | stdoutSource.setEventHandler {
/host/spi-builder-workspace/.build/checkouts/swift-syntax/Sources/SwiftSyntax/SwiftcInvocation.swift:64:22: error: cannot find 'DispatchSource' in scope
62 | let stderrPipe = Pipe()
63 | var stderrData = Data()
64 | let stderrSource = DispatchSource.makeReadSource(
| `- error: cannot find 'DispatchSource' in scope
65 | fileDescriptor: stderrPipe.fileHandleForReading.fileDescriptor)
66 | stderrSource.setEventHandler {
/host/spi-builder-workspace/.build/checkouts/swift-syntax/Sources/SwiftSyntax/SwiftcInvocation.swift:71:17: error: cannot find 'Process' in scope
69 | stderrSource.resume()
70 |
71 | let process = Process()
| `- error: cannot find 'Process' in scope
72 | process.launchPath = executable.path
73 | process.arguments = arguments
[6/30] Compiling SwiftSyntax SwiftcInvocation.swift
/host/spi-builder-workspace/.build/checkouts/swift-syntax/Sources/SwiftSyntax/SwiftcInvocation.swift:55:22: error: cannot find 'DispatchSource' in scope
53 | let stdoutPipe = Pipe()
54 | var stdoutData = Data()
55 | let stdoutSource = DispatchSource.makeReadSource(
| `- error: cannot find 'DispatchSource' in scope
56 | fileDescriptor: stdoutPipe.fileHandleForReading.fileDescriptor)
57 | stdoutSource.setEventHandler {
/host/spi-builder-workspace/.build/checkouts/swift-syntax/Sources/SwiftSyntax/SwiftcInvocation.swift:64:22: error: cannot find 'DispatchSource' in scope
62 | let stderrPipe = Pipe()
63 | var stderrData = Data()
64 | let stderrSource = DispatchSource.makeReadSource(
| `- error: cannot find 'DispatchSource' in scope
65 | fileDescriptor: stderrPipe.fileHandleForReading.fileDescriptor)
66 | stderrSource.setEventHandler {
/host/spi-builder-workspace/.build/checkouts/swift-syntax/Sources/SwiftSyntax/SwiftcInvocation.swift:71:17: error: cannot find 'Process' in scope
69 | stderrSource.resume()
70 |
71 | let process = Process()
| `- error: cannot find 'Process' in scope
72 | process.launchPath = executable.path
73 | process.arguments = arguments
[7/30] Compiling SwiftSyntax Syntax.swift
/host/spi-builder-workspace/.build/checkouts/swift-syntax/Sources/SwiftSyntax/SwiftcInvocation.swift:55:22: error: cannot find 'DispatchSource' in scope
53 | let stdoutPipe = Pipe()
54 | var stdoutData = Data()
55 | let stdoutSource = DispatchSource.makeReadSource(
| `- error: cannot find 'DispatchSource' in scope
56 | fileDescriptor: stdoutPipe.fileHandleForReading.fileDescriptor)
57 | stdoutSource.setEventHandler {
/host/spi-builder-workspace/.build/checkouts/swift-syntax/Sources/SwiftSyntax/SwiftcInvocation.swift:64:22: error: cannot find 'DispatchSource' in scope
62 | let stderrPipe = Pipe()
63 | var stderrData = Data()
64 | let stderrSource = DispatchSource.makeReadSource(
| `- error: cannot find 'DispatchSource' in scope
65 | fileDescriptor: stderrPipe.fileHandleForReading.fileDescriptor)
66 | stderrSource.setEventHandler {
/host/spi-builder-workspace/.build/checkouts/swift-syntax/Sources/SwiftSyntax/SwiftcInvocation.swift:71:17: error: cannot find 'Process' in scope
69 | stderrSource.resume()
70 |
71 | let process = Process()
| `- error: cannot find 'Process' in scope
72 | process.launchPath = executable.path
73 | process.arguments = arguments
[8/30] Compiling SwiftSyntax AbsolutePosition.swift
[9/30] Compiling SwiftSyntax ByteTreeDeserialization.swift
[10/30] Compiling SwiftSyntax Diagnostic.swift
[11/30] Compiling SwiftSyntax DiagnosticConsumer.swift
[12/30] Compiling SwiftSyntax SyntaxRewriter.swift
[13/30] Compiling SwiftSyntax TokenKind.swift
[14/30] Compiling SwiftSyntax Trivia.swift
[15/30] Compiling SwiftSyntax RawSyntax.swift
[16/30] Compiling SwiftSyntax SourceLength.swift
[17/30] Compiling SwiftSyntax SourcePresence.swift
[18/30] Compiling SwiftSyntax DiagnosticEngine.swift
[19/30] Compiling SwiftSyntax JSONDiagnosticConsumer.swift
[20/30] Compiling SwiftSyntax LazyNonThreadSafeCache.swift
[21/30] Compiling SwiftSyntax PrintingDiagnosticConsumer.swift
[22/30] Compiling SwiftSyntax SyntaxBuilders.swift
[23/30] Compiling SwiftSyntax SyntaxClassifier.swift
[24/30] Compiling SwiftSyntax SyntaxCollections.swift
[25/30] Compiling SwiftSyntax SyntaxChildren.swift
[26/30] Compiling SwiftSyntax SyntaxData.swift
[27/30] Compiling SwiftSyntax WeakLookupTable.swift
[28/30] Compiling SwiftSyntax SyntaxFactory.swift
[29/30] Compiling SwiftSyntax SyntaxKind.swift
[30/30] Compiling SwiftSyntax SyntaxNodes.swift
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-3":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi 2>&1
wasm-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:7e37457820e5f17452a98118754f345f2619722c485f2db0d8b666940a83afd2
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest
[0/1] Planning build
Building for debugging...
[0/1] Write swift-version-24593BA9C3E375BF.txt
[2/25] Compiling SwiftSyntax SwiftSyntax.swift
/host/spi-builder-workspace/.build/checkouts/swift-syntax/Sources/SwiftSyntax/SwiftcInvocation.swift:55:22: error: cannot find 'DispatchSource' in scope
53 | let stdoutPipe = Pipe()
54 | var stdoutData = Data()
55 | let stdoutSource = DispatchSource.makeReadSource(
| `- error: cannot find 'DispatchSource' in scope
56 | fileDescriptor: stdoutPipe.fileHandleForReading.fileDescriptor)
57 | stdoutSource.setEventHandler {
/host/spi-builder-workspace/.build/checkouts/swift-syntax/Sources/SwiftSyntax/SwiftcInvocation.swift:64:22: error: cannot find 'DispatchSource' in scope
62 | let stderrPipe = Pipe()
63 | var stderrData = Data()
64 | let stderrSource = DispatchSource.makeReadSource(
| `- error: cannot find 'DispatchSource' in scope
65 | fileDescriptor: stderrPipe.fileHandleForReading.fileDescriptor)
66 | stderrSource.setEventHandler {
/host/spi-builder-workspace/.build/checkouts/swift-syntax/Sources/SwiftSyntax/SwiftcInvocation.swift:71:17: error: cannot find 'Process' in scope
69 | stderrSource.resume()
70 |
71 | let process = Process()
| `- error: cannot find 'Process' in scope
72 | process.launchPath = executable.path
73 | process.arguments = arguments
[3/25] Compiling SwiftSyntax SwiftcInvocation.swift
/host/spi-builder-workspace/.build/checkouts/swift-syntax/Sources/SwiftSyntax/SwiftcInvocation.swift:55:22: error: cannot find 'DispatchSource' in scope
53 | let stdoutPipe = Pipe()
54 | var stdoutData = Data()
55 | let stdoutSource = DispatchSource.makeReadSource(
| `- error: cannot find 'DispatchSource' in scope
56 | fileDescriptor: stdoutPipe.fileHandleForReading.fileDescriptor)
57 | stdoutSource.setEventHandler {
/host/spi-builder-workspace/.build/checkouts/swift-syntax/Sources/SwiftSyntax/SwiftcInvocation.swift:64:22: error: cannot find 'DispatchSource' in scope
62 | let stderrPipe = Pipe()
63 | var stderrData = Data()
64 | let stderrSource = DispatchSource.makeReadSource(
| `- error: cannot find 'DispatchSource' in scope
65 | fileDescriptor: stderrPipe.fileHandleForReading.fileDescriptor)
66 | stderrSource.setEventHandler {
/host/spi-builder-workspace/.build/checkouts/swift-syntax/Sources/SwiftSyntax/SwiftcInvocation.swift:71:17: error: cannot find 'Process' in scope
69 | stderrSource.resume()
70 |
71 | let process = Process()
| `- error: cannot find 'Process' in scope
72 | process.launchPath = executable.path
73 | process.arguments = arguments
[4/25] Compiling SwiftSyntax Syntax.swift
/host/spi-builder-workspace/.build/checkouts/swift-syntax/Sources/SwiftSyntax/SwiftcInvocation.swift:55:22: error: cannot find 'DispatchSource' in scope
53 | let stdoutPipe = Pipe()
54 | var stdoutData = Data()
55 | let stdoutSource = DispatchSource.makeReadSource(
| `- error: cannot find 'DispatchSource' in scope
56 | fileDescriptor: stdoutPipe.fileHandleForReading.fileDescriptor)
57 | stdoutSource.setEventHandler {
/host/spi-builder-workspace/.build/checkouts/swift-syntax/Sources/SwiftSyntax/SwiftcInvocation.swift:64:22: error: cannot find 'DispatchSource' in scope
62 | let stderrPipe = Pipe()
63 | var stderrData = Data()
64 | let stderrSource = DispatchSource.makeReadSource(
| `- error: cannot find 'DispatchSource' in scope
65 | fileDescriptor: stderrPipe.fileHandleForReading.fileDescriptor)
66 | stderrSource.setEventHandler {
/host/spi-builder-workspace/.build/checkouts/swift-syntax/Sources/SwiftSyntax/SwiftcInvocation.swift:71:17: error: cannot find 'Process' in scope
69 | stderrSource.resume()
70 |
71 | let process = Process()
| `- error: cannot find 'Process' in scope
72 | process.launchPath = executable.path
73 | process.arguments = arguments
[5/28] Compiling SwiftSyntax DiagnosticEngine.swift
[6/28] Compiling SwiftSyntax JSONDiagnosticConsumer.swift
[7/28] Compiling SwiftSyntax LazyNonThreadSafeCache.swift
[8/28] Compiling SwiftSyntax PrintingDiagnosticConsumer.swift
[9/28] Compiling SwiftSyntax AbsolutePosition.swift
[10/28] Compiling SwiftSyntax ByteTreeDeserialization.swift
[11/28] Compiling SwiftSyntax Diagnostic.swift
[12/28] Compiling SwiftSyntax DiagnosticConsumer.swift
[13/28] Emitting module SwiftSyntax
[14/28] Compiling SwiftSyntax SyntaxRewriter.swift
[15/28] Compiling SwiftSyntax TokenKind.swift
[16/28] Compiling SwiftSyntax Trivia.swift
[17/28] Compiling SwiftSyntax SyntaxBuilders.swift
[18/28] Compiling SwiftSyntax SyntaxClassifier.swift
[19/28] Compiling SwiftSyntax SyntaxCollections.swift
[20/28] Compiling SwiftSyntax RawSyntax.swift
[21/28] Compiling SwiftSyntax SourceLength.swift
[22/28] Compiling SwiftSyntax SourcePresence.swift
[23/28] Compiling SwiftSyntax SyntaxChildren.swift
[24/28] Compiling SwiftSyntax SyntaxData.swift
[25/28] Compiling SwiftSyntax WeakLookupTable.swift
[26/28] Compiling SwiftSyntax SyntaxFactory.swift
[27/28] Compiling SwiftSyntax SyntaxKind.swift
[28/28] Compiling SwiftSyntax SyntaxNodes.swift
BUILD FAILURE 6.1 wasm