Build Information
Successful build of ModalView, reference void (0fe06a), with Swift 6.1 for Linux on 25 Jan 2026 10:49:55 UTC.
Swift 6 data race errors: 1
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/finestructure/spi-images:basic-6.1-latest swift build --triple x86_64-unknown-linux-gnu -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.68.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/diniska/modal-view.git
Reference: void
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/diniska/modal-view
* branch void -> FETCH_HEAD
* [new branch] void -> origin/void
HEAD is now at 0fe06a5 `fullScreenCover` style added for iOS 14+
Cloned https://github.com/diniska/modal-view.git
Revision (git rev-parse @):
0fe06a50eafd1055395a2fc2e77d0c802aca937c
SUCCESS checkout https://github.com/diniska/modal-view.git at void
========================================
Build
========================================
Selected platform: linux
Swift version: 6.1
Building package at path: $PWD
https://github.com/diniska/modal-view.git
https://github.com/diniska/modal-view.git
WARNING: environment variable SUPPRESS_SWIFT_6_FLAGS is not set
{
"dependencies" : [
],
"manifest_display_name" : "ModalView",
"name" : "ModalView",
"path" : "/host/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "10.15"
},
{
"name" : "ios",
"version" : "9.0"
},
{
"name" : "watchos",
"version" : "6.0"
},
{
"name" : "tvos",
"version" : "13.0"
}
],
"products" : [
{
"name" : "ModalView",
"targets" : [
"ModalView"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "ModalViewTests",
"module_type" : "SwiftTarget",
"name" : "ModalViewTests",
"path" : "Tests/ModalViewTests",
"sources" : [
"ModalViewTests.swift",
"SnapshotTests.swift",
"XCTestManifests.swift"
],
"target_dependencies" : [
"ModalView"
],
"type" : "test"
},
{
"c99name" : "ModalView",
"module_type" : "SwiftTarget",
"name" : "ModalView",
"path" : "Sources/ModalView",
"product_memberships" : [
"ModalView"
],
"sources" : [
"ModalView.swift",
"ModalViewPresentationStyle.swift"
],
"type" : "library"
}
],
"tools_version" : "5.1"
}
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/finestructure/spi-images:basic-6.1-latest swift build --triple x86_64-unknown-linux-gnu -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
basic-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:5a651828b24304580408903d9e8c129215b04dc69edd6058f3847d01e034cce9
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.1-latest
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-24593BA9C3E375BF.txt
[3/5] Emitting module ModalView
/host/spi-builder-workspace/Sources/ModalView/ModalViewPresentationStyle.swift:17:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ModalViewPresentationStyle' may have shared mutable state; this is an error in the Swift 6 language mode
7 | //
8 |
9 | public enum ModalViewPresentationStyle {
| `- note: consider making enum 'ModalViewPresentationStyle' conform to the 'Sendable' protocol
10 | /// Specify to use `sheet` SwiftUI presentation method
11 | case sheet
:
15 | case fullScreenCover
16 |
17 | public static let `default`: ModalViewPresentationStyle = .sheet
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ModalViewPresentationStyle' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 | }
19 |
[4/5] Compiling ModalView ModalViewPresentationStyle.swift
/host/spi-builder-workspace/Sources/ModalView/ModalViewPresentationStyle.swift:17:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ModalViewPresentationStyle' may have shared mutable state; this is an error in the Swift 6 language mode
7 | //
8 |
9 | public enum ModalViewPresentationStyle {
| `- note: consider making enum 'ModalViewPresentationStyle' conform to the 'Sendable' protocol
10 | /// Specify to use `sheet` SwiftUI presentation method
11 | case sheet
:
15 | case fullScreenCover
16 |
17 | public static let `default`: ModalViewPresentationStyle = .sheet
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ModalViewPresentationStyle' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 | }
19 |
[5/5] Compiling ModalView ModalView.swift
Build complete! (3.93s)
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "ModalView",
"name" : "ModalView",
"path" : "/host/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "10.15"
},
{
"name" : "ios",
"version" : "9.0"
},
{
"name" : "watchos",
"version" : "6.0"
},
{
"name" : "tvos",
"version" : "13.0"
}
],
"products" : [
{
"name" : "ModalView",
"targets" : [
"ModalView"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "ModalViewTests",
"module_type" : "SwiftTarget",
"name" : "ModalViewTests",
"path" : "Tests/ModalViewTests",
"sources" : [
"ModalViewTests.swift",
"SnapshotTests.swift",
"XCTestManifests.swift"
],
"target_dependencies" : [
"ModalView"
],
"type" : "test"
},
{
"c99name" : "ModalView",
"module_type" : "SwiftTarget",
"name" : "ModalView",
"path" : "Sources/ModalView",
"product_memberships" : [
"ModalView"
],
"sources" : [
"ModalView.swift",
"ModalViewPresentationStyle.swift"
],
"type" : "library"
}
],
"tools_version" : "5.1"
}
basic-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:5a651828b24304580408903d9e8c129215b04dc69edd6058f3847d01e034cce9
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.1-latest
Done.