Build Information
Successful build of SemanticVersion, reference 0.4.0 (ea8eea
), with Swift 6.1 for macOS (SPM) on 28 Apr 2025 01:40:27 UTC.
Swift 6 data race errors: 0
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures
Build Log
========================================
RunAll
========================================
Builder version: 4.61.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/SwiftPackageIndex/SemanticVersion.git
Reference: 0.4.0
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/SwiftPackageIndex/SemanticVersion
* tag 0.4.0 -> FETCH_HEAD
HEAD is now at ea8eea9 Merge pull request #18 from sonos/string_coding
Cloned https://github.com/SwiftPackageIndex/SemanticVersion.git
Revision (git rev-parse @):
ea8eea9d89842a29af1b8e6c7677f1c86e72fa42
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/SwiftPackageIndex/SemanticVersion.git at 0.4.0
========================================
ResolveProductDependencies
========================================
Resolving dependencies ...
{
"identity": ".resolve-product-dependencies",
"name": "resolve-dependencies",
"url": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
"version": "unspecified",
"path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
"dependencies": [
{
"identity": "semanticversion",
"name": "SemanticVersion",
"url": "https://github.com/SwiftPackageIndex/SemanticVersion.git",
"version": "unspecified",
"path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/SemanticVersion",
"dependencies": [
]
}
]
}
Fetching https://github.com/SwiftPackageIndex/SemanticVersion.git
[4/323] Fetching semanticversion
Fetched https://github.com/SwiftPackageIndex/SemanticVersion.git from cache (0.70s)
Creating working copy for https://github.com/SwiftPackageIndex/SemanticVersion.git
Working copy of https://github.com/SwiftPackageIndex/SemanticVersion.git resolved at 0.4.0 (ea8eea9)
warning: '.resolve-product-dependencies': dependency 'semanticversion' is not used by any target
Found 0 product dependencies
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.1
Building package at path: $PWD
https://github.com/SwiftPackageIndex/SemanticVersion.git
https://github.com/SwiftPackageIndex/SemanticVersion.git
{
"dependencies" : [
],
"manifest_display_name" : "SemanticVersion",
"name" : "SemanticVersion",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
],
"products" : [
{
"name" : "SemanticVersion",
"targets" : [
"SemanticVersion"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "SemanticVersionTests",
"module_type" : "SwiftTarget",
"name" : "SemanticVersionTests",
"path" : "Tests/SemanticVersionTests",
"sources" : [
"SemanticVersionCodingTests.swift",
"SemanticVersionTests.swift"
],
"target_dependencies" : [
"SemanticVersion"
],
"type" : "test"
},
{
"c99name" : "SemanticVersion",
"module_type" : "SwiftTarget",
"name" : "SemanticVersion",
"path" : "Sources/SemanticVersion",
"product_memberships" : [
"SemanticVersion"
],
"resources" : [
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/SemanticVersion/Documentation.docc",
"rule" : {
"process" : {
}
}
}
],
"sources" : [
"NSRegularExpression+ext.swift",
"SemanticVersion+Codable.swift",
"SemanticVersion.swift"
],
"type" : "library"
}
],
"tools_version" : "5.6"
}
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures
Building for debugging...
[0/3] Write sources
[1/3] Copying Documentation.docc
[2/3] Write swift-version-2F0A5646E1D333AE.txt
[4/8] Compiling SemanticVersion resource_bundle_accessor.swift
[5/8] Compiling SemanticVersion NSRegularExpression+ext.swift
[6/8] Compiling SemanticVersion SemanticVersion.swift
/Users/admin/builder/spi-builder-workspace/Sources/SemanticVersion/SemanticVersion.swift:143:1: warning: extension declares a conformance of imported type 'Array' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
141 |
142 |
143 | extension Array: Comparable where Element == SemanticVersion.PreReleaseIdentifier {
| |- warning: extension declares a conformance of imported type 'Array' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
144 | public static func < (lhs: Self, rhs: Self) -> Bool {
145 | // Per section 11.4 of the semver spec, compare left to right until a
[7/8] Compiling SemanticVersion SemanticVersion+Codable.swift
[8/8] Emitting module SemanticVersion
/Users/admin/builder/spi-builder-workspace/Sources/SemanticVersion/SemanticVersion.swift:143:1: warning: extension declares a conformance of imported type 'Array' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
141 |
142 |
143 | extension Array: Comparable where Element == SemanticVersion.PreReleaseIdentifier {
| |- warning: extension declares a conformance of imported type 'Array' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
144 | public static func < (lhs: Self, rhs: Self) -> Bool {
145 | // Per section 11.4 of the semver spec, compare left to right until a
Build complete! (4.86s)
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "SemanticVersion",
"name" : "SemanticVersion",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
],
"products" : [
{
"name" : "SemanticVersion",
"targets" : [
"SemanticVersion"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "SemanticVersionTests",
"module_type" : "SwiftTarget",
"name" : "SemanticVersionTests",
"path" : "Tests/SemanticVersionTests",
"sources" : [
"SemanticVersionCodingTests.swift",
"SemanticVersionTests.swift"
],
"target_dependencies" : [
"SemanticVersion"
],
"type" : "test"
},
{
"c99name" : "SemanticVersion",
"module_type" : "SwiftTarget",
"name" : "SemanticVersion",
"path" : "Sources/SemanticVersion",
"product_memberships" : [
"SemanticVersion"
],
"resources" : [
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/SemanticVersion/Documentation.docc",
"rule" : {
"process" : {
}
}
}
],
"sources" : [
"NSRegularExpression+ext.swift",
"SemanticVersion+Codable.swift",
"SemanticVersion.swift"
],
"type" : "library"
}
],
"tools_version" : "5.6"
}
✅ Doc result (pending) reported
========================================
GenerateDocs
========================================
Generating docs at path: $PWD/.docs/swiftpackageindex/semanticversion/0.4.0
Repository: SwiftPackageIndex/SemanticVersion
Swift version used: 6.1
Target: SemanticVersion
Extracting symbol information for 'SemanticVersion'...
Finished extracting symbol information for 'SemanticVersion'. (2.56s)
Building documentation for 'SemanticVersion'...
Finished building documentation for 'SemanticVersion' (0.13s)
Generated documentation archive at:
/Users/admin/builder/spi-builder-workspace/.docs/swiftpackageindex/semanticversion/0.4.0
Fetching https://github.com/swiftlang/swift-docc-plugin from cache
Fetched https://github.com/swiftlang/swift-docc-plugin from cache (0.43s)
Computing version for https://github.com/swiftlang/swift-docc-plugin
Computed https://github.com/swiftlang/swift-docc-plugin at 1.4.3 (1.06s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit from cache
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (0.77s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (1.42s)
Creating working copy for https://github.com/swiftlang/swift-docc-plugin
Working copy of https://github.com/swiftlang/swift-docc-plugin resolved at 1.4.3
Creating working copy for https://github.com/swiftlang/swift-docc-symbolkit
Working copy of https://github.com/swiftlang/swift-docc-symbolkit resolved at 1.0.0
Building for debugging...
[0/8] Write sources
[1/8] Write snippet-extract-tool-entitlement.plist
[1/8] Write sources
[4/8] Write swift-version-2F0A5646E1D333AE.txt
[6/53] Emitting module SymbolKit
[7/57] Compiling SymbolKit SourceRange.swift
[8/57] Compiling SymbolKit Metadata.swift
[9/57] Compiling SymbolKit Module.swift
[10/57] Compiling SymbolKit OperatingSystem.swift
[11/57] Compiling SymbolKit Platform.swift
[12/57] Compiling SymbolKit GenericConstraint.swift
[13/57] Compiling SymbolKit GenericParameter.swift
[14/57] Compiling SymbolKit Generics.swift
[15/57] Compiling SymbolKit Namespace.swift
[16/57] Compiling SymbolKit Mixin+Equals.swift
[17/57] Compiling SymbolKit Mixin+Hash.swift
[18/57] Compiling SymbolKit Mixin.swift
[19/57] Compiling SymbolKit LineList.swift
[20/57] Compiling SymbolKit Position.swift
[21/57] Compiling SymbolKit SemanticVersion.swift
[22/57] Compiling SymbolKit AccessControl.swift
[23/57] Compiling SymbolKit Availability.swift
[24/57] Compiling SymbolKit AvailabilityItem.swift
[25/57] Compiling SymbolKit Domain.swift
[26/57] Compiling SymbolKit Identifier.swift
[27/57] Compiling SymbolKit KindIdentifier.swift
[28/57] Compiling SymbolKit Location.swift
[29/57] Compiling SymbolKit Mutability.swift
[30/57] Compiling SymbolKit Names.swift
[31/57] Compiling SymbolKit SPI.swift
[32/57] Compiling SymbolKit Snippet.swift
[33/57] Compiling SymbolKit Extension.swift
[34/57] Compiling SymbolKit Relationship.swift
[35/57] Compiling SymbolKit RelationshipKind.swift
[36/57] Compiling SymbolKit SourceOrigin.swift
[37/57] Compiling SymbolKit GenericConstraints.swift
[38/57] Compiling SymbolKit Swift.swift
[39/57] Compiling SymbolKit Symbol.swift
[40/57] Compiling SymbolKit SymbolKind.swift
[41/57] Compiling SymbolKit SymbolGraph.swift
[42/57] Compiling SymbolKit GraphCollector.swift
[43/57] Compiling SymbolKit DeclarationFragments.swift
[44/57] Compiling SymbolKit Fragment.swift
[45/57] Compiling SymbolKit FragmentKind.swift
[46/57] Compiling SymbolKit FunctionParameter.swift
[47/57] Compiling SymbolKit FunctionSignature.swift
[48/57] Compiling SymbolKit UnifiedSymbol+Encodable.swift
[49/57] Compiling SymbolKit UnifiedSymbol.swift
[50/57] Compiling SymbolKit UnifiedSymbolGraph+Encodable.swift
[51/57] Compiling SymbolKit UnifiedSymbolGraph.swift
[52/57] Emitting module Snippets
[53/57] Compiling Snippets Snippet.swift
[54/57] Compiling Snippets SnippetParser.swift
[55/61] Compiling snippet_extract URL+Status.swift
[56/61] Compiling snippet_extract SymbolGraph+Snippet.swift
[57/61] Compiling snippet_extract SnippetBuildCommand.swift
[58/61] Emitting module snippet_extract
[58/61] Write Objects.LinkFileList
[59/61] Linking snippet-extract-tool
[60/61] Applying snippet-extract-tool
Build of product 'snippet-extract' complete! (4.00s)
Building for debugging...
[0/1] Write swift-version-2F0A5646E1D333AE.txt
[2/6] Compiling SemanticVersion resource_bundle_accessor.swift
[3/6] Compiling SemanticVersion SemanticVersion+Codable.swift
[4/6] Compiling SemanticVersion SemanticVersion.swift
/Users/admin/builder/spi-builder-workspace/Sources/SemanticVersion/SemanticVersion.swift:143:1: warning: extension declares a conformance of imported type 'Array' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
141 |
142 |
143 | extension Array: Comparable where Element == SemanticVersion.PreReleaseIdentifier {
| |- warning: extension declares a conformance of imported type 'Array' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
144 | public static func < (lhs: Self, rhs: Self) -> Bool {
145 | // Per section 11.4 of the semver spec, compare left to right until a
[5/6] Compiling SemanticVersion NSRegularExpression+ext.swift
[6/6] Emitting module SemanticVersion
/Users/admin/builder/spi-builder-workspace/Sources/SemanticVersion/SemanticVersion.swift:143:1: warning: extension declares a conformance of imported type 'Array' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
141 |
142 |
143 | extension Array: Comparable where Element == SemanticVersion.PreReleaseIdentifier {
| |- warning: extension declares a conformance of imported type 'Array' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
144 | public static func < (lhs: Self, rhs: Self) -> Bool {
145 | // Per section 11.4 of the semver spec, compare left to right until a
Build of target: 'SemanticVersion' complete! (0.60s)
196
2 /Users/admin/builder/spi-builder-workspace/.docs/swiftpackageindex/semanticversion/0.4.0
✅ Doc result (uploading) reported
========================================
SyncDocs
========================================
Doc archive source directory: $PWD/.docs/swiftpackageindex/semanticversion/0.4.0
File count: 196
Doc size: 2.0MB
Preparing doc bundle ...
Uploading prod-swiftpackageindex-semanticversion-0.4.0-283a7d07.zip to s3://spi-docs-inbox/prod-swiftpackageindex-semanticversion-0.4.0-283a7d07.zip
Copying... [14%]
Copying... [27%]
Copying... [41%]
Copying... [54%]
Copying... [68%]
Copying... [81%]
Copying... [95%]
Copying... [100%]
Done.