Build Information
Successful build of MarkdownChildrenKit, reference develop (4b8c36
), with Swift 6.0 for Linux on 28 Nov 2024 05:41:21 UTC.
Swift 6 data race errors: 7
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.0-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
Build Log
========================================
RunAll
========================================
Builder version: 4.58.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/ptrkstr/MarkdownChildrenKit.git
Reference: develop
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/ptrkstr/MarkdownChildrenKit
* branch develop -> FETCH_HEAD
* [new branch] develop -> origin/develop
HEAD is now at 4b8c36a Create FUNDING.yml
Cloned https://github.com/ptrkstr/MarkdownChildrenKit.git
Revision (git rev-parse @):
4b8c36a4410c8fcc97bda95f5c5b0f1746af9592
SUCCESS checkout https://github.com/ptrkstr/MarkdownChildrenKit.git at develop
========================================
Build
========================================
Selected platform: linux
Swift version: 6.0
Building package at path: $PWD
https://github.com/ptrkstr/MarkdownChildrenKit.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.0-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.0-latest: Pulling from finestructure/spi-images
Digest: sha256:47d26c99ca4f1ac0a332c85fd5b13ff4390e72115219984a57a68fe9d1063a05
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.0-latest
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-24593BA9C3E375BF.txt
[3/16] Compiling MarkdownChildrenKit StringSaver.swift
[4/17] Compiling MarkdownChildrenKit ListItem.swift
[5/17] Compiling MarkdownChildrenKit ListItemDirectory.swift
[6/17] Compiling MarkdownChildrenKit Markdown.swift
/host/spi-builder-workspace/Sources/MarkdownChildrenKit/Models/MarkdownChildrenError.swift:20:10: warning: associated value 'unableToSearchInDirectory' of 'Sendable'-conforming enum 'MarkdownChildrenError' has non-sendable type 'EquatableURL'; this is an error in the Swift 6 language mode
5 | /// We want to make use of enum associated value equality checking
6 | /// so will use our own URL type.
7 | public struct EquatableURL: Equatable, CustomStringConvertible {
| `- note: consider making struct 'EquatableURL' conform to the 'Sendable' protocol
8 | public let url: URL
9 |
:
18 |
19 | enum MarkdownChildrenError: Error, CustomStringConvertible, Equatable {
20 | case unableToSearchInDirectory(EquatableURL)
| `- warning: associated value 'unableToSearchInDirectory' of 'Sendable'-conforming enum 'MarkdownChildrenError' has non-sendable type 'EquatableURL'; this is an error in the Swift 6 language mode
21 | case unableToReadMarkdownFile(EquatableURL)
22 | case directoryIsEmpty(EquatableURL)
/host/spi-builder-workspace/Sources/MarkdownChildrenKit/Models/MarkdownChildrenError.swift:21:10: warning: associated value 'unableToReadMarkdownFile' of 'Sendable'-conforming enum 'MarkdownChildrenError' has non-sendable type 'EquatableURL'; this is an error in the Swift 6 language mode
5 | /// We want to make use of enum associated value equality checking
6 | /// so will use our own URL type.
7 | public struct EquatableURL: Equatable, CustomStringConvertible {
| `- note: consider making struct 'EquatableURL' conform to the 'Sendable' protocol
8 | public let url: URL
9 |
:
19 | enum MarkdownChildrenError: Error, CustomStringConvertible, Equatable {
20 | case unableToSearchInDirectory(EquatableURL)
21 | case unableToReadMarkdownFile(EquatableURL)
| `- warning: associated value 'unableToReadMarkdownFile' of 'Sendable'-conforming enum 'MarkdownChildrenError' has non-sendable type 'EquatableURL'; this is an error in the Swift 6 language mode
22 | case directoryIsEmpty(EquatableURL)
23 | case missingH1WhenExpected(EquatableURL)
/host/spi-builder-workspace/Sources/MarkdownChildrenKit/Models/MarkdownChildrenError.swift:22:10: warning: associated value 'directoryIsEmpty' of 'Sendable'-conforming enum 'MarkdownChildrenError' has non-sendable type 'EquatableURL'; this is an error in the Swift 6 language mode
5 | /// We want to make use of enum associated value equality checking
6 | /// so will use our own URL type.
7 | public struct EquatableURL: Equatable, CustomStringConvertible {
| `- note: consider making struct 'EquatableURL' conform to the 'Sendable' protocol
8 | public let url: URL
9 |
:
20 | case unableToSearchInDirectory(EquatableURL)
21 | case unableToReadMarkdownFile(EquatableURL)
22 | case directoryIsEmpty(EquatableURL)
| `- warning: associated value 'directoryIsEmpty' of 'Sendable'-conforming enum 'MarkdownChildrenError' has non-sendable type 'EquatableURL'; this is an error in the Swift 6 language mode
23 | case missingH1WhenExpected(EquatableURL)
24 | case missingTagInMarkdown(tag: String, EquatableURL)
/host/spi-builder-workspace/Sources/MarkdownChildrenKit/Models/MarkdownChildrenError.swift:23:10: warning: associated value 'missingH1WhenExpected' of 'Sendable'-conforming enum 'MarkdownChildrenError' has non-sendable type 'EquatableURL'; this is an error in the Swift 6 language mode
5 | /// We want to make use of enum associated value equality checking
6 | /// so will use our own URL type.
7 | public struct EquatableURL: Equatable, CustomStringConvertible {
| `- note: consider making struct 'EquatableURL' conform to the 'Sendable' protocol
8 | public let url: URL
9 |
:
21 | case unableToReadMarkdownFile(EquatableURL)
22 | case directoryIsEmpty(EquatableURL)
23 | case missingH1WhenExpected(EquatableURL)
| `- warning: associated value 'missingH1WhenExpected' of 'Sendable'-conforming enum 'MarkdownChildrenError' has non-sendable type 'EquatableURL'; this is an error in the Swift 6 language mode
24 | case missingTagInMarkdown(tag: String, EquatableURL)
25 | case noFileExists(EquatableURL)
/host/spi-builder-workspace/Sources/MarkdownChildrenKit/Models/MarkdownChildrenError.swift:24:10: warning: associated value 'missingTagInMarkdown(tag:_:)' of 'Sendable'-conforming enum 'MarkdownChildrenError' has non-sendable type 'EquatableURL'; this is an error in the Swift 6 language mode
5 | /// We want to make use of enum associated value equality checking
6 | /// so will use our own URL type.
7 | public struct EquatableURL: Equatable, CustomStringConvertible {
| `- note: consider making struct 'EquatableURL' conform to the 'Sendable' protocol
8 | public let url: URL
9 |
:
22 | case directoryIsEmpty(EquatableURL)
23 | case missingH1WhenExpected(EquatableURL)
24 | case missingTagInMarkdown(tag: String, EquatableURL)
| `- warning: associated value 'missingTagInMarkdown(tag:_:)' of 'Sendable'-conforming enum 'MarkdownChildrenError' has non-sendable type 'EquatableURL'; this is an error in the Swift 6 language mode
25 | case noFileExists(EquatableURL)
26 | case directorySpecifiedInsteadOfFile(EquatableURL)
/host/spi-builder-workspace/Sources/MarkdownChildrenKit/Models/MarkdownChildrenError.swift:25:10: warning: associated value 'noFileExists' of 'Sendable'-conforming enum 'MarkdownChildrenError' has non-sendable type 'EquatableURL'; this is an error in the Swift 6 language mode
5 | /// We want to make use of enum associated value equality checking
6 | /// so will use our own URL type.
7 | public struct EquatableURL: Equatable, CustomStringConvertible {
| `- note: consider making struct 'EquatableURL' conform to the 'Sendable' protocol
8 | public let url: URL
9 |
:
23 | case missingH1WhenExpected(EquatableURL)
24 | case missingTagInMarkdown(tag: String, EquatableURL)
25 | case noFileExists(EquatableURL)
| `- warning: associated value 'noFileExists' of 'Sendable'-conforming enum 'MarkdownChildrenError' has non-sendable type 'EquatableURL'; this is an error in the Swift 6 language mode
26 | case directorySpecifiedInsteadOfFile(EquatableURL)
27 |
/host/spi-builder-workspace/Sources/MarkdownChildrenKit/Models/MarkdownChildrenError.swift:26:10: warning: associated value 'directorySpecifiedInsteadOfFile' of 'Sendable'-conforming enum 'MarkdownChildrenError' has non-sendable type 'EquatableURL'; this is an error in the Swift 6 language mode
5 | /// We want to make use of enum associated value equality checking
6 | /// so will use our own URL type.
7 | public struct EquatableURL: Equatable, CustomStringConvertible {
| `- note: consider making struct 'EquatableURL' conform to the 'Sendable' protocol
8 | public let url: URL
9 |
:
24 | case missingTagInMarkdown(tag: String, EquatableURL)
25 | case noFileExists(EquatableURL)
26 | case directorySpecifiedInsteadOfFile(EquatableURL)
| `- warning: associated value 'directorySpecifiedInsteadOfFile' of 'Sendable'-conforming enum 'MarkdownChildrenError' has non-sendable type 'EquatableURL'; this is an error in the Swift 6 language mode
27 |
28 | var description: String {
[7/17] Compiling MarkdownChildrenKit MarkdownChildrenError.swift
/host/spi-builder-workspace/Sources/MarkdownChildrenKit/Models/MarkdownChildrenError.swift:20:10: warning: associated value 'unableToSearchInDirectory' of 'Sendable'-conforming enum 'MarkdownChildrenError' has non-sendable type 'EquatableURL'; this is an error in the Swift 6 language mode
5 | /// We want to make use of enum associated value equality checking
6 | /// so will use our own URL type.
7 | public struct EquatableURL: Equatable, CustomStringConvertible {
| `- note: consider making struct 'EquatableURL' conform to the 'Sendable' protocol
8 | public let url: URL
9 |
:
18 |
19 | enum MarkdownChildrenError: Error, CustomStringConvertible, Equatable {
20 | case unableToSearchInDirectory(EquatableURL)
| `- warning: associated value 'unableToSearchInDirectory' of 'Sendable'-conforming enum 'MarkdownChildrenError' has non-sendable type 'EquatableURL'; this is an error in the Swift 6 language mode
21 | case unableToReadMarkdownFile(EquatableURL)
22 | case directoryIsEmpty(EquatableURL)
/host/spi-builder-workspace/Sources/MarkdownChildrenKit/Models/MarkdownChildrenError.swift:21:10: warning: associated value 'unableToReadMarkdownFile' of 'Sendable'-conforming enum 'MarkdownChildrenError' has non-sendable type 'EquatableURL'; this is an error in the Swift 6 language mode
5 | /// We want to make use of enum associated value equality checking
6 | /// so will use our own URL type.
7 | public struct EquatableURL: Equatable, CustomStringConvertible {
| `- note: consider making struct 'EquatableURL' conform to the 'Sendable' protocol
8 | public let url: URL
9 |
:
19 | enum MarkdownChildrenError: Error, CustomStringConvertible, Equatable {
20 | case unableToSearchInDirectory(EquatableURL)
21 | case unableToReadMarkdownFile(EquatableURL)
| `- warning: associated value 'unableToReadMarkdownFile' of 'Sendable'-conforming enum 'MarkdownChildrenError' has non-sendable type 'EquatableURL'; this is an error in the Swift 6 language mode
22 | case directoryIsEmpty(EquatableURL)
23 | case missingH1WhenExpected(EquatableURL)
/host/spi-builder-workspace/Sources/MarkdownChildrenKit/Models/MarkdownChildrenError.swift:22:10: warning: associated value 'directoryIsEmpty' of 'Sendable'-conforming enum 'MarkdownChildrenError' has non-sendable type 'EquatableURL'; this is an error in the Swift 6 language mode
5 | /// We want to make use of enum associated value equality checking
6 | /// so will use our own URL type.
7 | public struct EquatableURL: Equatable, CustomStringConvertible {
| `- note: consider making struct 'EquatableURL' conform to the 'Sendable' protocol
8 | public let url: URL
9 |
:
20 | case unableToSearchInDirectory(EquatableURL)
21 | case unableToReadMarkdownFile(EquatableURL)
22 | case directoryIsEmpty(EquatableURL)
| `- warning: associated value 'directoryIsEmpty' of 'Sendable'-conforming enum 'MarkdownChildrenError' has non-sendable type 'EquatableURL'; this is an error in the Swift 6 language mode
23 | case missingH1WhenExpected(EquatableURL)
24 | case missingTagInMarkdown(tag: String, EquatableURL)
/host/spi-builder-workspace/Sources/MarkdownChildrenKit/Models/MarkdownChildrenError.swift:23:10: warning: associated value 'missingH1WhenExpected' of 'Sendable'-conforming enum 'MarkdownChildrenError' has non-sendable type 'EquatableURL'; this is an error in the Swift 6 language mode
5 | /// We want to make use of enum associated value equality checking
6 | /// so will use our own URL type.
7 | public struct EquatableURL: Equatable, CustomStringConvertible {
| `- note: consider making struct 'EquatableURL' conform to the 'Sendable' protocol
8 | public let url: URL
9 |
:
21 | case unableToReadMarkdownFile(EquatableURL)
22 | case directoryIsEmpty(EquatableURL)
23 | case missingH1WhenExpected(EquatableURL)
| `- warning: associated value 'missingH1WhenExpected' of 'Sendable'-conforming enum 'MarkdownChildrenError' has non-sendable type 'EquatableURL'; this is an error in the Swift 6 language mode
24 | case missingTagInMarkdown(tag: String, EquatableURL)
25 | case noFileExists(EquatableURL)
/host/spi-builder-workspace/Sources/MarkdownChildrenKit/Models/MarkdownChildrenError.swift:24:10: warning: associated value 'missingTagInMarkdown(tag:_:)' of 'Sendable'-conforming enum 'MarkdownChildrenError' has non-sendable type 'EquatableURL'; this is an error in the Swift 6 language mode
5 | /// We want to make use of enum associated value equality checking
6 | /// so will use our own URL type.
7 | public struct EquatableURL: Equatable, CustomStringConvertible {
| `- note: consider making struct 'EquatableURL' conform to the 'Sendable' protocol
8 | public let url: URL
9 |
:
22 | case directoryIsEmpty(EquatableURL)
23 | case missingH1WhenExpected(EquatableURL)
24 | case missingTagInMarkdown(tag: String, EquatableURL)
| `- warning: associated value 'missingTagInMarkdown(tag:_:)' of 'Sendable'-conforming enum 'MarkdownChildrenError' has non-sendable type 'EquatableURL'; this is an error in the Swift 6 language mode
25 | case noFileExists(EquatableURL)
26 | case directorySpecifiedInsteadOfFile(EquatableURL)
/host/spi-builder-workspace/Sources/MarkdownChildrenKit/Models/MarkdownChildrenError.swift:25:10: warning: associated value 'noFileExists' of 'Sendable'-conforming enum 'MarkdownChildrenError' has non-sendable type 'EquatableURL'; this is an error in the Swift 6 language mode
5 | /// We want to make use of enum associated value equality checking
6 | /// so will use our own URL type.
7 | public struct EquatableURL: Equatable, CustomStringConvertible {
| `- note: consider making struct 'EquatableURL' conform to the 'Sendable' protocol
8 | public let url: URL
9 |
:
23 | case missingH1WhenExpected(EquatableURL)
24 | case missingTagInMarkdown(tag: String, EquatableURL)
25 | case noFileExists(EquatableURL)
| `- warning: associated value 'noFileExists' of 'Sendable'-conforming enum 'MarkdownChildrenError' has non-sendable type 'EquatableURL'; this is an error in the Swift 6 language mode
26 | case directorySpecifiedInsteadOfFile(EquatableURL)
27 |
/host/spi-builder-workspace/Sources/MarkdownChildrenKit/Models/MarkdownChildrenError.swift:26:10: warning: associated value 'directorySpecifiedInsteadOfFile' of 'Sendable'-conforming enum 'MarkdownChildrenError' has non-sendable type 'EquatableURL'; this is an error in the Swift 6 language mode
5 | /// We want to make use of enum associated value equality checking
6 | /// so will use our own URL type.
7 | public struct EquatableURL: Equatable, CustomStringConvertible {
| `- note: consider making struct 'EquatableURL' conform to the 'Sendable' protocol
8 | public let url: URL
9 |
:
24 | case missingTagInMarkdown(tag: String, EquatableURL)
25 | case noFileExists(EquatableURL)
26 | case directorySpecifiedInsteadOfFile(EquatableURL)
| `- warning: associated value 'directorySpecifiedInsteadOfFile' of 'Sendable'-conforming enum 'MarkdownChildrenError' has non-sendable type 'EquatableURL'; this is an error in the Swift 6 language mode
27 |
28 | var description: String {
[8/17] Compiling MarkdownChildrenKit Renderer.swift
[9/17] Compiling MarkdownChildrenKit StringProtocol+Extensions.swift
[10/17] Compiling MarkdownChildrenKit MarkdownChildren.swift
[11/17] Compiling MarkdownChildrenKit URL+Extensions.swift
[12/17] Compiling MarkdownChildrenKit Array+Extensions.swift
[13/17] Compiling MarkdownChildrenKit Configuration.swift
[14/17] Compiling MarkdownChildrenKit List.swift
[15/17] Emitting module MarkdownChildrenKit
/host/spi-builder-workspace/Sources/MarkdownChildrenKit/Models/MarkdownChildrenError.swift:20:10: warning: associated value 'unableToSearchInDirectory' of 'Sendable'-conforming enum 'MarkdownChildrenError' has non-sendable type 'EquatableURL'; this is an error in the Swift 6 language mode
5 | /// We want to make use of enum associated value equality checking
6 | /// so will use our own URL type.
7 | public struct EquatableURL: Equatable, CustomStringConvertible {
| `- note: consider making struct 'EquatableURL' conform to the 'Sendable' protocol
8 | public let url: URL
9 |
:
18 |
19 | enum MarkdownChildrenError: Error, CustomStringConvertible, Equatable {
20 | case unableToSearchInDirectory(EquatableURL)
| `- warning: associated value 'unableToSearchInDirectory' of 'Sendable'-conforming enum 'MarkdownChildrenError' has non-sendable type 'EquatableURL'; this is an error in the Swift 6 language mode
21 | case unableToReadMarkdownFile(EquatableURL)
22 | case directoryIsEmpty(EquatableURL)
/host/spi-builder-workspace/Sources/MarkdownChildrenKit/Models/MarkdownChildrenError.swift:21:10: warning: associated value 'unableToReadMarkdownFile' of 'Sendable'-conforming enum 'MarkdownChildrenError' has non-sendable type 'EquatableURL'; this is an error in the Swift 6 language mode
5 | /// We want to make use of enum associated value equality checking
6 | /// so will use our own URL type.
7 | public struct EquatableURL: Equatable, CustomStringConvertible {
| `- note: consider making struct 'EquatableURL' conform to the 'Sendable' protocol
8 | public let url: URL
9 |
:
19 | enum MarkdownChildrenError: Error, CustomStringConvertible, Equatable {
20 | case unableToSearchInDirectory(EquatableURL)
21 | case unableToReadMarkdownFile(EquatableURL)
| `- warning: associated value 'unableToReadMarkdownFile' of 'Sendable'-conforming enum 'MarkdownChildrenError' has non-sendable type 'EquatableURL'; this is an error in the Swift 6 language mode
22 | case directoryIsEmpty(EquatableURL)
23 | case missingH1WhenExpected(EquatableURL)
/host/spi-builder-workspace/Sources/MarkdownChildrenKit/Models/MarkdownChildrenError.swift:22:10: warning: associated value 'directoryIsEmpty' of 'Sendable'-conforming enum 'MarkdownChildrenError' has non-sendable type 'EquatableURL'; this is an error in the Swift 6 language mode
5 | /// We want to make use of enum associated value equality checking
6 | /// so will use our own URL type.
7 | public struct EquatableURL: Equatable, CustomStringConvertible {
| `- note: consider making struct 'EquatableURL' conform to the 'Sendable' protocol
8 | public let url: URL
9 |
:
20 | case unableToSearchInDirectory(EquatableURL)
21 | case unableToReadMarkdownFile(EquatableURL)
22 | case directoryIsEmpty(EquatableURL)
| `- warning: associated value 'directoryIsEmpty' of 'Sendable'-conforming enum 'MarkdownChildrenError' has non-sendable type 'EquatableURL'; this is an error in the Swift 6 language mode
23 | case missingH1WhenExpected(EquatableURL)
24 | case missingTagInMarkdown(tag: String, EquatableURL)
/host/spi-builder-workspace/Sources/MarkdownChildrenKit/Models/MarkdownChildrenError.swift:23:10: warning: associated value 'missingH1WhenExpected' of 'Sendable'-conforming enum 'MarkdownChildrenError' has non-sendable type 'EquatableURL'; this is an error in the Swift 6 language mode
5 | /// We want to make use of enum associated value equality checking
6 | /// so will use our own URL type.
7 | public struct EquatableURL: Equatable, CustomStringConvertible {
| `- note: consider making struct 'EquatableURL' conform to the 'Sendable' protocol
8 | public let url: URL
9 |
:
21 | case unableToReadMarkdownFile(EquatableURL)
22 | case directoryIsEmpty(EquatableURL)
23 | case missingH1WhenExpected(EquatableURL)
| `- warning: associated value 'missingH1WhenExpected' of 'Sendable'-conforming enum 'MarkdownChildrenError' has non-sendable type 'EquatableURL'; this is an error in the Swift 6 language mode
24 | case missingTagInMarkdown(tag: String, EquatableURL)
25 | case noFileExists(EquatableURL)
/host/spi-builder-workspace/Sources/MarkdownChildrenKit/Models/MarkdownChildrenError.swift:24:10: warning: associated value 'missingTagInMarkdown(tag:_:)' of 'Sendable'-conforming enum 'MarkdownChildrenError' has non-sendable type 'EquatableURL'; this is an error in the Swift 6 language mode
5 | /// We want to make use of enum associated value equality checking
6 | /// so will use our own URL type.
7 | public struct EquatableURL: Equatable, CustomStringConvertible {
| `- note: consider making struct 'EquatableURL' conform to the 'Sendable' protocol
8 | public let url: URL
9 |
:
22 | case directoryIsEmpty(EquatableURL)
23 | case missingH1WhenExpected(EquatableURL)
24 | case missingTagInMarkdown(tag: String, EquatableURL)
| `- warning: associated value 'missingTagInMarkdown(tag:_:)' of 'Sendable'-conforming enum 'MarkdownChildrenError' has non-sendable type 'EquatableURL'; this is an error in the Swift 6 language mode
25 | case noFileExists(EquatableURL)
26 | case directorySpecifiedInsteadOfFile(EquatableURL)
/host/spi-builder-workspace/Sources/MarkdownChildrenKit/Models/MarkdownChildrenError.swift:25:10: warning: associated value 'noFileExists' of 'Sendable'-conforming enum 'MarkdownChildrenError' has non-sendable type 'EquatableURL'; this is an error in the Swift 6 language mode
5 | /// We want to make use of enum associated value equality checking
6 | /// so will use our own URL type.
7 | public struct EquatableURL: Equatable, CustomStringConvertible {
| `- note: consider making struct 'EquatableURL' conform to the 'Sendable' protocol
8 | public let url: URL
9 |
:
23 | case missingH1WhenExpected(EquatableURL)
24 | case missingTagInMarkdown(tag: String, EquatableURL)
25 | case noFileExists(EquatableURL)
| `- warning: associated value 'noFileExists' of 'Sendable'-conforming enum 'MarkdownChildrenError' has non-sendable type 'EquatableURL'; this is an error in the Swift 6 language mode
26 | case directorySpecifiedInsteadOfFile(EquatableURL)
27 |
/host/spi-builder-workspace/Sources/MarkdownChildrenKit/Models/MarkdownChildrenError.swift:26:10: warning: associated value 'directorySpecifiedInsteadOfFile' of 'Sendable'-conforming enum 'MarkdownChildrenError' has non-sendable type 'EquatableURL'; this is an error in the Swift 6 language mode
5 | /// We want to make use of enum associated value equality checking
6 | /// so will use our own URL type.
7 | public struct EquatableURL: Equatable, CustomStringConvertible {
| `- note: consider making struct 'EquatableURL' conform to the 'Sendable' protocol
8 | public let url: URL
9 |
:
24 | case missingTagInMarkdown(tag: String, EquatableURL)
25 | case noFileExists(EquatableURL)
26 | case directorySpecifiedInsteadOfFile(EquatableURL)
| `- warning: associated value 'directorySpecifiedInsteadOfFile' of 'Sendable'-conforming enum 'MarkdownChildrenError' has non-sendable type 'EquatableURL'; this is an error in the Swift 6 language mode
27 |
28 | var description: String {
[16/17] Compiling MarkdownChildrenKit ListItemMarkdown.swift
[17/17] Compiling MarkdownChildrenKit ListItemMarkdownNameType.swift
Build complete! (11.58s)
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "MarkdownChildrenKit",
"name" : "MarkdownChildrenKit",
"path" : "/host/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "10.15"
},
{
"name" : "ios",
"version" : "8.0"
},
{
"name" : "tvos",
"version" : "9.0"
},
{
"name" : "watchos",
"version" : "2.0"
}
],
"products" : [
{
"name" : "MarkdownChildrenKit",
"targets" : [
"MarkdownChildrenKit"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "MarkdownChildrenKitTests",
"module_type" : "SwiftTarget",
"name" : "MarkdownChildrenKitTests",
"path" : "Tests/MarkdownChildrenKitTests",
"resources" : [
{
"path" : "/host/spi-builder-workspace/Tests/MarkdownChildrenKitTests/TestData",
"rule" : {
"copy" : {
}
}
}
],
"sources" : [
"MarkdownChildren_Tests.swift",
"Mocks/StringSaver_Mock.swift",
"Models/Markdown_Tests.swift",
"TestData.swift"
],
"target_dependencies" : [
"MarkdownChildrenKit"
],
"type" : "test"
},
{
"c99name" : "MarkdownChildrenKit",
"module_type" : "SwiftTarget",
"name" : "MarkdownChildrenKit",
"path" : "Sources/MarkdownChildrenKit",
"product_memberships" : [
"MarkdownChildrenKit"
],
"sources" : [
"Extensions/Foundation/URL+Extensions.swift",
"Extensions/Swift/Array+Extensions.swift",
"Extensions/Swift/StringProtocol+Extensions.swift",
"MarkdownChildren.swift",
"Models/Configuration.swift",
"Models/List/List.swift",
"Models/List/ListItem.swift",
"Models/List/ListItemDirectory.swift",
"Models/List/ListItemMarkdown.swift",
"Models/List/ListItemMarkdownNameType.swift",
"Models/Markdown.swift",
"Models/MarkdownChildrenError.swift",
"Models/StringSaver.swift",
"UI/Renderer.swift"
],
"type" : "library"
}
],
"tools_version" : "5.3"
}
basic-6.0-latest: Pulling from finestructure/spi-images
Digest: sha256:47d26c99ca4f1ac0a332c85fd5b13ff4390e72115219984a57a68fe9d1063a05
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.0-latest
Done.