Skip to content

Commit ae3f677

Browse files
committed
Fix CI
1 parent 0ae6092 commit ae3f677

File tree

5 files changed

+42
-10
lines changed

5 files changed

+42
-10
lines changed

.github/workflows/pull_request.yml

+1
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,4 @@ jobs:
1313
uses: swiftlang/github-workflows/.github/workflows/soundness.yml@main
1414
with:
1515
license_header_check_project_name: "Swift Async Algorithms"
16+
format_check_container_image: "swiftlang/swift:nightly-6.1-noble" # Needed since 6.0.x doesn't support sending keyword

Sources/AsyncAlgorithms/MultiProducerSingleConsumerChannel/MultiProducerSingleConsumerChannel+Internal.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ extension MultiProducerSingleConsumerChannel {
162162
init(
163163
backpressureStrategy: _InternalBackpressureStrategy
164164
) {
165-
self._stateMachine = .init(.init(backpressureStrategy: backpressureStrategy))
165+
self._stateMachine = Mutex<_StateMachine>(_StateMachine(backpressureStrategy: backpressureStrategy))
166166
}
167167

168168
func channelDeinitialized() {

Sources/AsyncAlgorithms/MultiProducerSingleConsumerChannel/MultiProducerSingleConsumerChannel.swift

+9-9
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ extension MultiProducerSingleConsumerChannel {
274274
/// - Returns: The result that indicates if more elements should be produced at this time.
275275
@inlinable
276276
public mutating func send<S>(
277-
contentsOf sequence: consuming sendingS
277+
contentsOf sequence: consuming sending S
278278
) throws -> SendResult where Element == S.Element, S: Sequence, Element: Copyable {
279279
try self._storage.send(contentsOf: sequence)
280280
}
@@ -288,7 +288,7 @@ extension MultiProducerSingleConsumerChannel {
288288
/// - Parameter element: The element to send to the channel.
289289
/// - Returns: The result that indicates if more elements should be produced at this time.
290290
@inlinable
291-
public mutating func send(_ element: consuming sendingElement) throws -> SendResult {
291+
public mutating func send(_ element: consuming sending Element) throws -> SendResult {
292292
try self._storage.send(contentsOf: CollectionOfOne(element))
293293
}
294294

@@ -334,7 +334,7 @@ extension MultiProducerSingleConsumerChannel {
334334
/// invoked during the call to ``send(contentsOf:onProduceMore:)``.
335335
@inlinable
336336
public mutating func send<S>(
337-
contentsOf sequence: consuming sendingS,
337+
contentsOf sequence: consuming sending S,
338338
onProduceMore: @escaping @Sendable (Result<Void, Error>) -> Void
339339
) where Element == S.Element, S: Sequence, Element: Copyable {
340340
do {
@@ -364,7 +364,7 @@ extension MultiProducerSingleConsumerChannel {
364364
/// invoked during the call to ``send(_:onProduceMore:)``.
365365
@inlinable
366366
public mutating func send(
367-
_ element: consuming sendingElement,
367+
_ element: consuming sending Element,
368368
onProduceMore: @escaping @Sendable (Result<Void, Error>) -> Void
369369
) {
370370
do {
@@ -394,9 +394,9 @@ extension MultiProducerSingleConsumerChannel {
394394
/// - sequence: The elements to send to the channel.
395395
@inlinable
396396
public mutating func send<S>(
397-
contentsOf sequence: consuming sendingS
397+
contentsOf sequence: consuming sending S
398398
) async throws where Element == S.Element, S: Sequence, Element: Copyable {
399-
let syncSend: (sending S, inout sendingSelf) throws -> SendResult = { try $1.send(contentsOf: $0) }
399+
let syncSend: (sending S, inout sending Self) throws -> SendResult = { try $1.send(contentsOf: $0) }
400400
let sendResult = try syncSend(sequence, &self)
401401

402402
switch consume sendResult {
@@ -430,8 +430,8 @@ extension MultiProducerSingleConsumerChannel {
430430
/// - Parameters:
431431
/// - element: The element to send to the channel.
432432
@inlinable
433-
public mutating func send(_ element: consuming sendingElement) async throws {
434-
let syncSend: (consuming sendingElement, inout sendingSelf) throws -> SendResult = { try $1.send($0) }
433+
public mutating func send(_ element: consuming sending Element) async throws {
434+
let syncSend: (consuming sending Element, inout sending Self) throws -> SendResult = { try $1.send($0) }
435435
let sendResult = try syncSend(element, &self)
436436

437437
switch consume sendResult {
@@ -463,7 +463,7 @@ extension MultiProducerSingleConsumerChannel {
463463
/// - Parameters:
464464
/// - sequence: The elements to send to the channel.
465465
@inlinable
466-
public mutating func send<S>(contentsOf sequence: consuming sendingS) async throws
466+
public mutating func send<S>(contentsOf sequence: consuming sending S) async throws
467467
where Element == S.Element, S: AsyncSequence, Element: Copyable, S: Sendable, Element: Sendable {
468468
for try await element in sequence {
469469
try await self.send(contentsOf: CollectionOfOne(element))

Sources/Example/Example.swift

+20
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
//===----------------------------------------------------------------------===//
2+
//
3+
// This source file is part of the Swift Async Algorithms open source project
4+
//
5+
// Copyright (c) 2025 Apple Inc. and the Swift project authors
6+
// Licensed under Apache License v2.0 with Runtime Library Exception
7+
//
8+
// See https://swift.org/LICENSE.txt for license information
9+
//
10+
//===----------------------------------------------------------------------===//
11+
12+
#if compiler(>=6.0)
113
import AsyncAlgorithms
214

315
@available(macOS 15.0, *)
@@ -65,3 +77,11 @@ struct Example {
6577
}
6678
}
6779
}
80+
#else
81+
@main
82+
struct Example {
83+
static func main() async throws {
84+
fatalError("Example only supports Swift 6.0 and above")
85+
}
86+
}
87+
#endif

Tests/AsyncAlgorithmsTests/Support/ManualExecutor.swift

+11
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
//===----------------------------------------------------------------------===//
2+
//
3+
// This source file is part of the Swift Async Algorithms open source project
4+
//
5+
// Copyright (c) 2025 Apple Inc. and the Swift project authors
6+
// Licensed under Apache License v2.0 with Runtime Library Exception
7+
//
8+
// See https://swift.org/LICENSE.txt for license information
9+
//
10+
//===----------------------------------------------------------------------===//
11+
112
import DequeModule
213
import Synchronization
314

0 commit comments

Comments
 (0)