Build Information
Successful build of Inotify, reference main (10943f), with Swift 6.1 for Linux on 23 Mar 2026 22:46:08 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/astzweig/swift-inotify.git
Reference: main
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/astzweig/swift-inotify
* branch main -> FETCH_HEAD
* [new branch] main -> origin/main
HEAD is now at 10943f9 Make events property of Inotify nonisolated
Cloned https://github.com/astzweig/swift-inotify.git
Revision (git rev-parse @):
10943f9ce328786faef1cae2f680601b33d5a5ab
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/astzweig/swift-inotify.git at main
========================================
Build
========================================
Selected platform: linux
Swift version: 6.1
Building package at path: $PWD
https://github.com/astzweig/swift-inotify.git
https://github.com/astzweig/swift-inotify.git
WARNING: environment variable SUPPRESS_SWIFT_6_FLAGS is not set
{
"dependencies" : [
{
"identity" : "swift-argument-parser",
"requirement" : {
"range" : [
{
"lower_bound" : "1.7.1",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-argument-parser"
},
{
"identity" : "swift-log",
"requirement" : {
"range" : [
{
"lower_bound" : "1.10.1",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-log"
},
{
"identity" : "swift-nio",
"requirement" : {
"range" : [
{
"lower_bound" : "2.95.0",
"upper_bound" : "3.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-nio"
},
{
"identity" : "swift-system",
"requirement" : {
"range" : [
{
"lower_bound" : "1.6.4",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-system"
},
{
"identity" : "swift-subprocess",
"requirement" : {
"range" : [
{
"lower_bound" : "0.3.0",
"upper_bound" : "1.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/swiftlang/swift-subprocess.git"
},
{
"identity" : "noora",
"requirement" : {
"range" : [
{
"lower_bound" : "0.55.1",
"upper_bound" : "1.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/tuist/Noora"
}
],
"manifest_display_name" : "Inotify",
"name" : "Inotify",
"path" : "/host/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "13.0"
},
{
"name" : "Linux",
"version" : "4.4.302"
}
],
"products" : [
{
"name" : "Inotify",
"targets" : [
"Inotify"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "InotifyTaskCLI",
"targets" : [
"InotifyTaskCLI"
],
"type" : {
"executable" : null
}
}
],
"targets" : [
{
"c99name" : "InotifyTaskCLI",
"module_type" : "SwiftTarget",
"name" : "InotifyTaskCLI",
"path" : "Sources/TaskCLI",
"product_dependencies" : [
"ArgumentParser",
"Logging",
"_NIOFileSystem",
"Subprocess",
"Noora"
],
"product_memberships" : [
"InotifyTaskCLI"
],
"sources" : [
"Command.swift",
"DoccFinder.swift",
"Docker.swift",
"GenerateDocumentation Command.swift",
"Global Options.swift",
"Test Command.swift"
],
"type" : "executable"
},
{
"c99name" : "InotifyIntegrationTests",
"module_type" : "SwiftTarget",
"name" : "InotifyIntegrationTests",
"path" : "Tests/InotifyIntegrationTests",
"product_dependencies" : [
"SystemPackage"
],
"sources" : [
"DirectoryResolverTests.swift",
"EventTests.swift",
"InitialisationTests.swift",
"InotifyLimitTests.swift",
"RecursiveEventTests.swift",
"Utilities/createFile.swift",
"Utilities/createSubdirectorytree.swift",
"Utilities/getEventsForTrigger.swift",
"Utilities/withLowInotifyWatchLimit.swift",
"Utilities/withTempDir.swift",
"WatchTests.swift"
],
"target_dependencies" : [
"Inotify"
],
"type" : "test"
},
{
"c99name" : "Inotify",
"module_type" : "SwiftTarget",
"name" : "Inotify",
"path" : "Sources/Inotify",
"product_dependencies" : [
"Logging",
"_NIOFileSystem",
"SystemPackage"
],
"product_memberships" : [
"Inotify"
],
"sources" : [
"DirectoryResolver.swift",
"DirectoryResolverErrror.swift",
"Inotify.swift",
"InotifyError.swift",
"InotifyEvent.swift",
"InotifyEventMask.swift",
"InotifyEventParser.swift",
"InotifyWatchManager.swift",
"RawInotifyEvent.swift"
],
"target_dependencies" : [
"CInotify"
],
"type" : "library"
},
{
"c99name" : "CInotify",
"module_type" : "SystemLibraryTarget",
"name" : "CInotify",
"path" : "Sources/CInotify",
"product_memberships" : [
"Inotify"
],
"sources" : [
],
"type" : "system-target"
}
],
"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:7e70e0a64d2f2fbcaf7a9ded92418bf54647123e95b9450d840f38f11e93f5d2
Status: Image is up to date for registry.gitlab.com/swiftpackageindex/spi-images:basic-6.1-latest
Fetching https://github.com/apple/swift-nio
Fetching https://github.com/tuist/Noora
Fetching https://github.com/apple/swift-system
Fetching https://github.com/apple/swift-log
Fetching https://github.com/apple/swift-argument-parser
Fetching https://github.com/swiftlang/swift-subprocess.git
[1/18760] Fetching noora
[1315/36174] Fetching noora, swift-argument-parser
[2963/41775] Fetching noora, swift-argument-parser, swift-system
[2964/48036] Fetching noora, swift-argument-parser, swift-system, swift-log
[5832/50722] Fetching noora, swift-argument-parser, swift-system, swift-log, swift-subprocess
[27826/133627] Fetching noora, swift-argument-parser, swift-system, swift-log, swift-subprocess, swift-nio
Fetched https://github.com/swiftlang/swift-subprocess.git from cache (1.37s)
[48309/130941] Fetching noora, swift-argument-parser, swift-system, swift-log, swift-nio
Fetched https://github.com/apple/swift-system from cache (1.38s)
[44366/125340] Fetching noora, swift-argument-parser, swift-log, swift-nio
Fetched https://github.com/apple/swift-log from cache (1.39s)
[38934/119079] Fetching noora, swift-argument-parser, swift-nio
Fetched https://github.com/apple/swift-argument-parser from cache (1.40s)
[22349/101665] Fetching noora, swift-nio
Fetched https://github.com/tuist/Noora from cache (7.89s)
Fetched https://github.com/apple/swift-nio from cache (9.05s)
Computing version for https://github.com/swiftlang/swift-subprocess.git
Computed https://github.com/swiftlang/swift-subprocess.git at 0.3.0 (9.69s)
Computing version for https://github.com/apple/swift-system
Computed https://github.com/apple/swift-system at 1.6.4 (0.64s)
Computing version for https://github.com/apple/swift-log
Computed https://github.com/apple/swift-log at 1.10.1 (1.83s)
Computing version for https://github.com/apple/swift-argument-parser
Computed https://github.com/apple/swift-argument-parser at 1.7.1 (0.63s)
Computing version for https://github.com/tuist/Noora
Computed https://github.com/tuist/Noora at 0.56.0 (0.58s)
Fetching https://github.com/onevcat/Rainbow
Fetching https://github.com/tuist/path
[1/1427] Fetching rainbow
[59/1822] Fetching rainbow, path
Fetched https://github.com/tuist/path from cache (0.26s)
Fetched https://github.com/onevcat/Rainbow from cache (0.26s)
Computing version for https://github.com/tuist/path
Computed https://github.com/tuist/path at 0.3.8 (2.97s)
Computing version for https://github.com/onevcat/Rainbow
Computed https://github.com/onevcat/Rainbow at 4.2.1 (3.05s)
Computing version for https://github.com/apple/swift-nio
Computed https://github.com/apple/swift-nio at 2.97.0 (1.31s)
Fetching https://github.com/apple/swift-collections.git
Fetching https://github.com/apple/swift-atomics.git
[1/1820] Fetching swift-atomics
[693/24448] Fetching swift-atomics, swift-collections
Fetched https://github.com/apple/swift-atomics.git from cache (0.45s)
[2037/22628] Fetching swift-collections
Fetched https://github.com/apple/swift-collections.git from cache (1.43s)
Computing version for https://github.com/apple/swift-atomics.git
Computed https://github.com/apple/swift-atomics.git at 1.3.0 (1.95s)
Computing version for https://github.com/apple/swift-collections.git
Computed https://github.com/apple/swift-collections.git at 1.4.1 (0.86s)
Creating working copy for https://github.com/swiftlang/swift-subprocess.git
Working copy of https://github.com/swiftlang/swift-subprocess.git resolved at 0.3.0
Creating working copy for https://github.com/apple/swift-nio
Working copy of https://github.com/apple/swift-nio resolved at 2.97.0
Creating working copy for https://github.com/apple/swift-argument-parser
Working copy of https://github.com/apple/swift-argument-parser resolved at 1.7.1
Creating working copy for https://github.com/tuist/path
Working copy of https://github.com/tuist/path resolved at 0.3.8
Creating working copy for https://github.com/apple/swift-system
Working copy of https://github.com/apple/swift-system resolved at 1.6.4
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/onevcat/Rainbow
Working copy of https://github.com/onevcat/Rainbow resolved at 4.2.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/tuist/Noora
Working copy of https://github.com/tuist/Noora resolved at 0.56.0
Creating working copy for https://github.com/apple/swift-log
Working copy of https://github.com/apple/swift-log resolved at 1.10.1
[1/1] Compiling plugin GenerateManual
[2/2] Compiling plugin GenerateDoccReference
Building for debugging...
[2/61] Write sources
[23/61] Compiling CNIODarwin shim.c
[23/61] Compiling CNIOLinux liburing_shims.c
[25/61] Compiling _AtomicsShims.c
[26/61] Compiling CNIOWindows WSAStartup.c
[27/61] Compiling CNIOWindows shim.c
[28/61] Compiling CNIOWASI CNIOWASI.c
[29/61] Compiling CSystem shims.c
[30/61] Compiling _SubprocessCShims process_shims.c
[31/61] Compiling CNIOOpenBSD shim.c
[31/61] Compiling CNIOPosix event_loop_id.c
[33/61] Compiling CNIOLinux shim.c
[34/61] Compiling c-nioatomics.c
[35/61] Compiling c-atomics.c
[35/61] Write swift-version-24593BA9C3E375BF.txt
[38/145] Emitting module _NIOBase64
[39/145] Emitting module SystemPackage
[40/149] Compiling InternalCollectionsUtilities _UnsafeBitSet.swift
[41/149] Compiling InternalCollectionsUtilities UnsafeBufferPointer+Extras.swift
[42/150] Compiling _NIODataStructures PriorityQueue.swift
[43/150] Compiling _NIODataStructures _TinyArray.swift
[44/150] Compiling SystemPackage SystemString.swift
[45/150] Compiling SystemPackage Util+StringArray.swift
[46/150] Compiling SystemPackage Util.swift
[47/150] Compiling SystemPackage UtilConsumers.swift
[48/150] Compiling InternalCollectionsUtilities _UnsafeBitSet+Index.swift
[49/150] Compiling InternalCollectionsUtilities _UnsafeBitSet+_Word.swift
[50/150] Compiling InternalCollectionsUtilities UnsafeMutableRawBufferPointer+Extras.swift
[51/150] Compiling InternalCollectionsUtilities UnsafeRawBufferPointer+Extras.swift
[52/152] Compiling InternalCollectionsUtilities LifetimeOverride.swift
[53/152] Compiling InternalCollectionsUtilities RandomAccessCollection+Offsets.swift
[54/152] Compiling InternalCollectionsUtilities Span+Extras.swift
[55/152] Compiling InternalCollectionsUtilities Debugging.swift
[56/152] Compiling InternalCollectionsUtilities Descriptions.swift
[57/152] Compiling InternalCollectionsUtilities FixedWidthInteger+roundUpToPowerOfTwo.swift
[58/152] Emitting module InternalCollectionsUtilities
[59/152] Compiling InternalCollectionsUtilities Integer rank.swift
[60/152] Compiling InternalCollectionsUtilities UInt+first and last set bit.swift
[61/152] Compiling InternalCollectionsUtilities UInt+reversed.swift
[62/152] Emitting module Path
[63/152] Compiling Path Path.swift
[64/152] Compiling NIOConcurrencyHelpers NIOLockedValueBox.swift
[65/152] Compiling _NIOBase64 Base64.swift
[68/154] Compiling InternalCollectionsUtilities String+Padding.swift
[71/154] Compiling InternalCollectionsUtilities UnsafeMutableBufferPointer+Extras.swift
[74/154] Compiling InternalCollectionsUtilities _SortedCollection.swift
[75/154] Compiling InternalCollectionsUtilities _UniqueCollection.swift
[76/175] Wrapping AST for _NIOBase64 for debugging
[78/175] Compiling Atomics UnsafeAtomic.swift
[79/175] Compiling Atomics UnsafeAtomicLazyReference.swift
[80/177] Compiling Atomics AtomicStorage.swift
[81/177] Compiling Atomics AtomicValue.swift
[82/177] Compiling Atomics AtomicMemoryOrderings.swift
[83/177] Compiling Atomics DoubleWord.swift
[84/177] Compiling Atomics ManagedAtomic.swift
[85/177] Compiling Atomics ManagedAtomicLazyReference.swift
[86/206] Emitting module ArgumentParserToolInfo
[87/210] Compiling ContainersPreview BidirectionalContainer.swift
[88/210] Compiling ContainersPreview Container+Filter.swift
[89/210] Compiling Logging MetadataProvider.swift
[90/210] Compiling ContainersPreview Producer+Collect.swift
[91/210] Compiling ContainersPreview Producer+Filter.swift
[92/210] Compiling ContainersPreview Producer+Map.swift
[93/210] Compiling ContainersPreview Producer+Reduce.swift
[94/210] Compiling ContainersPreview OutputSpan+Extras.swift
[95/210] Compiling ContainersPreview TemporaryAllocation.swift
[96/210] Compiling ContainersPreview BorrowingIteratorProtocol+Copy.swift
[97/210] Compiling ContainersPreview BorrowingIteratorProtocol+ElementsEqual.swift
[98/210] Compiling ContainersPreview BorrowingIteratorProtocol+Filter.swift
[99/210] Compiling ContainersPreview Container.swift
[100/210] Compiling ContainersPreview ContainerIterator.swift
[101/210] Compiling ContainersPreview DynamicContainer.swift
[102/210] Compiling ContainersPreview BorrowingIteratorProtocol+SpanwiseZip.swift
[103/210] Compiling ContainersPreview BorrowingIteratorProtocol.swift
[104/210] Compiling ContainersPreview BorrowingSequence+Standard Conformances.swift
[105/210] Compiling ContainersPreview BorrowingSequence+Utilities.swift
[106/210] Compiling ContainersPreview BorrowingSequence.swift
[107/210] Compiling ContainersPreview RangeReplaceableContainer.swift
[108/210] Compiling ContainersPreview Drain+Map.swift
[109/210] Compiling ContainersPreview Drain+Reduce.swift
[110/210] Compiling ContainersPreview Drain.swift
[113/210] Compiling ContainersPreview Container+SpanwiseZip.swift
[114/210] Compiling ContainersPreview RandomAccessContainer.swift
[115/210] Compiling ContainersPreview RangeExpression2.swift
[116/210] Compiling ContainersPreview MutableContainer.swift
[117/210] Compiling ContainersPreview PermutableContainer.swift
[118/210] Compiling ContainersPreview BorrowingIteratorProtocol+Map.swift
[119/210] Compiling ContainersPreview BorrowingIteratorProtocol+Reduce.swift
[120/210] Emitting module ContainersPreview
[121/210] Emitting module Logging
[129/214] Compiling Logging Locks.swift
[132/214] Compiling ContainersPreview Producer.swift
[133/214] Compiling ContainersPreview Borrow.swift
[134/214] Compiling Logging LogHandler.swift
[139/214] Compiling Logging Logging.swift
[140/216] Compiling NIOConcurrencyHelpers NIOLock.swift
[141/216] Compiling NIOConcurrencyHelpers NIOThreadPoolWorkAvailable.swift
[142/216] Compiling NIOConcurrencyHelpers NIOAtomic.swift
[163/216] Compiling NIOConcurrencyHelpers atomics.swift
[164/216] Compiling NIOConcurrencyHelpers lock.swift
[165/216] Emitting module NIOConcurrencyHelpers
[166/216] Compiling _NIODataStructures Heap.swift
[167/216] Emitting module _NIODataStructures
[170/218] Compiling ContainersPreview Box.swift
[171/218] Compiling ContainersPreview Inout.swift
[172/218] Compiling ContainersPreview InputSpan.swift
[173/218] Compiling ContainersPreview Shared.swift
[181/219] Emitting module Rainbow
[185/219] Compiling Rainbow StyledStringBuilder.swift
[191/220] Wrapping AST for Path for debugging
[193/220] Compiling ArgumentParserToolInfo ToolInfo.swift
[193/220] Wrapping AST for _NIODataStructures for debugging
[194/224] Wrapping AST for SystemPackage for debugging
[195/237] Wrapping AST for NIOConcurrencyHelpers for debugging
[198/283] Wrapping AST for InternalCollectionsUtilities for debugging
[199/283] Wrapping AST for Logging for debugging
[200/283] Wrapping AST for ContainersPreview for debugging
[202/283] Compiling DequeModule UniqueDeque+Hashable.swift
[203/283] Compiling DequeModule UniqueDeque+Initializers.swift
[204/283] Compiling DequeModule UniqueDeque+Insertions.swift
[205/283] Compiling DequeModule UniqueDeque+Prepend.swift
[206/283] Compiling DequeModule UniqueDeque+Removals.swift
[207/283] Compiling DequeModule RigidDeque+Removals.swift
[208/283] Compiling DequeModule RigidDeque+Replacements.swift
[209/283] Compiling DequeModule RigidDeque+Testing.swift
[210/283] Compiling DequeModule RigidDeque.swift
[211/283] Compiling DequeModule UniqueDeque+Append.swift
[212/283] Compiling DequeModule UniqueDeque+Consumption.swift
[213/283] Compiling DequeModule UniqueDeque+Container.swift
[214/283] Compiling DequeModule UniqueDeque+Descriptions.swift
[215/283] Compiling DequeModule UniqueDeque+Equatable.swift
[216/283] Compiling DequeModule UniqueDeque+Experimental.swift
[217/288] Compiling DequeModule RigidDeque+Equatable.swift
[218/288] Compiling DequeModule RigidDeque+Experimental.swift
[219/288] Compiling DequeModule RigidDeque+Hashable.swift
[220/288] Compiling DequeModule RigidDeque+Initializers.swift
[221/288] Compiling DequeModule RigidDeque+Insertions.swift
[222/288] Compiling DequeModule RigidDeque+Prepend.swift
[223/288] Compiling DequeModule _DequeBuffer.swift
[224/288] Compiling DequeModule _DequeBufferHeader.swift
[225/288] Compiling DequeModule RigidDeque+Append.swift
[226/288] Compiling DequeModule RigidDeque+Consumption.swift
[227/288] Compiling DequeModule RigidDeque+Container.swift
[228/288] Compiling DequeModule RigidDeque+Descriptions.swift
[228/288] Wrapping AST for ArgumentParserToolInfo for debugging
[229/288] Wrapping AST for Rainbow for debugging
[231/373] Compiling Noora TableStyle.swift
[232/373] Compiling ArgumentParser BashCompletionsGenerator.swift
[233/373] Compiling ArgumentParser CompletionsGenerator.swift
[234/373] Emitting module Atomics
[235/374] Wrapping AST for Atomics for debugging
[240/374] Compiling ArgumentParser FishCompletionsGenerator.swift
[241/374] Compiling ArgumentParser ZshCompletionsGenerator.swift
[242/374] Compiling ArgumentParser Argument.swift
[243/374] Compiling Noora Alert.swift
[244/374] Compiling Noora CollapsibleStep.swift
[245/374] Compiling Noora MultipleChoicePrompt.swift
[246/374] Compiling Noora ProgressBarStep.swift
[247/374] Compiling Noora ProgressStep.swift
[248/374] Compiling Noora SingleChoicePrompt.swift
[249/374] Compiling ArgumentParser Foundation.swift
[250/374] Compiling ArgumentParser Mutex.swift
[251/374] Compiling ArgumentParser Platform.swift
[252/374] Compiling ArgumentParser SequenceExtensions.swift
[253/374] Compiling ArgumentParser StringExtensions.swift
[254/374] Compiling ArgumentParser HelpCommand.swift
[255/374] Compiling ArgumentParser HelpGenerator.swift
[256/374] Compiling ArgumentParser MessageInfo.swift
[257/376] Emitting module DequeModule
[261/377] Wrapping AST for DequeModule for debugging
[263/441] Compiling NIOCore Interfaces.swift
[264/441] Compiling NIOCore Linux.swift
[265/441] Compiling NIOCore MarkedCircularBuffer.swift
[266/441] Compiling NIOCore MulticastChannel.swift
[267/441] Compiling NIOCore NIOAny.swift
[268/441] Compiling NIOCore NIOCloseOnErrorHandler.swift
[269/447] Emitting module ArgumentParser
[270/447] Compiling NIOCore Codec.swift
[271/447] Compiling NIOCore ConvenienceOptionSupport.swift
[272/447] Compiling NIOCore DeadChannel.swift
[273/447] Compiling NIOCore DispatchQueue+WithFuture.swift
[274/447] Compiling NIOCore EventLoop+Deprecated.swift
[275/452] Compiling NIOCore EventLoop+SerialExecutor.swift
[276/452] Compiling NIOCore EventLoop.swift
[277/452] Compiling NIOCore EventLoopFuture+AssumeIsolated.swift
[278/452] Compiling NIOCore IPProtocol.swift
[279/452] Compiling NIOCore IntegerBitPacking.swift
[280/452] Compiling NIOCore ChannelHandlers.swift
[281/452] Compiling NIOCore ChannelInvoker.swift
[282/452] Compiling NIOCore ChannelOption.swift
[283/452] Compiling NIOCore ChannelPipeline.swift
[284/452] Compiling NIOCore CircularBuffer.swift
[285/452] Compiling NIOCore NIOAsyncSequenceProducer.swift
[286/452] Compiling NIOCore NIOAsyncSequenceProducerStrategies.swift
[287/452] Compiling NIOCore NIOAsyncWriter.swift
[288/452] Compiling NIOCore NIOThrowingAsyncSequenceProducer.swift
[289/452] Compiling NIOCore BSDSocketAPI.swift
[290/452] Compiling NIOCore ByteBuffer-aux.swift
[291/452] Compiling Noora InputValidating.swift
[292/452] Compiling Noora LengthValidationRule.swift
[293/452] Compiling Noora NonEmptyValidationRule.swift
[294/452] Compiling Noora RegexValidationRule.swift
[295/452] Compiling Noora Validator.swift
[296/452] Compiling ArgumentParser Tree.swift
[297/452] Compiling ArgumentParser CodingKeyValidator.swift
[298/452] Compiling ArgumentParser NonsenseFlagsValidator.swift
[299/452] Compiling ArgumentParser ParsableArgumentsValidation.swift
[300/452] Compiling ArgumentParser PositionalArgumentsValidator.swift
[301/452] Compiling ArgumentParser UniqueNamesValidator.swift
[302/452] Compiling NIOCore ByteBuffer-binaryEncodedLengthPrefix.swift
[303/452] Compiling NIOCore ByteBuffer-conversions.swift
[304/452] Compiling NIOCore ByteBuffer-core.swift
[305/452] Compiling NIOCore ByteBuffer-hex.swift
[306/452] Compiling NIOCore ByteBuffer-int.swift
[307/452] Compiling NIOCore ByteBuffer-lengthPrefix.swift
[308/452] Compiling NIOCore ByteBuffer-multi-int.swift
[309/452] Compiling NIOCore ByteBuffer-quicBinaryEncodingStrategy.swift
[310/452] Compiling NIOCore ByteBuffer-views.swift
[311/452] Compiling NIOCore Channel.swift
[312/452] Compiling NIOCore ChannelHandler.swift
[319/452] Compiling NIOCore NIOSplitLinesMessageDecoder.swift
[320/452] Compiling NIOCore NIOTransportAccessibleChannelCore.swift
[321/452] Compiling NIOCore RecvByteBufferAllocator.swift
[334/460] Compiling NIOCore AddressedEnvelope.swift
[335/460] Compiling NIOCore AsyncAwaitSupport.swift
[336/460] Compiling NIOCore AsyncChannel.swift
[337/460] Compiling NIOCore AsyncChannelHandler.swift
[338/460] Compiling NIOCore AsyncChannelInboundStream.swift
[339/460] Compiling NIOCore AsyncChannelOutboundWriter.swift
[362/461] Emitting module Noora
[378/462] Wrapping AST for ArgumentParser for debugging
[379/462] Wrapping AST for Noora for debugging
[380/462] Write Objects.LinkFileList
[381/462] Archiving libNoora.a
[386/462] Emitting module Subprocess
[401/462] Compiling NIOCore EventLoopFuture+Deprecated.swift
[402/462] Compiling NIOCore EventLoopFuture+WithEventLoop.swift
[403/462] Compiling NIOCore EventLoopFuture.swift
[404/462] Compiling NIOCore FileDescriptor.swift
[405/462] Compiling NIOCore FileHandle.swift
[406/462] Compiling NIOCore FileRegion.swift
[407/462] Compiling NIOCore GlobalSingletons.swift
[408/462] Compiling NIOCore IO.swift
[409/462] Compiling NIOCore IOData.swift
[410/462] Compiling NIOCore SingleStepByteToMessageDecoder.swift
[411/462] Compiling NIOCore SocketAddresses.swift
[412/462] Compiling NIOCore SocketOptionProvider.swift
[413/462] Compiling NIOCore SystemCallHelpers.swift
[414/462] Compiling NIOCore TimeAmount+Duration.swift
[415/462] Compiling NIOCore TypeAssistedChannelHandler.swift
[416/462] Compiling NIOCore UniversalBootstrapSupport.swift
[417/462] Compiling NIOCore Utilities.swift
[427/463] Wrapping AST for Subprocess for debugging
[438/463] Emitting module NIOCore
[457/464] Wrapping AST for NIOCore for debugging
[459/514] Emitting module NIOPosix
[460/520] Compiling NIOPosix ServerSocket.swift
[461/520] Compiling NIOPosix Socket.swift
[462/520] Compiling NIOPosix SocketChannel.swift
[463/520] Compiling NIOPosix SocketProtocols.swift
[464/520] Compiling NIOPosix StructuredConcurrencyHelpers.swift
[465/520] Compiling NIOPosix System.swift
[466/520] Compiling NIOPosix Thread.swift
[467/520] Compiling NIOPosix SelectableChannel.swift
[468/520] Compiling NIOPosix SelectableEventLoop.swift
[469/520] Compiling NIOPosix SelectorEpoll.swift
[470/520] Compiling NIOPosix SelectorGeneric.swift
[471/520] Compiling NIOPosix SelectorKqueue.swift
[472/520] Compiling NIOPosix SelectorUring.swift
[473/520] Compiling NIOPosix SelectorWSAPoll.swift
[474/520] Compiling NIOPosix PipePair.swift
[475/520] Compiling NIOPosix Pool.swift
[476/520] Compiling NIOPosix PosixSingletons+ConcurrencyTakeOver.swift
[477/520] Compiling NIOPosix PosixSingletons.swift
[478/520] Compiling NIOPosix RawSocketBootstrap.swift
[479/520] Compiling NIOPosix Resolver.swift
[480/520] Compiling NIOPosix Selectable.swift
[481/520] Compiling NIOPosix BaseStreamSocketChannel.swift
[482/520] Compiling NIOPosix Bootstrap.swift
[483/520] Compiling NIOPosix ControlMessage.swift
[484/520] Compiling NIOPosix DatagramVectorReadManager.swift
[485/520] Compiling NIOPosix Errors+Any.swift
[486/520] Compiling NIOPosix FileDescriptor.swift
[487/520] Compiling NIOPosix GetaddrinfoResolver.swift
[488/520] Compiling NIOPosix HappyEyeballs.swift
[489/520] Compiling NIOPosix IO.swift
[490/520] Compiling NIOPosix IntegerBitPacking.swift
[491/520] Compiling NIOPosix IntegerTypes.swift
[492/520] Compiling NIOPosix Linux.swift
[493/520] Compiling NIOPosix LinuxCPUSet.swift
[494/520] Compiling NIOPosix LinuxUring.swift
[495/520] Compiling NIOPosix BSDSocketAPICommon.swift
[496/520] Compiling NIOPosix BSDSocketAPIPosix.swift
[497/520] Compiling NIOPosix BSDSocketAPIWindows.swift
[498/520] Compiling NIOPosix BaseSocket.swift
[499/520] Compiling NIOPosix BaseSocketChannel+AccessibleTransport.swift
[500/520] Compiling NIOPosix BaseSocketChannel+SocketOptionProvider.swift
[501/520] Compiling NIOPosix BaseSocketChannel.swift
[502/520] Compiling NIOPosix MultiThreadedEventLoopGroup.swift
[503/520] Compiling NIOPosix NIOPosixSendableMetatype.swift
[504/520] Compiling NIOPosix NIOThreadPool.swift
[505/520] Compiling NIOPosix NonBlockingFileIO.swift
[506/520] Compiling NIOPosix PendingDatagramWritesManager.swift
[507/520] Compiling NIOPosix PendingWritesManager.swift
[508/520] Compiling NIOPosix PipeChannel.swift
[509/520] Compiling NIOPosix ThreadPosix.swift
[510/520] Compiling NIOPosix ThreadWindows.swift
[511/520] Compiling NIOPosix Utilities.swift
[512/520] Compiling NIOPosix VsockAddress.swift
[513/520] Compiling NIOPosix VsockChannelEvents.swift
[514/520] Compiling NIOPosix Windows.swift
[515/521] Wrapping AST for NIOPosix for debugging
[517/557] Emitting module _NIOFileSystem
[518/561] Compiling _NIOFileSystem NIOFilePath.swift
[519/561] Compiling _NIOFileSystem NIOFileSystemSendableMetatype.swift
[520/561] Compiling _NIOFileSystem OpenOptions.swift
[521/561] Compiling _NIOFileSystem String+FileSystem.swift
[522/561] Compiling _NIOFileSystem FileSystemError+Syscall.swift
[523/561] Compiling _NIOFileSystem FileSystemError.swift
[524/561] Compiling _NIOFileSystem FileSystemProtocol.swift
[525/561] Compiling _NIOFileSystem FileType.swift
[526/561] Compiling _NIOFileSystem IOStrategy.swift
[527/561] Compiling _NIOFileSystem BufferedOrAnyStream.swift
[528/561] Compiling _NIOFileSystem BufferedStream.swift
[529/561] Compiling _NIOFileSystem Cancellation.swift
[530/561] Compiling _NIOFileSystem TokenBucket.swift
[531/561] Compiling _NIOFileSystem ParallelDirCopy.swift
[532/561] Compiling _NIOFileSystem ParallelRemoval.swift
[533/561] Compiling _NIOFileSystem String+UnsafeUnititializedCapacity.swift
[534/561] Compiling _NIOFileSystem CInterop.swift
[535/561] Compiling _NIOFileSystem Errno.swift
[536/561] Compiling _NIOFileSystem FileDescriptor+Syscalls.swift
[537/561] Compiling _NIOFileSystem ByteCount.swift
[538/561] Compiling _NIOFileSystem Convenience.swift
[539/561] Compiling _NIOFileSystem DirectoryEntries.swift
[540/561] Compiling _NIOFileSystem DirectoryEntry.swift
[541/561] Compiling _NIOFileSystem Exports.swift
[542/561] Compiling _NIOFileSystem Mocking.swift
[543/561] Compiling _NIOFileSystem Syscall.swift
[544/561] Compiling _NIOFileSystem Syscalls.swift
[545/561] Compiling _NIOFileSystem SystemFileHandle.swift
[546/561] Compiling _NIOFileSystem Utilities.swift
[547/561] Compiling _NIOFileSystem Array+FileSystem.swift
[548/561] Compiling _NIOFileSystem ArraySlice+FileSystem.swift
[549/561] Compiling _NIOFileSystem BufferedReader.swift
[550/561] Compiling _NIOFileSystem BufferedWriter.swift
[551/561] Compiling _NIOFileSystem ByteBuffer+FileSystem.swift
[552/561] Compiling _NIOFileSystem FileChunks.swift
[553/561] Compiling _NIOFileSystem FileHandle.swift
[554/561] Compiling _NIOFileSystem FileHandleProtocol.swift
[555/561] Compiling _NIOFileSystem FileInfo.swift
[556/561] Compiling _NIOFileSystem FileSystem.swift
[557/562] Wrapping AST for _NIOFileSystem for debugging
[559/564] Compiling NIOFileSystem Exports.swift
[560/564] Emitting module NIOFileSystem
[561/565] Wrapping AST for NIOFileSystem for debugging
[563/581] Compiling Inotify InotifyWatchManager.swift
[564/581] Compiling InotifyTaskCLI Command.swift
[565/582] Compiling Inotify InotifyError.swift
[566/582] Compiling Inotify InotifyEventParser.swift
[567/582] Compiling Inotify InotifyEvent.swift
[568/582] Compiling Inotify InotifyEventMask.swift
[569/582] Emitting module Inotify
[570/582] Compiling Inotify DirectoryResolver.swift
[571/582] Compiling Inotify DirectoryResolverErrror.swift
[572/582] Compiling Inotify Inotify.swift
[573/582] Compiling InotifyTaskCLI Global Options.swift
[574/582] Compiling InotifyTaskCLI Test Command.swift
[575/582] Compiling Inotify RawInotifyEvent.swift
[577/583] Compiling InotifyTaskCLI DoccFinder.swift
[578/583] Compiling InotifyTaskCLI Docker.swift
[579/583] Emitting module InotifyTaskCLI
[580/583] Compiling InotifyTaskCLI GenerateDocumentation Command.swift
[581/584] Wrapping AST for InotifyTaskCLI for debugging
[582/584] Write Objects.LinkFileList
[583/584] Linking InotifyTaskCLI
Build complete! (104.86s)
Build complete.
{
"dependencies" : [
{
"identity" : "swift-argument-parser",
"requirement" : {
"range" : [
{
"lower_bound" : "1.7.1",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-argument-parser"
},
{
"identity" : "swift-log",
"requirement" : {
"range" : [
{
"lower_bound" : "1.10.1",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-log"
},
{
"identity" : "swift-nio",
"requirement" : {
"range" : [
{
"lower_bound" : "2.95.0",
"upper_bound" : "3.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-nio"
},
{
"identity" : "swift-system",
"requirement" : {
"range" : [
{
"lower_bound" : "1.6.4",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-system"
},
{
"identity" : "swift-subprocess",
"requirement" : {
"range" : [
{
"lower_bound" : "0.3.0",
"upper_bound" : "1.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/swiftlang/swift-subprocess.git"
},
{
"identity" : "noora",
"requirement" : {
"range" : [
{
"lower_bound" : "0.55.1",
"upper_bound" : "1.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/tuist/Noora"
}
],
"manifest_display_name" : "Inotify",
"name" : "Inotify",
"path" : "/host/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "13.0"
},
{
"name" : "Linux",
"version" : "4.4.302"
}
],
"products" : [
{
"name" : "Inotify",
"targets" : [
"Inotify"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "InotifyTaskCLI",
"targets" : [
"InotifyTaskCLI"
],
"type" : {
"executable" : null
}
}
],
"targets" : [
{
"c99name" : "InotifyTaskCLI",
"module_type" : "SwiftTarget",
"name" : "InotifyTaskCLI",
"path" : "Sources/TaskCLI",
"product_dependencies" : [
"ArgumentParser",
"Logging",
"_NIOFileSystem",
"Subprocess",
"Noora"
],
"product_memberships" : [
"InotifyTaskCLI"
],
"sources" : [
"Command.swift",
"DoccFinder.swift",
"Docker.swift",
"GenerateDocumentation Command.swift",
"Global Options.swift",
"Test Command.swift"
],
"type" : "executable"
},
{
"c99name" : "InotifyIntegrationTests",
"module_type" : "SwiftTarget",
"name" : "InotifyIntegrationTests",
"path" : "Tests/InotifyIntegrationTests",
"product_dependencies" : [
"SystemPackage"
],
"sources" : [
"DirectoryResolverTests.swift",
"EventTests.swift",
"InitialisationTests.swift",
"InotifyLimitTests.swift",
"RecursiveEventTests.swift",
"Utilities/createFile.swift",
"Utilities/createSubdirectorytree.swift",
"Utilities/getEventsForTrigger.swift",
"Utilities/withLowInotifyWatchLimit.swift",
"Utilities/withTempDir.swift",
"WatchTests.swift"
],
"target_dependencies" : [
"Inotify"
],
"type" : "test"
},
{
"c99name" : "Inotify",
"module_type" : "SwiftTarget",
"name" : "Inotify",
"path" : "Sources/Inotify",
"product_dependencies" : [
"Logging",
"_NIOFileSystem",
"SystemPackage"
],
"product_memberships" : [
"Inotify"
],
"sources" : [
"DirectoryResolver.swift",
"DirectoryResolverErrror.swift",
"Inotify.swift",
"InotifyError.swift",
"InotifyEvent.swift",
"InotifyEventMask.swift",
"InotifyEventParser.swift",
"InotifyWatchManager.swift",
"RawInotifyEvent.swift"
],
"target_dependencies" : [
"CInotify"
],
"type" : "library"
},
{
"c99name" : "CInotify",
"module_type" : "SystemLibraryTarget",
"name" : "CInotify",
"path" : "Sources/CInotify",
"product_memberships" : [
"Inotify"
],
"sources" : [
],
"type" : "system-target"
}
],
"tools_version" : "6.0"
}
basic-6.1-latest: Pulling from swiftpackageindex/spi-images
Digest: sha256:7e70e0a64d2f2fbcaf7a9ded92418bf54647123e95b9450d840f38f11e93f5d2
Status: Image is up to date for registry.gitlab.com/swiftpackageindex/spi-images:basic-6.1-latest
Done.