Build Information
Successful build of Reldus, reference ReImp (a073d6), with Swift 6.1 for Android on 29 May 2025 22:13:16 UTC.
Swift 6 data race errors: 0
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4609320-2":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:android-6.1-latest swift build --swift-sdk aarch64-unknown-linux-android24 -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>&1Build Log
========================================
RunAll
========================================
Builder version: 4.63.1
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/Intron014/Reldus.git
Reference: ReImp
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/Intron014/Reldus
* branch ReImp -> FETCH_HEAD
* [new branch] ReImp -> origin/ReImp
HEAD is now at a073d68 feat: range of perft test can be done at once
Cloned https://github.com/Intron014/Reldus.git
Revision (git rev-parse @):
a073d68b23b11528afd21428218fc1c5cb9d44c6
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/Intron014/Reldus.git at ReImp
========================================
Build
========================================
Selected platform: android
Swift version: 6.1
Building package at path: $PWD
https://github.com/Intron014/Reldus.git
https://github.com/Intron014/Reldus.git
WARNING: environment variable SUPPRESS_SWIFT_6_FLAGS is not set
{
"dependencies" : [
],
"manifest_display_name" : "Reldus",
"name" : "Reldus",
"path" : "/host/spi-builder-workspace",
"platforms" : [
],
"products" : [
{
"name" : "Reldus",
"targets" : [
"Reldus"
],
"type" : {
"executable" : null
}
},
{
"name" : "ReldusCore",
"targets" : [
"ReldusCore"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "ReldusCore",
"module_type" : "SwiftTarget",
"name" : "ReldusCore",
"path" : "Sources/ReldusCore",
"product_memberships" : [
"Reldus",
"ReldusCore"
],
"sources" : [
"Bitboard.swift",
"CastlingSlide.swift",
"ChessBoard.swift",
"ChessPiece.swift",
"Color.swift",
"Evaluator.swift",
"Move.swift",
"MoveGenerator.swift",
"MoveValidator.swift",
"Search.swift",
"Square.swift",
"UCI.swift"
],
"type" : "library"
},
{
"c99name" : "Reldus",
"module_type" : "SwiftTarget",
"name" : "Reldus",
"path" : "Sources/Reldus",
"product_memberships" : [
"Reldus"
],
"sources" : [
"main.swift"
],
"target_dependencies" : [
"ReldusCore"
],
"type" : "executable"
}
],
"tools_version" : "5.8"
}
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-2":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:android-6.1-latest swift build --swift-sdk aarch64-unknown-linux-android24 -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
android-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:fe1962677657b2408c217cb5cceb3c09bc1d91486e360cebbc6eee461a5945d8
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:android-6.1-latest
Building for debugging...
[0/7] Write sources
[2/7] Write swift-version-24593BA9C3E375BF.txt
[4/19] Compiling ReldusCore Square.swift
[5/20] Compiling ReldusCore UCI.swift
/host/spi-builder-workspace/Sources/ReldusCore/UCI.swift:44:12: warning: reference to var 'stdout' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
42 | }
43 |
44 | fflush(stdout)
| `- warning: reference to var 'stdout' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
45 | }
46 |
/root/.swiftpm/swift-sdks/swift-6.1-RELEASE-android-24-0.1.artifactbundle/swift-6.1-release-android-24-sdk/android-27c-sysroot/usr/include/stdio.h:63:23: note: var declared here
61 | #if __ANDROID_API__ >= 23
62 | extern FILE* _Nonnull stdin __INTRODUCED_IN(23);
63 | extern FILE* _Nonnull stdout __INTRODUCED_IN(23);
| `- note: var declared here
64 | extern FILE* _Nonnull stderr __INTRODUCED_IN(23);
65 |
[6/20] Compiling ReldusCore Search.swift
[7/20] Compiling ReldusCore Move.swift
[8/20] Compiling ReldusCore MoveGenerator.swift
[9/20] Compiling ReldusCore MoveValidator.swift
[10/20] Compiling ReldusCore Color.swift
[11/20] Compiling ReldusCore Evaluator.swift
[12/20] Compiling ReldusCore ChessBoard.swift
[13/20] Compiling ReldusCore ChessPiece.swift
[14/20] Emitting module ReldusCore
[15/20] Compiling ReldusCore Bitboard.swift
[16/20] Compiling ReldusCore CastlingSlide.swift
[17/21] Wrapping AST for ReldusCore for debugging
[19/23] Emitting module Reldus
[20/23] Compiling Reldus main.swift
[21/24] Wrapping AST for Reldus for debugging
[22/24] Write Objects.LinkFileList
[23/24] Linking Reldus
Build complete! (16.32s)
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "Reldus",
"name" : "Reldus",
"path" : "/host/spi-builder-workspace",
"platforms" : [
],
"products" : [
{
"name" : "Reldus",
"targets" : [
"Reldus"
],
"type" : {
"executable" : null
}
},
{
"name" : "ReldusCore",
"targets" : [
"ReldusCore"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "ReldusCore",
"module_type" : "SwiftTarget",
"name" : "ReldusCore",
"path" : "Sources/ReldusCore",
"product_memberships" : [
"Reldus",
"ReldusCore"
],
"sources" : [
"Bitboard.swift",
"CastlingSlide.swift",
"ChessBoard.swift",
"ChessPiece.swift",
"Color.swift",
"Evaluator.swift",
"Move.swift",
"MoveGenerator.swift",
"MoveValidator.swift",
"Search.swift",
"Square.swift",
"UCI.swift"
],
"type" : "library"
},
{
"c99name" : "Reldus",
"module_type" : "SwiftTarget",
"name" : "Reldus",
"path" : "Sources/Reldus",
"product_memberships" : [
"Reldus"
],
"sources" : [
"main.swift"
],
"target_dependencies" : [
"ReldusCore"
],
"type" : "executable"
}
],
"tools_version" : "5.8"
}
android-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:fe1962677657b2408c217cb5cceb3c09bc1d91486e360cebbc6eee461a5945d8
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:android-6.1-latest
Done.