Build Information
Successful build of AsyncExtensions, reference 0.9.5 (b97d38), with Swift 6.1 for Linux on 25 Mar 2026 09:31:30 UTC.
Swift 6 data race errors: 0
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4609320-1":/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:basic-6.1-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats 2>&1Build Log
========================================
RunAll
========================================
Builder version: 4.69.2
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/lhoward/AsyncExtensions.git
Reference: 0.9.5
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/lhoward/AsyncExtensions
* tag 0.9.5 -> FETCH_HEAD
HEAD is now at b97d381 Fix race condition in AsyncThrowingReplaySubject.handleNewConsumer
Cloned https://github.com/lhoward/AsyncExtensions.git
Revision (git rev-parse @):
b97d381f6156e8c34b718bddfb9481f957a07edc
SUCCESS checkout https://github.com/lhoward/AsyncExtensions.git at 0.9.5
========================================
Build
========================================
Selected platform: linux
Swift version: 6.1
Building package at path: $PWD
https://github.com/lhoward/AsyncExtensions.git
https://github.com/lhoward/AsyncExtensions.git
WARNING: environment variable SUPPRESS_SWIFT_6_FLAGS is not set
{
"dependencies" : [
{
"identity" : "swift-collections",
"requirement" : {
"range" : [
{
"lower_bound" : "1.0.3",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-collections.git"
},
{
"identity" : "swift-async-algorithms",
"requirement" : {
"range" : [
{
"lower_bound" : "1.0.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-async-algorithms.git"
},
{
"identity" : "opencombine",
"requirement" : {
"range" : [
{
"lower_bound" : "0.14.0",
"upper_bound" : "1.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/OpenCombine/OpenCombine.git"
},
{
"identity" : "swift-atomics",
"requirement" : {
"range" : [
{
"lower_bound" : "1.2.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-atomics.git"
}
],
"manifest_display_name" : "AsyncExtensions",
"name" : "AsyncExtensions",
"path" : "/host/spi-builder-workspace",
"platforms" : [
{
"name" : "ios",
"version" : "13.0"
},
{
"name" : "macos",
"version" : "10.15"
},
{
"name" : "tvos",
"version" : "13.0"
},
{
"name" : "watchos",
"version" : "6.0"
}
],
"products" : [
{
"name" : "AsyncExtensions",
"targets" : [
"AsyncExtensions"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "AsyncExtensionsTests",
"module_type" : "SwiftTarget",
"name" : "AsyncExtensionsTests",
"path" : "Tests",
"product_dependencies" : [
"OpenCombine",
"AsyncAlgorithms"
],
"sources" : [
"AsyncChannels/AsyncBufferedChannelTests.swift",
"AsyncChannels/AsyncBufferedThrowingChannelTests.swift",
"AsyncSubjets/AsyncCurrentValueSubjectTests.swift",
"AsyncSubjets/AsyncPassthroughSubjectTests.swift",
"AsyncSubjets/AsyncReplaySubjectTests.swift",
"AsyncSubjets/AsyncThrowingCurrentValueSubjectTests.swift",
"AsyncSubjets/AsyncThrowingPassthroughSubjectTests.swift",
"AsyncSubjets/AsyncThrowingReplaySubjectTests.swift",
"AsyncSubjets/StreamedTests.swift",
"Combiners/WithLatestFrom/AsyncWithLatestFrom2SequenceTests.swift",
"Combiners/WithLatestFrom/AsyncWithLatestFromSequenceTests.swift",
"Creators/AsyncEmptySequenceTests.swift",
"Creators/AsyncFailSequenceTests.swift",
"Creators/AsyncJustSequenceTests.swift",
"Creators/AsyncStream+PipeTests.swift",
"Creators/AsyncThrowingJustSequenceTests.swift",
"Creators/AsyncTimerSequenceTests.swift",
"Operators/AsyncHandleEventsSequenceTests.swift",
"Operators/AsyncMapToResultSequenceTests.swift",
"Operators/AsyncMulticastSequenceTests.swift",
"Operators/AsyncPrependSequenceTests.swift",
"Operators/AsyncScanSequenceTests.swift",
"Operators/AsyncSequence+AssignTests.swift",
"Operators/AsyncSequence+CollectTests.swift",
"Operators/AsyncSequence+EraseToAnyAsyncSequenceTests.swift",
"Operators/AsyncSequence+FlatMapLatestTests.swift",
"Operators/AsyncSequence+ShareTests.swift",
"Operators/AsyncSwitchToLatestSequenceTests.swift",
"Supporting/Helpers.swift"
],
"target_dependencies" : [
"AsyncExtensions"
],
"type" : "test"
},
{
"c99name" : "AsyncExtensions",
"module_type" : "SwiftTarget",
"name" : "AsyncExtensions",
"path" : "Sources",
"product_dependencies" : [
"Collections",
"Atomics"
],
"product_memberships" : [
"AsyncExtensions"
],
"sources" : [
"AsyncChannels/AsyncBufferedChannel.swift",
"AsyncChannels/AsyncThrowingBufferedChannel.swift",
"AsyncSubjects/AsyncCurrentValueSubject.swift",
"AsyncSubjects/AsyncPassthroughSubject.swift",
"AsyncSubjects/AsyncReplaySubject.swift",
"AsyncSubjects/AsyncSubject.swift",
"AsyncSubjects/AsyncThrowingCurrentValueSubject.swift",
"AsyncSubjects/AsyncThrowingPassthroughSubject.swift",
"AsyncSubjects/AsyncThrowingReplaySubject.swift",
"AsyncSubjects/Streamed.swift",
"Combiners/Merge/AsyncMergeSequence.swift",
"Combiners/Merge/MergeStateMachine.swift",
"Combiners/WithLatestFrom/AsyncWithLatestFrom2Sequence.swift",
"Combiners/WithLatestFrom/AsyncWithLatestFromSequence.swift",
"Common/Termination.swift",
"Creators/AsyncEmptySequence.swift",
"Creators/AsyncFailSequence.swift",
"Creators/AsyncJustSequence.swift",
"Creators/AsyncStream+Pipe.swift",
"Creators/AsyncThrowingJustSequence.swift",
"Creators/AsyncTimerSequence.swift",
"Operators/AsyncHandleEventsSequence.swift",
"Operators/AsyncMapToResultSequence.swift",
"Operators/AsyncMulticastSequence.swift",
"Operators/AsyncPrependSequence.swift",
"Operators/AsyncScanSequence.swift",
"Operators/AsyncSequence+Assign.swift",
"Operators/AsyncSequence+Collect.swift",
"Operators/AsyncSequence+EraseToAnyAsyncSequence.swift",
"Operators/AsyncSequence+FlatMapLatest.swift",
"Operators/AsyncSequence+Share.swift",
"Operators/AsyncSwitchToLatestSequence.swift",
"Supporting/Locking.swift",
"Supporting/Regulator.swift",
"Supporting/Result+ErrorMechanism.swift"
],
"type" : "library"
}
],
"tools_version" : "6.0"
}
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-1":/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:basic-6.1-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats 2>&1
basic-6.1-latest: Pulling from swiftpackageindex/spi-images
Digest: sha256:108e10880bce35e9496fba26782956e40a8e91a2a227f9b90af7e4cd93d2c183
Status: Image is up to date for registry.gitlab.com/swiftpackageindex/spi-images:basic-6.1-latest
Fetching https://github.com/apple/swift-collections.git
Fetching https://github.com/apple/swift-async-algorithms.git
Fetching https://github.com/OpenCombine/OpenCombine.git
Fetching https://github.com/apple/swift-atomics.git
[1/22628] Fetching swift-collections
[1133/28856] Fetching swift-collections, swift-async-algorithms
[2084/30676] Fetching swift-collections, swift-async-algorithms, swift-atomics
[9587/38960] Fetching swift-collections, swift-async-algorithms, swift-atomics, opencombine
Fetched https://github.com/apple/swift-atomics.git from cache (0.73s)
[19491/37140] Fetching swift-collections, swift-async-algorithms, opencombine
Fetched https://github.com/apple/swift-async-algorithms.git from cache (0.82s)
[19372/30912] Fetching swift-collections, opencombine
Fetched https://github.com/OpenCombine/OpenCombine.git from cache (2.23s)
Fetched https://github.com/apple/swift-collections.git from cache (2.26s)
Computing version for https://github.com/OpenCombine/OpenCombine.git
Computed https://github.com/OpenCombine/OpenCombine.git at 0.14.0 (4.92s)
Computing version for https://github.com/apple/swift-atomics.git
Computed https://github.com/apple/swift-atomics.git at 1.3.0 (0.67s)
Computing version for https://github.com/apple/swift-async-algorithms.git
Computed https://github.com/apple/swift-async-algorithms.git at 1.1.3 (0.84s)
Computing version for https://github.com/apple/swift-collections.git
Computed https://github.com/apple/swift-collections.git at 1.4.1 (0.83s)
Creating working copy for https://github.com/apple/swift-async-algorithms.git
Working copy of https://github.com/apple/swift-async-algorithms.git resolved at 1.1.3
Creating working copy for https://github.com/apple/swift-collections.git
Working copy of https://github.com/apple/swift-collections.git resolved at 1.4.1
Creating working copy for https://github.com/apple/swift-atomics.git
Working copy of https://github.com/apple/swift-atomics.git resolved at 1.3.0
Creating working copy for https://github.com/OpenCombine/OpenCombine.git
Working copy of https://github.com/OpenCombine/OpenCombine.git resolved at 0.14.0
Building for debugging...
[0/13] Write sources
[11/13] Compiling _AtomicsShims.c
[12/13] Write swift-version-24593BA9C3E375BF.txt
[14/49] Emitting module Atomics
[15/51] Compiling InternalCollectionsUtilities Span+Extras.swift
[16/51] Compiling InternalCollectionsUtilities String+Padding.swift
[17/51] Compiling InternalCollectionsUtilities _UnsafeBitSet+Index.swift
[18/51] Compiling Atomics IntegerOperations.swift
[19/51] Compiling Atomics Unmanaged extensions.swift
[20/51] Compiling InternalCollectionsUtilities LifetimeOverride.swift
[21/51] Compiling InternalCollectionsUtilities RandomAccessCollection+Offsets.swift
[22/51] Compiling InternalCollectionsUtilities Integer rank.swift
[23/51] Compiling InternalCollectionsUtilities UInt+first and last set bit.swift
[24/51] Compiling InternalCollectionsUtilities UInt+reversed.swift
[28/53] Compiling InternalCollectionsUtilities UnsafeMutableRawBufferPointer+Extras.swift
[29/53] Compiling InternalCollectionsUtilities UnsafeRawBufferPointer+Extras.swift
[30/53] Compiling InternalCollectionsUtilities _UnsafeBitSet+_Word.swift
[31/53] Compiling InternalCollectionsUtilities _UnsafeBitSet.swift
[32/53] Compiling InternalCollectionsUtilities UnsafeBufferPointer+Extras.swift
[33/53] Compiling InternalCollectionsUtilities UnsafeMutableBufferPointer+Extras.swift
[34/53] Compiling InternalCollectionsUtilities Debugging.swift
[35/53] Compiling InternalCollectionsUtilities Descriptions.swift
[36/53] Compiling InternalCollectionsUtilities FixedWidthInteger+roundUpToPowerOfTwo.swift
[48/54] Compiling InternalCollectionsUtilities _SortedCollection.swift
[49/54] Compiling InternalCollectionsUtilities _UniqueCollection.swift
[53/54] Emitting module InternalCollectionsUtilities
[56/350] Compiling HeapModule Heap+Invariants.swift
[57/350] Compiling HeapModule Heap+ExpressibleByArrayLiteral.swift
[58/350] Compiling ContainersPreview BorrowingSequence+Utilities.swift
[59/350] Compiling ContainersPreview BorrowingSequence.swift
[60/350] Compiling ContainersPreview BidirectionalContainer.swift
[61/350] Compiling ContainersPreview Container+Filter.swift
[62/350] Compiling ContainersPreview Container+SpanwiseZip.swift
[63/350] Compiling ContainersPreview Container.swift
[64/350] Compiling ContainersPreview ContainerIterator.swift
[65/350] Compiling ContainersPreview DynamicContainer.swift
[66/350] Compiling ContainersPreview MutableContainer.swift
[67/350] Compiling ContainersPreview PermutableContainer.swift
[68/359] Compiling HeapModule Heap+Descriptions.swift
[69/359] Compiling ContainersPreview Drain+Reduce.swift
[70/359] Compiling ContainersPreview Drain.swift
[71/359] Compiling ContainersPreview Producer+Collect.swift
[72/359] Compiling ContainersPreview Producer+Filter.swift
[73/359] Compiling ContainersPreview Producer+Map.swift
[74/359] Compiling ContainersPreview Producer+Reduce.swift
[75/359] Compiling ContainersPreview Producer.swift
[76/359] Compiling ContainersPreview Borrow.swift
[77/359] Compiling ContainersPreview RandomAccessContainer.swift
[78/359] Compiling ContainersPreview RangeExpression2.swift
[79/359] Compiling ContainersPreview RangeReplaceableContainer.swift
[80/359] Compiling ContainersPreview Drain+Map.swift
[81/363] Compiling ContainersPreview BorrowingIteratorProtocol+Map.swift
[82/363] Compiling ContainersPreview BorrowingIteratorProtocol+Reduce.swift
[83/363] Compiling ContainersPreview BorrowingIteratorProtocol+SpanwiseZip.swift
[84/363] Compiling ContainersPreview BorrowingIteratorProtocol.swift
[85/363] Compiling ContainersPreview BorrowingSequence+Standard Conformances.swift
[86/363] Compiling ContainersPreview OutputSpan+Extras.swift
[87/363] Compiling ContainersPreview TemporaryAllocation.swift
[88/363] Compiling ContainersPreview BorrowingIteratorProtocol+Copy.swift
[89/363] Compiling ContainersPreview BorrowingIteratorProtocol+ElementsEqual.swift
[90/363] Compiling ContainersPreview BorrowingIteratorProtocol+Filter.swift
[96/363] Emitting module ContainersPreview
[102/363] Compiling HeapModule Heap.swift
[103/363] Compiling HeapModule _HeapNode.swift
[114/363] Compiling ContainersPreview Box.swift
[115/363] Compiling ContainersPreview Inout.swift
[116/363] Compiling ContainersPreview InputSpan.swift
[117/363] Compiling ContainersPreview Shared.swift
[118/364] Emitting module HeapModule
[120/364] Compiling HeapModule Heap+UnsafeHandle.swift
[121/365] Compiling _RopeModule BigSubstring.swift
[122/365] Compiling _RopeModule Rope+Builder.swift
[123/365] Compiling _RopeModule Rope+Debugging.swift
[124/365] Compiling _RopeModule Rope+Invariants.swift
[125/365] Compiling _RopeModule Rope+Join.swift
[126/365] Compiling _RopeModule Rope+MutatingForEach.swift
[127/365] Compiling _RopeModule Rope+Remove.swift
[128/365] Compiling _RopeModule Rope+RemoveSubrange.swift
[129/365] Compiling _RopeModule Rope+Split.swift
[130/365] Compiling _RopeModule Optional Utilities.swift
[132/415] Compiling DequeModule RigidDeque+Container.swift
[133/415] Compiling DequeModule RigidDeque+Descriptions.swift
[134/415] Compiling DequeModule RigidDeque+Equatable.swift
[135/415] Compiling DequeModule RigidDeque+Experimental.swift
[136/415] Compiling DequeModule RigidDeque+Hashable.swift
[137/415] Compiling DequeModule RigidDeque+Initializers.swift
[138/415] Compiling DequeModule RigidDeque+Insertions.swift
[139/415] Compiling DequeModule RigidDeque+Prepend.swift
[140/415] Compiling DequeModule RigidDeque+Removals.swift
[141/415] Compiling DequeModule RigidDeque+Replacements.swift
[142/415] Compiling DequeModule RigidDeque+Testing.swift
[143/415] Compiling DequeModule RigidDeque.swift
[144/415] Compiling DequeModule UniqueDeque+Append.swift
[145/415] Compiling DequeModule UniqueDeque+Consumption.swift
[146/415] Compiling DequeModule UniqueDeque+Container.swift
[147/422] Compiling _RopeModule BigString+Sequence.swift
[148/422] Compiling _RopeModule BigString+TextOutputStream.swift
[149/422] Compiling _RopeModule BigString+Append.swift
[150/422] Compiling _RopeModule BigString+Initializers.swift
[151/422] Compiling _RopeModule BigString+Insert.swift
[152/422] Compiling OrderedCollections OrderedSet+RandomAccessCollection.swift
[153/422] Compiling OrderedCollections OrderedSet+ReserveCapacity.swift
[161/422] Emitting module BitCollections
[162/429] Compiling DequeModule UniqueDeque+Descriptions.swift
[163/429] Compiling DequeModule UniqueDeque+Equatable.swift
[164/429] Compiling DequeModule UniqueDeque+Experimental.swift
[165/429] Compiling DequeModule UniqueDeque+Hashable.swift
[166/429] Compiling DequeModule UniqueDeque+Initializers.swift
[167/429] Compiling DequeModule UniqueDeque+Insertions.swift
[168/429] Compiling DequeModule UniqueDeque+Prepend.swift
[169/429] Compiling DequeModule UniqueDeque+Removals.swift
[186/434] Compiling OrderedCollections OrderedSet+SubSequence.swift
[187/434] Compiling OrderedCollections OrderedSet+Testing.swift
[188/434] Compiling OrderedCollections OrderedSet+UnorderedView.swift
[189/434] Compiling OrderedCollections OrderedSet+UnstableInternals.swift
[190/434] Compiling OrderedCollections OrderedSet.swift
[191/434] Compiling OrderedCollections _UnsafeBitset.swift
[192/434] Compiling _RopeModule BigString+UnicodeScalarView.swift
[193/434] Compiling _RopeModule BigSubstring+UTF16View.swift
[194/434] Compiling _RopeModule BigSubstring+UTF8View.swift
[195/434] Compiling _RopeModule BigSubstring+UnicodeScalarView.swift
[196/434] Compiling DequeModule _DequeBuffer.swift
[197/434] Compiling DequeModule _DequeBufferHeader.swift
[198/434] Compiling DequeModule RigidDeque+Append.swift
[199/434] Compiling DequeModule RigidDeque+Consumption.swift
[215/434] Compiling OrderedCollections _HashTable+Bucket.swift
[216/434] Compiling OrderedCollections _HashTable+BucketIterator.swift
[217/434] Compiling OrderedCollections _HashTable+Constants.swift
[218/434] Compiling OrderedCollections _HashTable+CustomStringConvertible.swift
[219/434] Compiling OrderedCollections _HashTable+Testing.swift
[220/434] Compiling OrderedCollections _HashTable+UnsafeHandle.swift
[221/434] Compiling OrderedCollections _HashTable.swift
[222/434] Compiling BitCollections BitSet.Index.swift
[223/434] Compiling OrderedCollections OrderedSet+Sendable.swift
[224/434] Compiling DequeModule Deque+Codable.swift
[225/434] Compiling DequeModule Deque+Collection.swift
[226/434] Compiling DequeModule Deque+CustomReflectable.swift
[227/434] Compiling DequeModule Deque+Descriptions.swift
[228/434] Compiling DequeModule Deque+Equatable.swift
[229/434] Compiling DequeModule Deque+ExpressibleByArrayLiteral.swift
[230/434] Compiling DequeModule Deque+Extras.swift
[231/434] Compiling DequeModule Deque+Hashable.swift
[248/434] Compiling DequeModule Deque+Testing.swift
[249/434] Compiling DequeModule Deque._Storage.swift
[250/434] Compiling DequeModule Deque._UnsafeHandle.swift
[251/434] Compiling DequeModule Deque.swift
[262/434] Compiling HashTreeCollections TreeSet+SetAlgebra isEqualSet.swift
[263/434] Compiling HashTreeCollections TreeSet+SetAlgebra isStrictSubset.swift
[264/434] Compiling HashTreeCollections TreeSet+SetAlgebra isStrictSuperset.swift
[268/434] Compiling HashTreeCollections TreeSet+SetAlgebra isSubset.swift
[269/434] Compiling HashTreeCollections TreeSet+SetAlgebra isSuperset.swift
[270/434] Compiling HashTreeCollections TreeSet+SetAlgebra subtract.swift
[271/434] Compiling HashTreeCollections TreeSet+SetAlgebra subtracting.swift
[272/434] Compiling HashTreeCollections TreeSet+SetAlgebra symmetricDifference.swift
[273/434] Compiling HashTreeCollections TreeSet+SetAlgebra union.swift
[274/434] Compiling HashTreeCollections TreeSet.swift
[288/434] Compiling DequeModule UniqueDeque+Replacements.swift
[289/434] Compiling DequeModule UniqueDeque.swift
[290/434] Compiling DequeModule _DequeSlot.swift
[291/434] Compiling DequeModule _UnsafeDequeHandle.swift
[292/434] Compiling DequeModule _UnsafeDequeSegments.swift
[387/435] Emitting module _RopeModule
[388/436] Emitting module OrderedCollections
[398/437] Emitting module DequeModule
[438/438] Emitting module HashTreeCollections
[440/445] Compiling Collections HeapModule reexports.swift
[441/445] Compiling Collections OrderedCollections reexports.swift
[442/445] Compiling Collections HashTreeCollections reexports.swift
[443/445] Compiling Collections DequeModule reexports.swift
[444/445] Compiling Collections BitCollections reexports.swift
[445/445] Emitting module Collections
[447/478] Emitting module AsyncExtensions
[448/478] Compiling AsyncExtensions AsyncEmptySequence.swift
[449/478] Compiling AsyncExtensions AsyncFailSequence.swift
[450/478] Compiling AsyncExtensions AsyncJustSequence.swift
[451/478] Compiling AsyncExtensions AsyncStream+Pipe.swift
[452/482] Compiling AsyncExtensions AsyncBufferedChannel.swift
[453/482] Compiling AsyncExtensions AsyncThrowingBufferedChannel.swift
[454/482] Compiling AsyncExtensions AsyncCurrentValueSubject.swift
[455/482] Compiling AsyncExtensions AsyncPassthroughSubject.swift
[456/482] Compiling AsyncExtensions AsyncReplaySubject.swift
[457/482] Compiling AsyncExtensions AsyncMergeSequence.swift
[458/482] Compiling AsyncExtensions MergeStateMachine.swift
[459/482] Compiling AsyncExtensions AsyncWithLatestFrom2Sequence.swift
[460/482] Compiling AsyncExtensions AsyncWithLatestFromSequence.swift
[461/482] Compiling AsyncExtensions Termination.swift
[462/482] Compiling AsyncExtensions AsyncSwitchToLatestSequence.swift
[463/482] Compiling AsyncExtensions Locking.swift
[464/482] Compiling AsyncExtensions Regulator.swift
[465/482] Compiling AsyncExtensions Result+ErrorMechanism.swift
[466/482] Compiling AsyncExtensions AsyncSequence+Collect.swift
[467/482] Compiling AsyncExtensions AsyncSequence+EraseToAnyAsyncSequence.swift
[468/482] Compiling AsyncExtensions AsyncSequence+FlatMapLatest.swift
[469/482] Compiling AsyncExtensions AsyncSequence+Share.swift
[470/482] Compiling AsyncExtensions AsyncSubject.swift
[471/482] Compiling AsyncExtensions AsyncThrowingCurrentValueSubject.swift
[472/482] Compiling AsyncExtensions AsyncThrowingPassthroughSubject.swift
[473/482] Compiling AsyncExtensions AsyncThrowingReplaySubject.swift
[474/482] Compiling AsyncExtensions Streamed.swift
[475/482] Compiling AsyncExtensions AsyncMulticastSequence.swift
[476/482] Compiling AsyncExtensions AsyncPrependSequence.swift
[477/482] Compiling AsyncExtensions AsyncScanSequence.swift
[478/482] Compiling AsyncExtensions AsyncSequence+Assign.swift
[479/482] Compiling AsyncExtensions AsyncThrowingJustSequence.swift
[480/482] Compiling AsyncExtensions AsyncTimerSequence.swift
[481/482] Compiling AsyncExtensions AsyncHandleEventsSequence.swift
[482/482] Compiling AsyncExtensions AsyncMapToResultSequence.swift
Build complete! (37.81s)
Build complete.
{
"dependencies" : [
{
"identity" : "swift-collections",
"requirement" : {
"range" : [
{
"lower_bound" : "1.0.3",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-collections.git"
},
{
"identity" : "swift-async-algorithms",
"requirement" : {
"range" : [
{
"lower_bound" : "1.0.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-async-algorithms.git"
},
{
"identity" : "opencombine",
"requirement" : {
"range" : [
{
"lower_bound" : "0.14.0",
"upper_bound" : "1.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/OpenCombine/OpenCombine.git"
},
{
"identity" : "swift-atomics",
"requirement" : {
"range" : [
{
"lower_bound" : "1.2.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-atomics.git"
}
],
"manifest_display_name" : "AsyncExtensions",
"name" : "AsyncExtensions",
"path" : "/host/spi-builder-workspace",
"platforms" : [
{
"name" : "ios",
"version" : "13.0"
},
{
"name" : "macos",
"version" : "10.15"
},
{
"name" : "tvos",
"version" : "13.0"
},
{
"name" : "watchos",
"version" : "6.0"
}
],
"products" : [
{
"name" : "AsyncExtensions",
"targets" : [
"AsyncExtensions"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "AsyncExtensionsTests",
"module_type" : "SwiftTarget",
"name" : "AsyncExtensionsTests",
"path" : "Tests",
"product_dependencies" : [
"OpenCombine",
"AsyncAlgorithms"
],
"sources" : [
"AsyncChannels/AsyncBufferedChannelTests.swift",
"AsyncChannels/AsyncBufferedThrowingChannelTests.swift",
"AsyncSubjets/AsyncCurrentValueSubjectTests.swift",
"AsyncSubjets/AsyncPassthroughSubjectTests.swift",
"AsyncSubjets/AsyncReplaySubjectTests.swift",
"AsyncSubjets/AsyncThrowingCurrentValueSubjectTests.swift",
"AsyncSubjets/AsyncThrowingPassthroughSubjectTests.swift",
"AsyncSubjets/AsyncThrowingReplaySubjectTests.swift",
"AsyncSubjets/StreamedTests.swift",
"Combiners/WithLatestFrom/AsyncWithLatestFrom2SequenceTests.swift",
"Combiners/WithLatestFrom/AsyncWithLatestFromSequenceTests.swift",
"Creators/AsyncEmptySequenceTests.swift",
"Creators/AsyncFailSequenceTests.swift",
"Creators/AsyncJustSequenceTests.swift",
"Creators/AsyncStream+PipeTests.swift",
"Creators/AsyncThrowingJustSequenceTests.swift",
"Creators/AsyncTimerSequenceTests.swift",
"Operators/AsyncHandleEventsSequenceTests.swift",
"Operators/AsyncMapToResultSequenceTests.swift",
"Operators/AsyncMulticastSequenceTests.swift",
"Operators/AsyncPrependSequenceTests.swift",
"Operators/AsyncScanSequenceTests.swift",
"Operators/AsyncSequence+AssignTests.swift",
"Operators/AsyncSequence+CollectTests.swift",
"Operators/AsyncSequence+EraseToAnyAsyncSequenceTests.swift",
"Operators/AsyncSequence+FlatMapLatestTests.swift",
"Operators/AsyncSequence+ShareTests.swift",
"Operators/AsyncSwitchToLatestSequenceTests.swift",
"Supporting/Helpers.swift"
],
"target_dependencies" : [
"AsyncExtensions"
],
"type" : "test"
},
{
"c99name" : "AsyncExtensions",
"module_type" : "SwiftTarget",
"name" : "AsyncExtensions",
"path" : "Sources",
"product_dependencies" : [
"Collections",
"Atomics"
],
"product_memberships" : [
"AsyncExtensions"
],
"sources" : [
"AsyncChannels/AsyncBufferedChannel.swift",
"AsyncChannels/AsyncThrowingBufferedChannel.swift",
"AsyncSubjects/AsyncCurrentValueSubject.swift",
"AsyncSubjects/AsyncPassthroughSubject.swift",
"AsyncSubjects/AsyncReplaySubject.swift",
"AsyncSubjects/AsyncSubject.swift",
"AsyncSubjects/AsyncThrowingCurrentValueSubject.swift",
"AsyncSubjects/AsyncThrowingPassthroughSubject.swift",
"AsyncSubjects/AsyncThrowingReplaySubject.swift",
"AsyncSubjects/Streamed.swift",
"Combiners/Merge/AsyncMergeSequence.swift",
"Combiners/Merge/MergeStateMachine.swift",
"Combiners/WithLatestFrom/AsyncWithLatestFrom2Sequence.swift",
"Combiners/WithLatestFrom/AsyncWithLatestFromSequence.swift",
"Common/Termination.swift",
"Creators/AsyncEmptySequence.swift",
"Creators/AsyncFailSequence.swift",
"Creators/AsyncJustSequence.swift",
"Creators/AsyncStream+Pipe.swift",
"Creators/AsyncThrowingJustSequence.swift",
"Creators/AsyncTimerSequence.swift",
"Operators/AsyncHandleEventsSequence.swift",
"Operators/AsyncMapToResultSequence.swift",
"Operators/AsyncMulticastSequence.swift",
"Operators/AsyncPrependSequence.swift",
"Operators/AsyncScanSequence.swift",
"Operators/AsyncSequence+Assign.swift",
"Operators/AsyncSequence+Collect.swift",
"Operators/AsyncSequence+EraseToAnyAsyncSequence.swift",
"Operators/AsyncSequence+FlatMapLatest.swift",
"Operators/AsyncSequence+Share.swift",
"Operators/AsyncSwitchToLatestSequence.swift",
"Supporting/Locking.swift",
"Supporting/Regulator.swift",
"Supporting/Result+ErrorMechanism.swift"
],
"type" : "library"
}
],
"tools_version" : "6.0"
}
basic-6.1-latest: Pulling from swiftpackageindex/spi-images
Digest: sha256:108e10880bce35e9496fba26782956e40a8e91a2a227f9b90af7e4cd93d2c183
Status: Image is up to date for registry.gitlab.com/swiftpackageindex/spi-images:basic-6.1-latest
Done.