The Swift Package Index logo.Swift Package Index

Build Information

Successful build of ModalView, reference 2.0.0 (0fe06a), with Swift 6.1 for Android on 25 Jan 2026 10:49:34 UTC.

Swift 6 data race errors: 1

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-2":/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: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

Build Log

========================================
RunAll
========================================
Builder version: 4.68.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/diniska/modal-view.git
Reference: 2.0.0
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
 * tag               2.0.0      -> FETCH_HEAD
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 2.0.0
========================================
Build
========================================
Selected platform:         android
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-4609320-2":/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: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:59d1b5e7d2f3065c4a6b5e045771922b1e51742b0d69504dc6de4bec6728e3a4
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:android-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 ModalView.swift
[5/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 |
Build complete! (5.00s)
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"
}
android-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:59d1b5e7d2f3065c4a6b5e045771922b1e51742b0d69504dc6de4bec6728e3a4
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:android-6.1-latest
Done.