Build Information
Failed to build Peppermint, reference 1.2.0 (9e3db6), with Swift 6.3 for Wasm on 13 Apr 2026 10:24:32 UTC.
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4609320-3":/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:wasm-6.3-latest swift build --swift-sdk swift-6.3-RELEASE_wasm 2>&1Build Log
========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/nsagora/peppermint.git
Reference: 1.2.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/nsagora/peppermint
* tag 1.2.0 -> FETCH_HEAD
HEAD is now at 9e3db63 Update readme version
Cloned https://github.com/nsagora/peppermint.git
Revision (git rev-parse @):
9e3db637fbf8041c23a1b7f71e4ef16ac54f833f
SUCCESS checkout https://github.com/nsagora/peppermint.git at 1.2.0
========================================
Build
========================================
Selected platform: wasm
Swift version: 6.3
Building package at path: $PWD
https://github.com/nsagora/peppermint.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-3":/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:wasm-6.3-latest swift build --swift-sdk swift-6.3-RELEASE_wasm 2>&1
wasm-6.3-latest: Pulling from swiftpackageindex/spi-images
Digest: sha256:d69f4e7582c319245442d62a08b2d7c7fd5a0c0c69f5d2ef11d1530cd8d3329b
Status: Image is up to date for registry.gitlab.com/swiftpackageindex/spi-images:wasm-6.3-latest
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-24593BA9C3E375BF.txt
error: emit-module command failed with exit code 1 (use -v to see invocation)
[3/27] Emitting module Peppermint
/host/spi-builder-workspace/Sources/Constraints/AsyncConstraint.swift:23:49: error: cannot find type 'DispatchQueue' in scope
21 | */
22 | @available(*, deprecated, renamed: "evaluate(with:)")
23 | func evaluate(with input: InputType, queue: DispatchQueue, completionHandler: @escaping (_ result: Result<Void, Summary<ErrorType>>) -> Void)
| `- error: cannot find type 'DispatchQueue' in scope
24 |
25 |
/host/spi-builder-workspace/Sources/Constraints/Constraint.swift:55:28: error: cannot find type 'DispatchQueue' in scope
53 | public extension Constraint {
54 |
55 | private var workQueue: DispatchQueue {
| `- error: cannot find type 'DispatchQueue' in scope
56 | return DispatchQueue(label: "com.nsagora.peppermint.constraint", attributes: .concurrent)
57 | }
/host/spi-builder-workspace/Sources/Constraints/Constraint.swift:67:50: error: cannot find type 'DispatchQueue' in scope
65 | - parameter result: `.success` if the input is valid, `.failure` containing the `Summary` of the failing `Constraint`s otherwise.
66 | */
67 | func evaluate(with input: InputType, queue: DispatchQueue, completionHandler: @escaping (_ result: Result<Void, Summary<ErrorType>>) -> Void) {
| `- error: cannot find type 'DispatchQueue' in scope
68 |
69 | workQueue.async {
/host/spi-builder-workspace/Sources/Constraints/Standard/GroupConstraint+AllStrategy.swift:5:24: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
3 | extension GroupConstraint {
4 |
5 | struct AllStrategy<T, E: Error>: Strategy {
| `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
6 |
7 | typealias InputType = T
/host/spi-builder-workspace/Sources/Constraints/Standard/GroupConstraint.swift:12:31: note: 'T' previously declared here
10 | }
11 |
12 | public struct GroupConstraint<T, E: Error>: Constraint {
| `- note: 'T' previously declared here
13 |
14 | public enum Mode {
/host/spi-builder-workspace/Sources/Constraints/Standard/GroupConstraint+AllStrategy.swift:5:27: warning: generic parameter 'E' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
3 | extension GroupConstraint {
4 |
5 | struct AllStrategy<T, E: Error>: Strategy {
| `- warning: generic parameter 'E' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
6 |
7 | typealias InputType = T
/host/spi-builder-workspace/Sources/Constraints/Standard/GroupConstraint.swift:12:34: note: 'E' previously declared here
10 | }
11 |
12 | public struct GroupConstraint<T, E: Error>: Constraint {
| `- note: 'E' previously declared here
13 |
14 | public enum Mode {
/host/spi-builder-workspace/Sources/Constraints/Standard/GroupConstraint+AnyStrategy.swift:5:24: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
3 | extension GroupConstraint {
4 |
5 | struct AnyStrategy<T, E: Error>: Strategy {
| `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
6 |
7 | typealias InputType = T
/host/spi-builder-workspace/Sources/Constraints/Standard/GroupConstraint.swift:12:31: note: 'T' previously declared here
10 | }
11 |
12 | public struct GroupConstraint<T, E: Error>: Constraint {
| `- note: 'T' previously declared here
13 |
14 | public enum Mode {
/host/spi-builder-workspace/Sources/Constraints/Standard/GroupConstraint+AnyStrategy.swift:5:27: warning: generic parameter 'E' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
3 | extension GroupConstraint {
4 |
5 | struct AnyStrategy<T, E: Error>: Strategy {
| `- warning: generic parameter 'E' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
6 |
7 | typealias InputType = T
/host/spi-builder-workspace/Sources/Constraints/Standard/GroupConstraint.swift:12:34: note: 'E' previously declared here
10 | }
11 |
12 | public struct GroupConstraint<T, E: Error>: Constraint {
| `- note: 'E' previously declared here
13 |
14 | public enum Mode {
/host/spi-builder-workspace/Sources/Predicates/AsyncPredicate.swift:19:49: error: cannot find type 'DispatchQueue' in scope
17 | - parameter matches: `true` if input matches the conditions specified by the receiver, `false` otherwise.
18 | */
19 | func evaluate(with input: InputType, queue: DispatchQueue, completionHandler: @escaping (_ matches: Bool) -> Void)
| `- error: cannot find type 'DispatchQueue' in scope
20 | }
21 |
/host/spi-builder-workspace/Sources/Predicates/Predicate.swift:40:28: error: cannot find type 'DispatchQueue' in scope
38 | extension Predicate {
39 |
40 | private var workQueue: DispatchQueue {
| `- error: cannot find type 'DispatchQueue' in scope
41 | return DispatchQueue(label: "com.nsagora.peppermint.predicate", attributes: .concurrent)
42 | }
/host/spi-builder-workspace/Sources/Predicates/Predicate.swift:52:56: error: cannot find type 'DispatchQueue' in scope
50 | - parameter matches: `true` if input matches the conditions specified by the receiver, `false` otherwise.
51 | */
52 | public func evaluate(with input: InputType, queue: DispatchQueue = .main, completionHandler: @escaping (_ matches: Bool) -> Void) {
| `- error: cannot find type 'DispatchQueue' in scope
53 |
54 | workQueue.async {
[4/30] Compiling Peppermint TypeConstraint.swift
/host/spi-builder-workspace/Sources/Constraints/AsyncConstraint.swift:23:49: error: cannot find type 'DispatchQueue' in scope
21 | */
22 | @available(*, deprecated, renamed: "evaluate(with:)")
23 | func evaluate(with input: InputType, queue: DispatchQueue, completionHandler: @escaping (_ result: Result<Void, Summary<ErrorType>>) -> Void)
| `- error: cannot find type 'DispatchQueue' in scope
24 |
25 |
/host/spi-builder-workspace/Sources/Constraints/Constraint.swift:67:50: error: cannot find type 'DispatchQueue' in scope
65 | - parameter result: `.success` if the input is valid, `.failure` containing the `Summary` of the failing `Constraint`s otherwise.
66 | */
67 | func evaluate(with input: InputType, queue: DispatchQueue, completionHandler: @escaping (_ result: Result<Void, Summary<ErrorType>>) -> Void) {
| `- error: cannot find type 'DispatchQueue' in scope
68 |
69 | workQueue.async {
[5/30] Compiling Peppermint Summary+Result.swift
/host/spi-builder-workspace/Sources/Constraints/AsyncConstraint.swift:23:49: error: cannot find type 'DispatchQueue' in scope
21 | */
22 | @available(*, deprecated, renamed: "evaluate(with:)")
23 | func evaluate(with input: InputType, queue: DispatchQueue, completionHandler: @escaping (_ result: Result<Void, Summary<ErrorType>>) -> Void)
| `- error: cannot find type 'DispatchQueue' in scope
24 |
25 |
/host/spi-builder-workspace/Sources/Constraints/Constraint.swift:67:50: error: cannot find type 'DispatchQueue' in scope
65 | - parameter result: `.success` if the input is valid, `.failure` containing the `Summary` of the failing `Constraint`s otherwise.
66 | */
67 | func evaluate(with input: InputType, queue: DispatchQueue, completionHandler: @escaping (_ result: Result<Void, Summary<ErrorType>>) -> Void) {
| `- error: cannot find type 'DispatchQueue' in scope
68 |
69 | workQueue.async {
[6/30] Compiling Peppermint Summary.swift
/host/spi-builder-workspace/Sources/Constraints/AsyncConstraint.swift:23:49: error: cannot find type 'DispatchQueue' in scope
21 | */
22 | @available(*, deprecated, renamed: "evaluate(with:)")
23 | func evaluate(with input: InputType, queue: DispatchQueue, completionHandler: @escaping (_ result: Result<Void, Summary<ErrorType>>) -> Void)
| `- error: cannot find type 'DispatchQueue' in scope
24 |
25 |
/host/spi-builder-workspace/Sources/Constraints/Constraint.swift:67:50: error: cannot find type 'DispatchQueue' in scope
65 | - parameter result: `.success` if the input is valid, `.failure` containing the `Summary` of the failing `Constraint`s otherwise.
66 | */
67 | func evaluate(with input: InputType, queue: DispatchQueue, completionHandler: @escaping (_ result: Result<Void, Summary<ErrorType>>) -> Void) {
| `- error: cannot find type 'DispatchQueue' in scope
68 |
69 | workQueue.async {
[7/30] Compiling Peppermint BlockConstraint.swift
/host/spi-builder-workspace/Sources/Constraints/AsyncConstraint.swift:23:49: error: cannot find type 'DispatchQueue' in scope
21 | */
22 | @available(*, deprecated, renamed: "evaluate(with:)")
23 | func evaluate(with input: InputType, queue: DispatchQueue, completionHandler: @escaping (_ result: Result<Void, Summary<ErrorType>>) -> Void)
| `- error: cannot find type 'DispatchQueue' in scope
24 |
25 |
/host/spi-builder-workspace/Sources/Predicates/AsyncPredicate.swift:19:49: error: cannot find type 'DispatchQueue' in scope
17 | - parameter matches: `true` if input matches the conditions specified by the receiver, `false` otherwise.
18 | */
19 | func evaluate(with input: InputType, queue: DispatchQueue, completionHandler: @escaping (_ matches: Bool) -> Void)
| `- error: cannot find type 'DispatchQueue' in scope
20 | }
21 |
/host/spi-builder-workspace/Sources/Predicates/Predicate.swift:52:56: error: cannot find type 'DispatchQueue' in scope
50 | - parameter matches: `true` if input matches the conditions specified by the receiver, `false` otherwise.
51 | */
52 | public func evaluate(with input: InputType, queue: DispatchQueue = .main, completionHandler: @escaping (_ matches: Bool) -> Void) {
| `- error: cannot find type 'DispatchQueue' in scope
53 |
54 | workQueue.async {
/host/spi-builder-workspace/Sources/Constraints/Standard/GroupConstraint+AllStrategy.swift:5:24: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
3 | extension GroupConstraint {
4 |
5 | struct AllStrategy<T, E: Error>: Strategy {
| `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
6 |
7 | typealias InputType = T
/host/spi-builder-workspace/Sources/Constraints/Standard/GroupConstraint.swift:12:31: note: 'T' previously declared here
10 | }
11 |
12 | public struct GroupConstraint<T, E: Error>: Constraint {
| `- note: 'T' previously declared here
13 |
14 | public enum Mode {
/host/spi-builder-workspace/Sources/Constraints/Standard/GroupConstraint+AllStrategy.swift:5:27: warning: generic parameter 'E' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
3 | extension GroupConstraint {
4 |
5 | struct AllStrategy<T, E: Error>: Strategy {
| `- warning: generic parameter 'E' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
6 |
7 | typealias InputType = T
/host/spi-builder-workspace/Sources/Constraints/Standard/GroupConstraint.swift:12:34: note: 'E' previously declared here
10 | }
11 |
12 | public struct GroupConstraint<T, E: Error>: Constraint {
| `- note: 'E' previously declared here
13 |
14 | public enum Mode {
/host/spi-builder-workspace/Sources/Constraints/Constraint.swift:67:50: error: cannot find type 'DispatchQueue' in scope
65 | - parameter result: `.success` if the input is valid, `.failure` containing the `Summary` of the failing `Constraint`s otherwise.
66 | */
67 | func evaluate(with input: InputType, queue: DispatchQueue, completionHandler: @escaping (_ result: Result<Void, Summary<ErrorType>>) -> Void) {
| `- error: cannot find type 'DispatchQueue' in scope
68 |
69 | workQueue.async {
/host/spi-builder-workspace/Sources/Constraints/Standard/GroupConstraint+AnyStrategy.swift:5:24: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
3 | extension GroupConstraint {
4 |
5 | struct AnyStrategy<T, E: Error>: Strategy {
| `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
6 |
7 | typealias InputType = T
/host/spi-builder-workspace/Sources/Constraints/Standard/GroupConstraint.swift:12:31: note: 'T' previously declared here
10 | }
11 |
12 | public struct GroupConstraint<T, E: Error>: Constraint {
| `- note: 'T' previously declared here
13 |
14 | public enum Mode {
/host/spi-builder-workspace/Sources/Constraints/Standard/GroupConstraint+AnyStrategy.swift:5:27: warning: generic parameter 'E' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
3 | extension GroupConstraint {
4 |
5 | struct AnyStrategy<T, E: Error>: Strategy {
| `- warning: generic parameter 'E' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
6 |
7 | typealias InputType = T
/host/spi-builder-workspace/Sources/Constraints/Standard/GroupConstraint.swift:12:34: note: 'E' previously declared here
10 | }
11 |
12 | public struct GroupConstraint<T, E: Error>: Constraint {
| `- note: 'E' previously declared here
13 |
14 | public enum Mode {
[8/30] Compiling Peppermint GroupConstraint+AllStrategy.swift
/host/spi-builder-workspace/Sources/Constraints/AsyncConstraint.swift:23:49: error: cannot find type 'DispatchQueue' in scope
21 | */
22 | @available(*, deprecated, renamed: "evaluate(with:)")
23 | func evaluate(with input: InputType, queue: DispatchQueue, completionHandler: @escaping (_ result: Result<Void, Summary<ErrorType>>) -> Void)
| `- error: cannot find type 'DispatchQueue' in scope
24 |
25 |
/host/spi-builder-workspace/Sources/Predicates/AsyncPredicate.swift:19:49: error: cannot find type 'DispatchQueue' in scope
17 | - parameter matches: `true` if input matches the conditions specified by the receiver, `false` otherwise.
18 | */
19 | func evaluate(with input: InputType, queue: DispatchQueue, completionHandler: @escaping (_ matches: Bool) -> Void)
| `- error: cannot find type 'DispatchQueue' in scope
20 | }
21 |
/host/spi-builder-workspace/Sources/Predicates/Predicate.swift:52:56: error: cannot find type 'DispatchQueue' in scope
50 | - parameter matches: `true` if input matches the conditions specified by the receiver, `false` otherwise.
51 | */
52 | public func evaluate(with input: InputType, queue: DispatchQueue = .main, completionHandler: @escaping (_ matches: Bool) -> Void) {
| `- error: cannot find type 'DispatchQueue' in scope
53 |
54 | workQueue.async {
/host/spi-builder-workspace/Sources/Constraints/Standard/GroupConstraint+AllStrategy.swift:5:24: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
3 | extension GroupConstraint {
4 |
5 | struct AllStrategy<T, E: Error>: Strategy {
| `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
6 |
7 | typealias InputType = T
/host/spi-builder-workspace/Sources/Constraints/Standard/GroupConstraint.swift:12:31: note: 'T' previously declared here
10 | }
11 |
12 | public struct GroupConstraint<T, E: Error>: Constraint {
| `- note: 'T' previously declared here
13 |
14 | public enum Mode {
/host/spi-builder-workspace/Sources/Constraints/Standard/GroupConstraint+AllStrategy.swift:5:27: warning: generic parameter 'E' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
3 | extension GroupConstraint {
4 |
5 | struct AllStrategy<T, E: Error>: Strategy {
| `- warning: generic parameter 'E' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
6 |
7 | typealias InputType = T
/host/spi-builder-workspace/Sources/Constraints/Standard/GroupConstraint.swift:12:34: note: 'E' previously declared here
10 | }
11 |
12 | public struct GroupConstraint<T, E: Error>: Constraint {
| `- note: 'E' previously declared here
13 |
14 | public enum Mode {
/host/spi-builder-workspace/Sources/Constraints/Constraint.swift:67:50: error: cannot find type 'DispatchQueue' in scope
65 | - parameter result: `.success` if the input is valid, `.failure` containing the `Summary` of the failing `Constraint`s otherwise.
66 | */
67 | func evaluate(with input: InputType, queue: DispatchQueue, completionHandler: @escaping (_ result: Result<Void, Summary<ErrorType>>) -> Void) {
| `- error: cannot find type 'DispatchQueue' in scope
68 |
69 | workQueue.async {
/host/spi-builder-workspace/Sources/Constraints/Standard/GroupConstraint+AnyStrategy.swift:5:24: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
3 | extension GroupConstraint {
4 |
5 | struct AnyStrategy<T, E: Error>: Strategy {
| `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
6 |
7 | typealias InputType = T
/host/spi-builder-workspace/Sources/Constraints/Standard/GroupConstraint.swift:12:31: note: 'T' previously declared here
10 | }
11 |
12 | public struct GroupConstraint<T, E: Error>: Constraint {
| `- note: 'T' previously declared here
13 |
14 | public enum Mode {
/host/spi-builder-workspace/Sources/Constraints/Standard/GroupConstraint+AnyStrategy.swift:5:27: warning: generic parameter 'E' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
3 | extension GroupConstraint {
4 |
5 | struct AnyStrategy<T, E: Error>: Strategy {
| `- warning: generic parameter 'E' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
6 |
7 | typealias InputType = T
/host/spi-builder-workspace/Sources/Constraints/Standard/GroupConstraint.swift:12:34: note: 'E' previously declared here
10 | }
11 |
12 | public struct GroupConstraint<T, E: Error>: Constraint {
| `- note: 'E' previously declared here
13 |
14 | public enum Mode {
[9/30] Compiling Peppermint GroupConstraint+AnyStrategy.swift
/host/spi-builder-workspace/Sources/Constraints/AsyncConstraint.swift:23:49: error: cannot find type 'DispatchQueue' in scope
21 | */
22 | @available(*, deprecated, renamed: "evaluate(with:)")
23 | func evaluate(with input: InputType, queue: DispatchQueue, completionHandler: @escaping (_ result: Result<Void, Summary<ErrorType>>) -> Void)
| `- error: cannot find type 'DispatchQueue' in scope
24 |
25 |
/host/spi-builder-workspace/Sources/Predicates/AsyncPredicate.swift:19:49: error: cannot find type 'DispatchQueue' in scope
17 | - parameter matches: `true` if input matches the conditions specified by the receiver, `false` otherwise.
18 | */
19 | func evaluate(with input: InputType, queue: DispatchQueue, completionHandler: @escaping (_ matches: Bool) -> Void)
| `- error: cannot find type 'DispatchQueue' in scope
20 | }
21 |
/host/spi-builder-workspace/Sources/Predicates/Predicate.swift:52:56: error: cannot find type 'DispatchQueue' in scope
50 | - parameter matches: `true` if input matches the conditions specified by the receiver, `false` otherwise.
51 | */
52 | public func evaluate(with input: InputType, queue: DispatchQueue = .main, completionHandler: @escaping (_ matches: Bool) -> Void) {
| `- error: cannot find type 'DispatchQueue' in scope
53 |
54 | workQueue.async {
/host/spi-builder-workspace/Sources/Constraints/Standard/GroupConstraint+AllStrategy.swift:5:24: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
3 | extension GroupConstraint {
4 |
5 | struct AllStrategy<T, E: Error>: Strategy {
| `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
6 |
7 | typealias InputType = T
/host/spi-builder-workspace/Sources/Constraints/Standard/GroupConstraint.swift:12:31: note: 'T' previously declared here
10 | }
11 |
12 | public struct GroupConstraint<T, E: Error>: Constraint {
| `- note: 'T' previously declared here
13 |
14 | public enum Mode {
/host/spi-builder-workspace/Sources/Constraints/Standard/GroupConstraint+AllStrategy.swift:5:27: warning: generic parameter 'E' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
3 | extension GroupConstraint {
4 |
5 | struct AllStrategy<T, E: Error>: Strategy {
| `- warning: generic parameter 'E' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
6 |
7 | typealias InputType = T
/host/spi-builder-workspace/Sources/Constraints/Standard/GroupConstraint.swift:12:34: note: 'E' previously declared here
10 | }
11 |
12 | public struct GroupConstraint<T, E: Error>: Constraint {
| `- note: 'E' previously declared here
13 |
14 | public enum Mode {
/host/spi-builder-workspace/Sources/Constraints/Constraint.swift:67:50: error: cannot find type 'DispatchQueue' in scope
65 | - parameter result: `.success` if the input is valid, `.failure` containing the `Summary` of the failing `Constraint`s otherwise.
66 | */
67 | func evaluate(with input: InputType, queue: DispatchQueue, completionHandler: @escaping (_ result: Result<Void, Summary<ErrorType>>) -> Void) {
| `- error: cannot find type 'DispatchQueue' in scope
68 |
69 | workQueue.async {
/host/spi-builder-workspace/Sources/Constraints/Standard/GroupConstraint+AnyStrategy.swift:5:24: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
3 | extension GroupConstraint {
4 |
5 | struct AnyStrategy<T, E: Error>: Strategy {
| `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
6 |
7 | typealias InputType = T
/host/spi-builder-workspace/Sources/Constraints/Standard/GroupConstraint.swift:12:31: note: 'T' previously declared here
10 | }
11 |
12 | public struct GroupConstraint<T, E: Error>: Constraint {
| `- note: 'T' previously declared here
13 |
14 | public enum Mode {
/host/spi-builder-workspace/Sources/Constraints/Standard/GroupConstraint+AnyStrategy.swift:5:27: warning: generic parameter 'E' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
3 | extension GroupConstraint {
4 |
5 | struct AnyStrategy<T, E: Error>: Strategy {
| `- warning: generic parameter 'E' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
6 |
7 | typealias InputType = T
/host/spi-builder-workspace/Sources/Constraints/Standard/GroupConstraint.swift:12:34: note: 'E' previously declared here
10 | }
11 |
12 | public struct GroupConstraint<T, E: Error>: Constraint {
| `- note: 'E' previously declared here
13 |
14 | public enum Mode {
[10/30] Compiling Peppermint GroupConstraint.swift
/host/spi-builder-workspace/Sources/Constraints/AsyncConstraint.swift:23:49: error: cannot find type 'DispatchQueue' in scope
21 | */
22 | @available(*, deprecated, renamed: "evaluate(with:)")
23 | func evaluate(with input: InputType, queue: DispatchQueue, completionHandler: @escaping (_ result: Result<Void, Summary<ErrorType>>) -> Void)
| `- error: cannot find type 'DispatchQueue' in scope
24 |
25 |
/host/spi-builder-workspace/Sources/Predicates/AsyncPredicate.swift:19:49: error: cannot find type 'DispatchQueue' in scope
17 | - parameter matches: `true` if input matches the conditions specified by the receiver, `false` otherwise.
18 | */
19 | func evaluate(with input: InputType, queue: DispatchQueue, completionHandler: @escaping (_ matches: Bool) -> Void)
| `- error: cannot find type 'DispatchQueue' in scope
20 | }
21 |
/host/spi-builder-workspace/Sources/Predicates/Predicate.swift:52:56: error: cannot find type 'DispatchQueue' in scope
50 | - parameter matches: `true` if input matches the conditions specified by the receiver, `false` otherwise.
51 | */
52 | public func evaluate(with input: InputType, queue: DispatchQueue = .main, completionHandler: @escaping (_ matches: Bool) -> Void) {
| `- error: cannot find type 'DispatchQueue' in scope
53 |
54 | workQueue.async {
/host/spi-builder-workspace/Sources/Constraints/Standard/GroupConstraint+AllStrategy.swift:5:24: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
3 | extension GroupConstraint {
4 |
5 | struct AllStrategy<T, E: Error>: Strategy {
| `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
6 |
7 | typealias InputType = T
/host/spi-builder-workspace/Sources/Constraints/Standard/GroupConstraint.swift:12:31: note: 'T' previously declared here
10 | }
11 |
12 | public struct GroupConstraint<T, E: Error>: Constraint {
| `- note: 'T' previously declared here
13 |
14 | public enum Mode {
/host/spi-builder-workspace/Sources/Constraints/Standard/GroupConstraint+AllStrategy.swift:5:27: warning: generic parameter 'E' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
3 | extension GroupConstraint {
4 |
5 | struct AllStrategy<T, E: Error>: Strategy {
| `- warning: generic parameter 'E' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
6 |
7 | typealias InputType = T
/host/spi-builder-workspace/Sources/Constraints/Standard/GroupConstraint.swift:12:34: note: 'E' previously declared here
10 | }
11 |
12 | public struct GroupConstraint<T, E: Error>: Constraint {
| `- note: 'E' previously declared here
13 |
14 | public enum Mode {
/host/spi-builder-workspace/Sources/Constraints/Constraint.swift:67:50: error: cannot find type 'DispatchQueue' in scope
65 | - parameter result: `.success` if the input is valid, `.failure` containing the `Summary` of the failing `Constraint`s otherwise.
66 | */
67 | func evaluate(with input: InputType, queue: DispatchQueue, completionHandler: @escaping (_ result: Result<Void, Summary<ErrorType>>) -> Void) {
| `- error: cannot find type 'DispatchQueue' in scope
68 |
69 | workQueue.async {
/host/spi-builder-workspace/Sources/Constraints/Standard/GroupConstraint+AnyStrategy.swift:5:24: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
3 | extension GroupConstraint {
4 |
5 | struct AnyStrategy<T, E: Error>: Strategy {
| `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
6 |
7 | typealias InputType = T
/host/spi-builder-workspace/Sources/Constraints/Standard/GroupConstraint.swift:12:31: note: 'T' previously declared here
10 | }
11 |
12 | public struct GroupConstraint<T, E: Error>: Constraint {
| `- note: 'T' previously declared here
13 |
14 | public enum Mode {
/host/spi-builder-workspace/Sources/Constraints/Standard/GroupConstraint+AnyStrategy.swift:5:27: warning: generic parameter 'E' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
3 | extension GroupConstraint {
4 |
5 | struct AnyStrategy<T, E: Error>: Strategy {
| `- warning: generic parameter 'E' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
6 |
7 | typealias InputType = T
/host/spi-builder-workspace/Sources/Constraints/Standard/GroupConstraint.swift:12:34: note: 'E' previously declared here
10 | }
11 |
12 | public struct GroupConstraint<T, E: Error>: Constraint {
| `- note: 'E' previously declared here
13 |
14 | public enum Mode {
[11/30] Compiling Peppermint KeyPathConstraint.swift
/host/spi-builder-workspace/Sources/Constraints/AsyncConstraint.swift:23:49: error: cannot find type 'DispatchQueue' in scope
21 | */
22 | @available(*, deprecated, renamed: "evaluate(with:)")
23 | func evaluate(with input: InputType, queue: DispatchQueue, completionHandler: @escaping (_ result: Result<Void, Summary<ErrorType>>) -> Void)
| `- error: cannot find type 'DispatchQueue' in scope
24 |
25 |
/host/spi-builder-workspace/Sources/Constraints/Constraint.swift:67:50: error: cannot find type 'DispatchQueue' in scope
65 | - parameter result: `.success` if the input is valid, `.failure` containing the `Summary` of the failing `Constraint`s otherwise.
66 | */
67 | func evaluate(with input: InputType, queue: DispatchQueue, completionHandler: @escaping (_ result: Result<Void, Summary<ErrorType>>) -> Void) {
| `- error: cannot find type 'DispatchQueue' in scope
68 |
69 | workQueue.async {
/host/spi-builder-workspace/Sources/Predicates/Predicate.swift:52:56: error: cannot find type 'DispatchQueue' in scope
50 | - parameter matches: `true` if input matches the conditions specified by the receiver, `false` otherwise.
51 | */
52 | public func evaluate(with input: InputType, queue: DispatchQueue = .main, completionHandler: @escaping (_ matches: Bool) -> Void) {
| `- error: cannot find type 'DispatchQueue' in scope
53 |
54 | workQueue.async {
/host/spi-builder-workspace/Sources/Predicates/AsyncPredicate.swift:19:49: error: cannot find type 'DispatchQueue' in scope
17 | - parameter matches: `true` if input matches the conditions specified by the receiver, `false` otherwise.
18 | */
19 | func evaluate(with input: InputType, queue: DispatchQueue, completionHandler: @escaping (_ matches: Bool) -> Void)
| `- error: cannot find type 'DispatchQueue' in scope
20 | }
21 |
[12/30] Compiling Peppermint OptionalConstraint.swift
/host/spi-builder-workspace/Sources/Constraints/AsyncConstraint.swift:23:49: error: cannot find type 'DispatchQueue' in scope
21 | */
22 | @available(*, deprecated, renamed: "evaluate(with:)")
23 | func evaluate(with input: InputType, queue: DispatchQueue, completionHandler: @escaping (_ result: Result<Void, Summary<ErrorType>>) -> Void)
| `- error: cannot find type 'DispatchQueue' in scope
24 |
25 |
/host/spi-builder-workspace/Sources/Constraints/Constraint.swift:67:50: error: cannot find type 'DispatchQueue' in scope
65 | - parameter result: `.success` if the input is valid, `.failure` containing the `Summary` of the failing `Constraint`s otherwise.
66 | */
67 | func evaluate(with input: InputType, queue: DispatchQueue, completionHandler: @escaping (_ result: Result<Void, Summary<ErrorType>>) -> Void) {
| `- error: cannot find type 'DispatchQueue' in scope
68 |
69 | workQueue.async {
/host/spi-builder-workspace/Sources/Predicates/Predicate.swift:52:56: error: cannot find type 'DispatchQueue' in scope
50 | - parameter matches: `true` if input matches the conditions specified by the receiver, `false` otherwise.
51 | */
52 | public func evaluate(with input: InputType, queue: DispatchQueue = .main, completionHandler: @escaping (_ matches: Bool) -> Void) {
| `- error: cannot find type 'DispatchQueue' in scope
53 |
54 | workQueue.async {
/host/spi-builder-workspace/Sources/Predicates/AsyncPredicate.swift:19:49: error: cannot find type 'DispatchQueue' in scope
17 | - parameter matches: `true` if input matches the conditions specified by the receiver, `false` otherwise.
18 | */
19 | func evaluate(with input: InputType, queue: DispatchQueue, completionHandler: @escaping (_ matches: Bool) -> Void)
| `- error: cannot find type 'DispatchQueue' in scope
20 | }
21 |
[13/30] Compiling Peppermint PredicateConstraint.swift
/host/spi-builder-workspace/Sources/Constraints/AsyncConstraint.swift:23:49: error: cannot find type 'DispatchQueue' in scope
21 | */
22 | @available(*, deprecated, renamed: "evaluate(with:)")
23 | func evaluate(with input: InputType, queue: DispatchQueue, completionHandler: @escaping (_ result: Result<Void, Summary<ErrorType>>) -> Void)
| `- error: cannot find type 'DispatchQueue' in scope
24 |
25 |
/host/spi-builder-workspace/Sources/Constraints/Constraint.swift:67:50: error: cannot find type 'DispatchQueue' in scope
65 | - parameter result: `.success` if the input is valid, `.failure` containing the `Summary` of the failing `Constraint`s otherwise.
66 | */
67 | func evaluate(with input: InputType, queue: DispatchQueue, completionHandler: @escaping (_ result: Result<Void, Summary<ErrorType>>) -> Void) {
| `- error: cannot find type 'DispatchQueue' in scope
68 |
69 | workQueue.async {
/host/spi-builder-workspace/Sources/Predicates/Predicate.swift:52:56: error: cannot find type 'DispatchQueue' in scope
50 | - parameter matches: `true` if input matches the conditions specified by the receiver, `false` otherwise.
51 | */
52 | public func evaluate(with input: InputType, queue: DispatchQueue = .main, completionHandler: @escaping (_ matches: Bool) -> Void) {
| `- error: cannot find type 'DispatchQueue' in scope
53 |
54 | workQueue.async {
/host/spi-builder-workspace/Sources/Predicates/AsyncPredicate.swift:19:49: error: cannot find type 'DispatchQueue' in scope
17 | - parameter matches: `true` if input matches the conditions specified by the receiver, `false` otherwise.
18 | */
19 | func evaluate(with input: InputType, queue: DispatchQueue, completionHandler: @escaping (_ matches: Bool) -> Void)
| `- error: cannot find type 'DispatchQueue' in scope
20 | }
21 |
[14/30] Compiling Peppermint RequiredConstraint.swift
/host/spi-builder-workspace/Sources/Constraints/AsyncConstraint.swift:23:49: error: cannot find type 'DispatchQueue' in scope
21 | */
22 | @available(*, deprecated, renamed: "evaluate(with:)")
23 | func evaluate(with input: InputType, queue: DispatchQueue, completionHandler: @escaping (_ result: Result<Void, Summary<ErrorType>>) -> Void)
| `- error: cannot find type 'DispatchQueue' in scope
24 |
25 |
/host/spi-builder-workspace/Sources/Constraints/Constraint.swift:67:50: error: cannot find type 'DispatchQueue' in scope
65 | - parameter result: `.success` if the input is valid, `.failure` containing the `Summary` of the failing `Constraint`s otherwise.
66 | */
67 | func evaluate(with input: InputType, queue: DispatchQueue, completionHandler: @escaping (_ result: Result<Void, Summary<ErrorType>>) -> Void) {
| `- error: cannot find type 'DispatchQueue' in scope
68 |
69 | workQueue.async {
/host/spi-builder-workspace/Sources/Predicates/Predicate.swift:52:56: error: cannot find type 'DispatchQueue' in scope
50 | - parameter matches: `true` if input matches the conditions specified by the receiver, `false` otherwise.
51 | */
52 | public func evaluate(with input: InputType, queue: DispatchQueue = .main, completionHandler: @escaping (_ matches: Bool) -> Void) {
| `- error: cannot find type 'DispatchQueue' in scope
53 |
54 | workQueue.async {
/host/spi-builder-workspace/Sources/Predicates/AsyncPredicate.swift:19:49: error: cannot find type 'DispatchQueue' in scope
17 | - parameter matches: `true` if input matches the conditions specified by the receiver, `false` otherwise.
18 | */
19 | func evaluate(with input: InputType, queue: DispatchQueue, completionHandler: @escaping (_ matches: Bool) -> Void)
| `- error: cannot find type 'DispatchQueue' in scope
20 | }
21 |
[15/30] Compiling Peppermint EmailPredicate.swift
/host/spi-builder-workspace/Sources/Predicates/AsyncPredicate.swift:19:49: error: cannot find type 'DispatchQueue' in scope
17 | - parameter matches: `true` if input matches the conditions specified by the receiver, `false` otherwise.
18 | */
19 | func evaluate(with input: InputType, queue: DispatchQueue, completionHandler: @escaping (_ matches: Bool) -> Void)
| `- error: cannot find type 'DispatchQueue' in scope
20 | }
21 |
/host/spi-builder-workspace/Sources/Predicates/Predicate.swift:52:56: error: cannot find type 'DispatchQueue' in scope
50 | - parameter matches: `true` if input matches the conditions specified by the receiver, `false` otherwise.
51 | */
52 | public func evaluate(with input: InputType, queue: DispatchQueue = .main, completionHandler: @escaping (_ matches: Bool) -> Void) {
| `- error: cannot find type 'DispatchQueue' in scope
53 |
54 | workQueue.async {
[16/30] Compiling Peppermint LengthPredicate.swift
/host/spi-builder-workspace/Sources/Predicates/AsyncPredicate.swift:19:49: error: cannot find type 'DispatchQueue' in scope
17 | - parameter matches: `true` if input matches the conditions specified by the receiver, `false` otherwise.
18 | */
19 | func evaluate(with input: InputType, queue: DispatchQueue, completionHandler: @escaping (_ matches: Bool) -> Void)
| `- error: cannot find type 'DispatchQueue' in scope
20 | }
21 |
/host/spi-builder-workspace/Sources/Predicates/Predicate.swift:52:56: error: cannot find type 'DispatchQueue' in scope
50 | - parameter matches: `true` if input matches the conditions specified by the receiver, `false` otherwise.
51 | */
52 | public func evaluate(with input: InputType, queue: DispatchQueue = .main, completionHandler: @escaping (_ matches: Bool) -> Void) {
| `- error: cannot find type 'DispatchQueue' in scope
53 |
54 | workQueue.async {
[17/30] Compiling Peppermint RangePredicate.swift
/host/spi-builder-workspace/Sources/Predicates/AsyncPredicate.swift:19:49: error: cannot find type 'DispatchQueue' in scope
17 | - parameter matches: `true` if input matches the conditions specified by the receiver, `false` otherwise.
18 | */
19 | func evaluate(with input: InputType, queue: DispatchQueue, completionHandler: @escaping (_ matches: Bool) -> Void)
| `- error: cannot find type 'DispatchQueue' in scope
20 | }
21 |
/host/spi-builder-workspace/Sources/Predicates/Predicate.swift:52:56: error: cannot find type 'DispatchQueue' in scope
50 | - parameter matches: `true` if input matches the conditions specified by the receiver, `false` otherwise.
51 | */
52 | public func evaluate(with input: InputType, queue: DispatchQueue = .main, completionHandler: @escaping (_ matches: Bool) -> Void) {
| `- error: cannot find type 'DispatchQueue' in scope
53 |
54 | workQueue.async {
[18/30] Compiling Peppermint RegexPredicate.swift
/host/spi-builder-workspace/Sources/Predicates/AsyncPredicate.swift:19:49: error: cannot find type 'DispatchQueue' in scope
17 | - parameter matches: `true` if input matches the conditions specified by the receiver, `false` otherwise.
18 | */
19 | func evaluate(with input: InputType, queue: DispatchQueue, completionHandler: @escaping (_ matches: Bool) -> Void)
| `- error: cannot find type 'DispatchQueue' in scope
20 | }
21 |
/host/spi-builder-workspace/Sources/Predicates/Predicate.swift:52:56: error: cannot find type 'DispatchQueue' in scope
50 | - parameter matches: `true` if input matches the conditions specified by the receiver, `false` otherwise.
51 | */
52 | public func evaluate(with input: InputType, queue: DispatchQueue = .main, completionHandler: @escaping (_ matches: Bool) -> Void) {
| `- error: cannot find type 'DispatchQueue' in scope
53 |
54 | workQueue.async {
[19/30] Compiling Peppermint RequiredPredicate.swift
/host/spi-builder-workspace/Sources/Predicates/AsyncPredicate.swift:19:49: error: cannot find type 'DispatchQueue' in scope
17 | - parameter matches: `true` if input matches the conditions specified by the receiver, `false` otherwise.
18 | */
19 | func evaluate(with input: InputType, queue: DispatchQueue, completionHandler: @escaping (_ matches: Bool) -> Void)
| `- error: cannot find type 'DispatchQueue' in scope
20 | }
21 |
/host/spi-builder-workspace/Sources/Predicates/Predicate.swift:52:56: error: cannot find type 'DispatchQueue' in scope
50 | - parameter matches: `true` if input matches the conditions specified by the receiver, `false` otherwise.
51 | */
52 | public func evaluate(with input: InputType, queue: DispatchQueue = .main, completionHandler: @escaping (_ matches: Bool) -> Void) {
| `- error: cannot find type 'DispatchQueue' in scope
53 |
54 | workQueue.async {
[20/30] Compiling Peppermint URLPredicate.swift
/host/spi-builder-workspace/Sources/Predicates/AsyncPredicate.swift:19:49: error: cannot find type 'DispatchQueue' in scope
17 | - parameter matches: `true` if input matches the conditions specified by the receiver, `false` otherwise.
18 | */
19 | func evaluate(with input: InputType, queue: DispatchQueue, completionHandler: @escaping (_ matches: Bool) -> Void)
| `- error: cannot find type 'DispatchQueue' in scope
20 | }
21 |
/host/spi-builder-workspace/Sources/Predicates/Predicate.swift:52:56: error: cannot find type 'DispatchQueue' in scope
50 | - parameter matches: `true` if input matches the conditions specified by the receiver, `false` otherwise.
51 | */
52 | public func evaluate(with input: InputType, queue: DispatchQueue = .main, completionHandler: @escaping (_ matches: Bool) -> Void) {
| `- error: cannot find type 'DispatchQueue' in scope
53 |
54 | workQueue.async {
[21/30] Compiling Peppermint AnyConstraint.swift
/host/spi-builder-workspace/Sources/Constraints/AsyncConstraint.swift:23:49: error: cannot find type 'DispatchQueue' in scope
21 | */
22 | @available(*, deprecated, renamed: "evaluate(with:)")
23 | func evaluate(with input: InputType, queue: DispatchQueue, completionHandler: @escaping (_ result: Result<Void, Summary<ErrorType>>) -> Void)
| `- error: cannot find type 'DispatchQueue' in scope
24 |
25 |
/host/spi-builder-workspace/Sources/Constraints/Constraint.swift:67:50: error: cannot find type 'DispatchQueue' in scope
65 | - parameter result: `.success` if the input is valid, `.failure` containing the `Summary` of the failing `Constraint`s otherwise.
66 | */
67 | func evaluate(with input: InputType, queue: DispatchQueue, completionHandler: @escaping (_ result: Result<Void, Summary<ErrorType>>) -> Void) {
| `- error: cannot find type 'DispatchQueue' in scope
68 |
69 | workQueue.async {
/host/spi-builder-workspace/Sources/Constraints/Constraint.swift:55:28: error: cannot find type 'DispatchQueue' in scope
53 | public extension Constraint {
54 |
55 | private var workQueue: DispatchQueue {
| `- error: cannot find type 'DispatchQueue' in scope
56 | return DispatchQueue(label: "com.nsagora.peppermint.constraint", attributes: .concurrent)
57 | }
/host/spi-builder-workspace/Sources/Constraints/Constraint.swift:56:16: error: cannot find 'DispatchQueue' in scope
54 |
55 | private var workQueue: DispatchQueue {
56 | return DispatchQueue(label: "com.nsagora.peppermint.constraint", attributes: .concurrent)
| `- error: cannot find 'DispatchQueue' in scope
57 | }
58 |
/host/spi-builder-workspace/Sources/Constraints/Constraint.swift:56:87: error: cannot infer contextual base in reference to member 'concurrent'
54 |
55 | private var workQueue: DispatchQueue {
56 | return DispatchQueue(label: "com.nsagora.peppermint.constraint", attributes: .concurrent)
| `- error: cannot infer contextual base in reference to member 'concurrent'
57 | }
58 |
[22/30] Compiling Peppermint AsyncConstraint.swift
/host/spi-builder-workspace/Sources/Constraints/AsyncConstraint.swift:23:49: error: cannot find type 'DispatchQueue' in scope
21 | */
22 | @available(*, deprecated, renamed: "evaluate(with:)")
23 | func evaluate(with input: InputType, queue: DispatchQueue, completionHandler: @escaping (_ result: Result<Void, Summary<ErrorType>>) -> Void)
| `- error: cannot find type 'DispatchQueue' in scope
24 |
25 |
/host/spi-builder-workspace/Sources/Constraints/Constraint.swift:67:50: error: cannot find type 'DispatchQueue' in scope
65 | - parameter result: `.success` if the input is valid, `.failure` containing the `Summary` of the failing `Constraint`s otherwise.
66 | */
67 | func evaluate(with input: InputType, queue: DispatchQueue, completionHandler: @escaping (_ result: Result<Void, Summary<ErrorType>>) -> Void) {
| `- error: cannot find type 'DispatchQueue' in scope
68 |
69 | workQueue.async {
/host/spi-builder-workspace/Sources/Constraints/Constraint.swift:55:28: error: cannot find type 'DispatchQueue' in scope
53 | public extension Constraint {
54 |
55 | private var workQueue: DispatchQueue {
| `- error: cannot find type 'DispatchQueue' in scope
56 | return DispatchQueue(label: "com.nsagora.peppermint.constraint", attributes: .concurrent)
57 | }
/host/spi-builder-workspace/Sources/Constraints/Constraint.swift:56:16: error: cannot find 'DispatchQueue' in scope
54 |
55 | private var workQueue: DispatchQueue {
56 | return DispatchQueue(label: "com.nsagora.peppermint.constraint", attributes: .concurrent)
| `- error: cannot find 'DispatchQueue' in scope
57 | }
58 |
/host/spi-builder-workspace/Sources/Constraints/Constraint.swift:56:87: error: cannot infer contextual base in reference to member 'concurrent'
54 |
55 | private var workQueue: DispatchQueue {
56 | return DispatchQueue(label: "com.nsagora.peppermint.constraint", attributes: .concurrent)
| `- error: cannot infer contextual base in reference to member 'concurrent'
57 | }
58 |
[23/30] Compiling Peppermint Constraint.swift
/host/spi-builder-workspace/Sources/Constraints/AsyncConstraint.swift:23:49: error: cannot find type 'DispatchQueue' in scope
21 | */
22 | @available(*, deprecated, renamed: "evaluate(with:)")
23 | func evaluate(with input: InputType, queue: DispatchQueue, completionHandler: @escaping (_ result: Result<Void, Summary<ErrorType>>) -> Void)
| `- error: cannot find type 'DispatchQueue' in scope
24 |
25 |
/host/spi-builder-workspace/Sources/Constraints/Constraint.swift:67:50: error: cannot find type 'DispatchQueue' in scope
65 | - parameter result: `.success` if the input is valid, `.failure` containing the `Summary` of the failing `Constraint`s otherwise.
66 | */
67 | func evaluate(with input: InputType, queue: DispatchQueue, completionHandler: @escaping (_ result: Result<Void, Summary<ErrorType>>) -> Void) {
| `- error: cannot find type 'DispatchQueue' in scope
68 |
69 | workQueue.async {
/host/spi-builder-workspace/Sources/Constraints/Constraint.swift:55:28: error: cannot find type 'DispatchQueue' in scope
53 | public extension Constraint {
54 |
55 | private var workQueue: DispatchQueue {
| `- error: cannot find type 'DispatchQueue' in scope
56 | return DispatchQueue(label: "com.nsagora.peppermint.constraint", attributes: .concurrent)
57 | }
/host/spi-builder-workspace/Sources/Constraints/Constraint.swift:56:16: error: cannot find 'DispatchQueue' in scope
54 |
55 | private var workQueue: DispatchQueue {
56 | return DispatchQueue(label: "com.nsagora.peppermint.constraint", attributes: .concurrent)
| `- error: cannot find 'DispatchQueue' in scope
57 | }
58 |
/host/spi-builder-workspace/Sources/Constraints/Constraint.swift:56:87: error: cannot infer contextual base in reference to member 'concurrent'
54 |
55 | private var workQueue: DispatchQueue {
56 | return DispatchQueue(label: "com.nsagora.peppermint.constraint", attributes: .concurrent)
| `- error: cannot infer contextual base in reference to member 'concurrent'
57 | }
58 |
[24/30] Compiling Peppermint ConstraintBuilder.swift
/host/spi-builder-workspace/Sources/Constraints/AsyncConstraint.swift:23:49: error: cannot find type 'DispatchQueue' in scope
21 | */
22 | @available(*, deprecated, renamed: "evaluate(with:)")
23 | func evaluate(with input: InputType, queue: DispatchQueue, completionHandler: @escaping (_ result: Result<Void, Summary<ErrorType>>) -> Void)
| `- error: cannot find type 'DispatchQueue' in scope
24 |
25 |
/host/spi-builder-workspace/Sources/Constraints/Constraint.swift:67:50: error: cannot find type 'DispatchQueue' in scope
65 | - parameter result: `.success` if the input is valid, `.failure` containing the `Summary` of the failing `Constraint`s otherwise.
66 | */
67 | func evaluate(with input: InputType, queue: DispatchQueue, completionHandler: @escaping (_ result: Result<Void, Summary<ErrorType>>) -> Void) {
| `- error: cannot find type 'DispatchQueue' in scope
68 |
69 | workQueue.async {
/host/spi-builder-workspace/Sources/Constraints/Constraint.swift:55:28: error: cannot find type 'DispatchQueue' in scope
53 | public extension Constraint {
54 |
55 | private var workQueue: DispatchQueue {
| `- error: cannot find type 'DispatchQueue' in scope
56 | return DispatchQueue(label: "com.nsagora.peppermint.constraint", attributes: .concurrent)
57 | }
/host/spi-builder-workspace/Sources/Constraints/Constraint.swift:56:16: error: cannot find 'DispatchQueue' in scope
54 |
55 | private var workQueue: DispatchQueue {
56 | return DispatchQueue(label: "com.nsagora.peppermint.constraint", attributes: .concurrent)
| `- error: cannot find 'DispatchQueue' in scope
57 | }
58 |
/host/spi-builder-workspace/Sources/Constraints/Constraint.swift:56:87: error: cannot infer contextual base in reference to member 'concurrent'
54 |
55 | private var workQueue: DispatchQueue {
56 | return DispatchQueue(label: "com.nsagora.peppermint.constraint", attributes: .concurrent)
| `- error: cannot infer contextual base in reference to member 'concurrent'
57 | }
58 |
[25/30] Compiling Peppermint AnyPredicate.swift
/host/spi-builder-workspace/Sources/Predicates/AsyncPredicate.swift:19:49: error: cannot find type 'DispatchQueue' in scope
17 | - parameter matches: `true` if input matches the conditions specified by the receiver, `false` otherwise.
18 | */
19 | func evaluate(with input: InputType, queue: DispatchQueue, completionHandler: @escaping (_ matches: Bool) -> Void)
| `- error: cannot find type 'DispatchQueue' in scope
20 | }
21 |
/host/spi-builder-workspace/Sources/Predicates/Predicate.swift:52:56: error: cannot find type 'DispatchQueue' in scope
50 | - parameter matches: `true` if input matches the conditions specified by the receiver, `false` otherwise.
51 | */
52 | public func evaluate(with input: InputType, queue: DispatchQueue = .main, completionHandler: @escaping (_ matches: Bool) -> Void) {
| `- error: cannot find type 'DispatchQueue' in scope
53 |
54 | workQueue.async {
/host/spi-builder-workspace/Sources/Predicates/Predicate.swift:40:28: error: cannot find type 'DispatchQueue' in scope
38 | extension Predicate {
39 |
40 | private var workQueue: DispatchQueue {
| `- error: cannot find type 'DispatchQueue' in scope
41 | return DispatchQueue(label: "com.nsagora.peppermint.predicate", attributes: .concurrent)
42 | }
/host/spi-builder-workspace/Sources/Predicates/Predicate.swift:41:16: error: cannot find 'DispatchQueue' in scope
39 |
40 | private var workQueue: DispatchQueue {
41 | return DispatchQueue(label: "com.nsagora.peppermint.predicate", attributes: .concurrent)
| `- error: cannot find 'DispatchQueue' in scope
42 | }
43 |
/host/spi-builder-workspace/Sources/Predicates/Predicate.swift:41:86: error: cannot infer contextual base in reference to member 'concurrent'
39 |
40 | private var workQueue: DispatchQueue {
41 | return DispatchQueue(label: "com.nsagora.peppermint.predicate", attributes: .concurrent)
| `- error: cannot infer contextual base in reference to member 'concurrent'
42 | }
43 |
[26/30] Compiling Peppermint AsyncPredicate.swift
/host/spi-builder-workspace/Sources/Predicates/AsyncPredicate.swift:19:49: error: cannot find type 'DispatchQueue' in scope
17 | - parameter matches: `true` if input matches the conditions specified by the receiver, `false` otherwise.
18 | */
19 | func evaluate(with input: InputType, queue: DispatchQueue, completionHandler: @escaping (_ matches: Bool) -> Void)
| `- error: cannot find type 'DispatchQueue' in scope
20 | }
21 |
/host/spi-builder-workspace/Sources/Predicates/Predicate.swift:52:56: error: cannot find type 'DispatchQueue' in scope
50 | - parameter matches: `true` if input matches the conditions specified by the receiver, `false` otherwise.
51 | */
52 | public func evaluate(with input: InputType, queue: DispatchQueue = .main, completionHandler: @escaping (_ matches: Bool) -> Void) {
| `- error: cannot find type 'DispatchQueue' in scope
53 |
54 | workQueue.async {
/host/spi-builder-workspace/Sources/Predicates/Predicate.swift:40:28: error: cannot find type 'DispatchQueue' in scope
38 | extension Predicate {
39 |
40 | private var workQueue: DispatchQueue {
| `- error: cannot find type 'DispatchQueue' in scope
41 | return DispatchQueue(label: "com.nsagora.peppermint.predicate", attributes: .concurrent)
42 | }
/host/spi-builder-workspace/Sources/Predicates/Predicate.swift:41:16: error: cannot find 'DispatchQueue' in scope
39 |
40 | private var workQueue: DispatchQueue {
41 | return DispatchQueue(label: "com.nsagora.peppermint.predicate", attributes: .concurrent)
| `- error: cannot find 'DispatchQueue' in scope
42 | }
43 |
/host/spi-builder-workspace/Sources/Predicates/Predicate.swift:41:86: error: cannot infer contextual base in reference to member 'concurrent'
39 |
40 | private var workQueue: DispatchQueue {
41 | return DispatchQueue(label: "com.nsagora.peppermint.predicate", attributes: .concurrent)
| `- error: cannot infer contextual base in reference to member 'concurrent'
42 | }
43 |
[27/30] Compiling Peppermint Predicate.swift
/host/spi-builder-workspace/Sources/Predicates/AsyncPredicate.swift:19:49: error: cannot find type 'DispatchQueue' in scope
17 | - parameter matches: `true` if input matches the conditions specified by the receiver, `false` otherwise.
18 | */
19 | func evaluate(with input: InputType, queue: DispatchQueue, completionHandler: @escaping (_ matches: Bool) -> Void)
| `- error: cannot find type 'DispatchQueue' in scope
20 | }
21 |
/host/spi-builder-workspace/Sources/Predicates/Predicate.swift:52:56: error: cannot find type 'DispatchQueue' in scope
50 | - parameter matches: `true` if input matches the conditions specified by the receiver, `false` otherwise.
51 | */
52 | public func evaluate(with input: InputType, queue: DispatchQueue = .main, completionHandler: @escaping (_ matches: Bool) -> Void) {
| `- error: cannot find type 'DispatchQueue' in scope
53 |
54 | workQueue.async {
/host/spi-builder-workspace/Sources/Predicates/Predicate.swift:40:28: error: cannot find type 'DispatchQueue' in scope
38 | extension Predicate {
39 |
40 | private var workQueue: DispatchQueue {
| `- error: cannot find type 'DispatchQueue' in scope
41 | return DispatchQueue(label: "com.nsagora.peppermint.predicate", attributes: .concurrent)
42 | }
/host/spi-builder-workspace/Sources/Predicates/Predicate.swift:41:16: error: cannot find 'DispatchQueue' in scope
39 |
40 | private var workQueue: DispatchQueue {
41 | return DispatchQueue(label: "com.nsagora.peppermint.predicate", attributes: .concurrent)
| `- error: cannot find 'DispatchQueue' in scope
42 | }
43 |
/host/spi-builder-workspace/Sources/Predicates/Predicate.swift:41:86: error: cannot infer contextual base in reference to member 'concurrent'
39 |
40 | private var workQueue: DispatchQueue {
41 | return DispatchQueue(label: "com.nsagora.peppermint.predicate", attributes: .concurrent)
| `- error: cannot infer contextual base in reference to member 'concurrent'
42 | }
43 |
[28/30] Compiling Peppermint BlockPredicate.swift
/host/spi-builder-workspace/Sources/Predicates/AsyncPredicate.swift:19:49: error: cannot find type 'DispatchQueue' in scope
17 | - parameter matches: `true` if input matches the conditions specified by the receiver, `false` otherwise.
18 | */
19 | func evaluate(with input: InputType, queue: DispatchQueue, completionHandler: @escaping (_ matches: Bool) -> Void)
| `- error: cannot find type 'DispatchQueue' in scope
20 | }
21 |
[29/30] Compiling Peppermint CharacterSetPredicate.swift
/host/spi-builder-workspace/Sources/Predicates/AsyncPredicate.swift:19:49: error: cannot find type 'DispatchQueue' in scope
17 | - parameter matches: `true` if input matches the conditions specified by the receiver, `false` otherwise.
18 | */
19 | func evaluate(with input: InputType, queue: DispatchQueue, completionHandler: @escaping (_ matches: Bool) -> Void)
| `- error: cannot find type 'DispatchQueue' in scope
20 | }
21 |
[30/30] Compiling Peppermint DatePredicate.swift
/host/spi-builder-workspace/Sources/Predicates/AsyncPredicate.swift:19:49: error: cannot find type 'DispatchQueue' in scope
17 | - parameter matches: `true` if input matches the conditions specified by the receiver, `false` otherwise.
18 | */
19 | func evaluate(with input: InputType, queue: DispatchQueue, completionHandler: @escaping (_ matches: Bool) -> Void)
| `- error: cannot find type 'DispatchQueue' in scope
20 | }
21 |
BUILD FAILURE 6.3 wasm