Build Information
Successful build of Ifrit, reference main (c90ba4), with Swift 6.0 for Linux on 21 Mar 2026 00:52:08 UTC.
Swift 6 data race errors: 0
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4606859-1":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu 2>&1Build Log
========================================
RunAll
========================================
Builder version: 4.69.2
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/ukushu/Ifrit.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/ukushu/Ifrit
* branch main -> FETCH_HEAD
* [new branch] main -> origin/main
HEAD is now at c90ba42 Update license notice in README
Cloned https://github.com/ukushu/Ifrit.git
Revision (git rev-parse @):
c90ba42c492c2d7f741b49c2b44d3d5ccc2764ba
SUCCESS checkout https://github.com/ukushu/Ifrit.git at main
========================================
Build
========================================
Selected platform: linux
Swift version: 6.0
Building package at path: $PWD
https://github.com/ukushu/Ifrit.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-1":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu 2>&1
basic-6.0-latest: Pulling from swiftpackageindex/spi-images
Digest: sha256:ece747c77e94bae4930a5e18230daf779deb87c9e35c56d75daa73885bd2cdd2
Status: Image is up to date for registry.gitlab.com/swiftpackageindex/spi-images:basic-6.0-latest
warning: 'spi-builder-workspace': found 2 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
/host/spi-builder-workspace/Sources/Ifrit/Classes/Fuse/Fuse_Backend/Fuse_LICENSE
/host/spi-builder-workspace/Sources/Ifrit/Classes/FuzzyFind/FuzzyFind_LICENSE.md
Building for debugging...
[0/7] Write sources
[1/7] Write swift-version-24593BA9C3E375BF.txt
[3/28] Compiling Ifrit Fuzzy.swift
[4/28] Compiling Ifrit FuzzyResult.swift
[5/28] Compiling Ifrit FuzzyResultSegment.swift
[6/30] Compiling Ifrit Score.swift
[7/30] Compiling Ifrit Levenstein.swift
[8/30] Compiling Ifrit BitapPattern.swift
[9/30] Compiling Ifrit LevensteinBitap.swift
[10/30] Compiling Ifrit LevensteinText.swift
[11/30] Emitting module Ifrit
[12/30] Compiling Ifrit Fuse+String.swift
[13/30] Compiling Ifrit Fuse.Pattern.swift
[14/30] Compiling Ifrit Fuse.swift
[15/30] Compiling Ifrit FuzzyFind.swift
[16/30] Compiling Ifrit Alignment.swift
[17/30] Compiling Ifrit BitapFilter.swift
[18/30] Compiling Ifrit Fuse+ArrObjects.swift
/host/spi-builder-workspace/Sources/Ifrit/Classes/Fuse/Fuse+ArrStrings.swift:63:25: warning: mutation of captured var 'items' in concurrently-executing code; this is an error in the Swift 6 language mode
61 | if let result = self.search(pattern, in: item) {
62 | itemsLock.lock()
63 | items.append((chunkIndex * chunkSize + index, result.score, result.ranges))
| `- warning: mutation of captured var 'items' in concurrently-executing code; this is an error in the Swift 6 language mode
64 | itemsLock.unlock()
65 | }
/host/spi-builder-workspace/Sources/Ifrit/Classes/Fuse/Fuse+FuseProps.swift:122:25: warning: mutation of captured var 'collectionResult' in concurrently-executing code; this is an error in the Swift 6 language mode
120 |
121 | resultLock.lock()
122 | collectionResult.append((
| `- warning: mutation of captured var 'collectionResult' in concurrently-executing code; this is an error in the Swift 6 language mode
123 | index: chunkIndex * chunkSize + index,
124 | diffScore: self.objSortStrategy == .averageScore ? totalScore / Double(scores.count) : scores.min() ?? 1,
[19/30] Compiling Ifrit Fuse+ArrStrings.swift
/host/spi-builder-workspace/Sources/Ifrit/Classes/Fuse/Fuse+ArrStrings.swift:63:25: warning: mutation of captured var 'items' in concurrently-executing code; this is an error in the Swift 6 language mode
61 | if let result = self.search(pattern, in: item) {
62 | itemsLock.lock()
63 | items.append((chunkIndex * chunkSize + index, result.score, result.ranges))
| `- warning: mutation of captured var 'items' in concurrently-executing code; this is an error in the Swift 6 language mode
64 | itemsLock.unlock()
65 | }
/host/spi-builder-workspace/Sources/Ifrit/Classes/Fuse/Fuse+FuseProps.swift:122:25: warning: mutation of captured var 'collectionResult' in concurrently-executing code; this is an error in the Swift 6 language mode
120 |
121 | resultLock.lock()
122 | collectionResult.append((
| `- warning: mutation of captured var 'collectionResult' in concurrently-executing code; this is an error in the Swift 6 language mode
123 | index: chunkIndex * chunkSize + index,
124 | diffScore: self.objSortStrategy == .averageScore ? totalScore / Double(scores.count) : scores.min() ?? 1,
[20/30] Compiling Ifrit Fuse+FuseProps.swift
/host/spi-builder-workspace/Sources/Ifrit/Classes/Fuse/Fuse+ArrStrings.swift:63:25: warning: mutation of captured var 'items' in concurrently-executing code; this is an error in the Swift 6 language mode
61 | if let result = self.search(pattern, in: item) {
62 | itemsLock.lock()
63 | items.append((chunkIndex * chunkSize + index, result.score, result.ranges))
| `- warning: mutation of captured var 'items' in concurrently-executing code; this is an error in the Swift 6 language mode
64 | itemsLock.unlock()
65 | }
/host/spi-builder-workspace/Sources/Ifrit/Classes/Fuse/Fuse+FuseProps.swift:122:25: warning: mutation of captured var 'collectionResult' in concurrently-executing code; this is an error in the Swift 6 language mode
120 |
121 | resultLock.lock()
122 | collectionResult.append((
| `- warning: mutation of captured var 'collectionResult' in concurrently-executing code; this is an error in the Swift 6 language mode
123 | index: chunkIndex * chunkSize + index,
124 | diffScore: self.objSortStrategy == .averageScore ? totalScore / Double(scores.count) : scores.min() ?? 1,
[21/30] Compiling Ifrit FuseProp.swift
[22/30] Compiling Ifrit FuseUtilities.swift
[23/30] Compiling Ifrit Searchable.swift
[24/30] Compiling Ifrit Array+.swift
[25/30] Compiling Ifrit String+Fuse.swift
[26/31] Wrapping AST for Ifrit for debugging
[27/31] Write Objects.LinkFileList
[29/31] Archiving libIfritStatic.a
[30/31] Linking libIfrit.so
Build complete! (14.10s)
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "Ifrit",
"name" : "Ifrit",
"path" : "/host/spi-builder-workspace",
"platforms" : [
{
"name" : "ios",
"version" : "13.0"
},
{
"name" : "macos",
"version" : "10.15"
}
],
"products" : [
{
"name" : "Ifrit",
"targets" : [
"Ifrit"
],
"type" : {
"library" : [
"dynamic"
]
}
},
{
"name" : "IfritStatic",
"targets" : [
"Ifrit"
],
"type" : {
"library" : [
"static"
]
}
}
],
"swift_languages_versions" : [
"5"
],
"targets" : [
{
"c99name" : "IfritTests",
"module_type" : "SwiftTarget",
"name" : "IfritTests",
"path" : "Tests",
"sources" : [
"Ifrit_Documentation/IfritDoxCode_Fuse_Test.swift",
"Ifrit_Documentation/IfritDoxCode_Leve_Test.swift",
"Ifrit_FuseTests/Fuse_TestsBasic.swift",
"Ifrit_FuseTests/Fuse_TestsPerformance.swift",
"Ifrit_FuseTests/Fuse_TestsTokenize.swift",
"Ifrit_FuseTests/TestData.swift",
"Ifrit_FuzzyFind/FuzzyFind_Tests.swift",
"Ifrit_Levenstein/Levenstein_Tests.swift",
"Ifrit_Levenstein/Levenstein_TestsCore.swift"
],
"target_dependencies" : [
"Ifrit"
],
"type" : "test"
},
{
"c99name" : "Ifrit",
"module_type" : "SwiftTarget",
"name" : "Ifrit",
"path" : "Sources/Ifrit",
"product_memberships" : [
"Ifrit",
"IfritStatic"
],
"sources" : [
"Classes/Fuse/Fuse+ArrObjects.swift",
"Classes/Fuse/Fuse+ArrStrings.swift",
"Classes/Fuse/Fuse+FuseProps.swift",
"Classes/Fuse/Fuse+String.swift",
"Classes/Fuse/Fuse_Backend/Fuse.Pattern.swift",
"Classes/Fuse/Fuse_Backend/Fuse.swift",
"Classes/Fuse/Fuse_Backend/FuseProp.swift",
"Classes/Fuse/Fuse_Backend/FuseUtilities.swift",
"Classes/Fuse/Fuse_Backend/Searchable.swift",
"Classes/FuzzyFind/FuzzyFind.swift",
"Classes/FuzzyFind/FuzzyFind_Backend/Alignment.swift",
"Classes/FuzzyFind/FuzzyFind_Backend/BitapFilter.swift",
"Classes/FuzzyFind/FuzzyFind_Backend/Fuzzy.swift",
"Classes/FuzzyFind/FuzzyFind_Backend/FuzzyResult.swift",
"Classes/FuzzyFind/FuzzyFind_Backend/FuzzyResultSegment.swift",
"Classes/FuzzyFind/FuzzyFind_Backend/Score.swift",
"Classes/Levenstein/Levenstein.swift",
"Classes/Levenstein/LevensteinBitap/BitapPattern.swift",
"Classes/Levenstein/LevensteinBitap/LevensteinBitap.swift",
"Classes/Levenstein/LevensteinText/LevensteinText.swift",
"Exts/Array+.swift",
"Exts/String+Fuse.swift"
],
"type" : "library"
}
],
"tools_version" : "5.9"
}
basic-6.0-latest: Pulling from swiftpackageindex/spi-images
Digest: sha256:ece747c77e94bae4930a5e18230daf779deb87c9e35c56d75daa73885bd2cdd2
Status: Image is up to date for registry.gitlab.com/swiftpackageindex/spi-images:basic-6.0-latest
Done.