Build Information
Successful build of GeoJSONKitTurf with Swift 6.0 for macOS (SPM).
Swift 6 data race errors: 1
Build Command
env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete
Build Log
========================================
RunAll
========================================
Builder version: 4.40.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/maparoni/GeoJSONKit-Turf.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/maparoni/GeoJSONKit-Turf
* branch main -> FETCH_HEAD
* [new branch] main -> origin/main
HEAD is now at 99c542f Expose `GeoJSON.BoundingBox.append(_:allowSpanningAntimeridian:)`
Cloned https://github.com/maparoni/GeoJSONKit-Turf.git
Revision (git rev-parse @):
99c542f4c3c105caa9567c61fd8036e94e07df05
SPI manifest file found: $workDir/.spi.yml
SUCCESS checkout https://github.com/maparoni/GeoJSONKit-Turf.git at main
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.0
Building package at path: $workDir
https://github.com/maparoni/GeoJSONKit-Turf.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete
Building for debugging...
[0/10] Write sources
[1/10] Write geokitten-entitlement.plist
[1/10] Write sources
[6/10] Write swift-version-6F35C1178C84523A.txt
[8/15] Emitting module ArgumentParserToolInfo
[9/15] Compiling ArgumentParserToolInfo ToolInfo.swift
[10/52] Compiling ArgumentParser Argument.swift
[11/52] Compiling ArgumentParser ArgumentHelp.swift
[12/52] Compiling ArgumentParser ArgumentVisibility.swift
[13/52] Compiling ArgumentParser CompletionKind.swift
[14/55] Emitting module ArgumentParser
[15/55] Compiling ArgumentParser SequenceExtensions.swift
[16/55] Compiling ArgumentParser StringExtensions.swift
[17/55] Compiling ArgumentParser Tree.swift
[18/55] Compiling ArgumentParser BashCompletionsGenerator.swift
[19/55] Compiling ArgumentParser CompletionsGenerator.swift
[20/55] Compiling ArgumentParser FishCompletionsGenerator.swift
[21/55] Compiling ArgumentParser ZshCompletionsGenerator.swift
[22/55] Compiling ArgumentParser Errors.swift
[23/55] Compiling ArgumentParser Flag.swift
[24/55] Compiling ArgumentParser NameSpecification.swift
[25/55] Compiling ArgumentParser Option.swift
[26/55] Compiling ArgumentParser InputOrigin.swift
[27/55] Compiling ArgumentParser Name.swift
[28/55] Compiling ArgumentParser Parsed.swift
[29/55] Compiling ArgumentParser ParsedValues.swift
[30/55] Compiling ArgumentParser OptionGroup.swift
[31/55] Compiling ArgumentParser AsyncParsableCommand.swift
[32/55] Compiling ArgumentParser CommandConfiguration.swift
[33/55] Compiling ArgumentParser EnumerableFlag.swift
[34/55] Compiling ArgumentParser ExpressibleByArgument.swift
[35/55] Compiling ArgumentParser ParsableArguments.swift
[36/55] Compiling ArgumentParser ParsableArgumentsValidation.swift
[37/55] Compiling ArgumentParser ParsableCommand.swift
[38/55] Compiling GeoJSONKit GeoJSON+Codable.swift
[39/55] Compiling GeoJSONKit GeoJSON.swift
[40/55] Emitting module GeoJSONKit
[41/55] Compiling ArgumentParser ParserError.swift
[42/55] Compiling ArgumentParser SplitArguments.swift
[43/55] Compiling ArgumentParser DumpHelpGenerator.swift
[44/55] Compiling ArgumentParser HelpCommand.swift
[45/72] Compiling ArgumentParser ArgumentDecoder.swift
[46/72] Compiling ArgumentParser ArgumentDefinition.swift
[47/72] Compiling ArgumentParser ArgumentSet.swift
[48/72] Compiling ArgumentParser CommandParser.swift
[49/72] Compiling GeoJSONKitTurf Turf.swift
[50/72] Compiling GeoJSONKitTurf DouglasPeucker.swift
[51/72] Compiling ArgumentParser UsageGenerator.swift
[52/72] Compiling ArgumentParser CollectionExtensions.swift
[53/72] Compiling GeoJSONKitTurf Spline.swift
[54/72] Compiling GeoJSONKitTurf MonotoneChain.swift
[57/73] Emitting module GeoJSONKitTurf
[58/73] Compiling GeoJSONKitTurf SutherlandHodgeman.swift
[59/73] Compiling GeoJSONKitTurf Turf+LinearRing.swift
[60/73] Compiling GeoJSONKitTurf Turf+Polygon.swift
[61/73] Compiling GeoJSONKitTurf Simplify.swift
[62/73] Compiling GeoJSONKitTurf Turf+BoundingBox.swift
[63/73] Compiling GeoJSONKitTurf Position+Helpers.swift
[64/73] Compiling GeoJSONKitTurf RadianCoordinate2D.swift
[65/73] Compiling GeoJSONKitTurf CoreLocation.swift
[66/73] Compiling GeoJSONKitTurf GeoJSON+Helpers.swift
[67/73] Compiling GeoJSONKitTurf ClosestCoordinate.swift
[68/73] Compiling GeoJSONKitTurf ConvexHull.swift
[69/73] Compiling GeoJSONKitTurf Turf+GeometryObject.swift
[70/73] Compiling GeoJSONKitTurf Turf+LineString.swift
[71/75] Compiling GeoKitten main.swift
/Users/admin/builder/spi-builder-workspace/Sources/GeoKitten/main.swift:18:14: warning: static property 'configuration' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
16 |
17 | struct GeoKitten: ParsableCommand {
18 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 | commandName: "geokitten",
20 | abstract: "CLI for GeoJSONKit-Turf",
[72/75] Emitting module GeoKitten
/Users/admin/builder/spi-builder-workspace/Sources/GeoKitten/main.swift:18:14: warning: static property 'configuration' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
16 |
17 | struct GeoKitten: ParsableCommand {
18 | static var configuration = CommandConfiguration(
| |- warning: static property 'configuration' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 | commandName: "geokitten",
20 | abstract: "CLI for GeoJSONKit-Turf",
[72/75] Write Objects.LinkFileList
[73/75] Linking geokitten
[74/75] Applying geokitten
Build complete! (25.35s)
Fetching https://github.com/maparoni/geojsonkit.git
Fetching https://github.com/apple/swift-argument-parser
[1/362] Fetching geojsonkit
[360/12041] Fetching geojsonkit, swift-argument-parser
Fetched https://github.com/apple/swift-argument-parser from cache (1.60s)
Fetched https://github.com/maparoni/geojsonkit.git from cache (1.60s)
Computing version for https://github.com/apple/swift-argument-parser
Computed https://github.com/apple/swift-argument-parser at 1.1.2 (0.65s)
Computing version for https://github.com/maparoni/geojsonkit.git
Computed https://github.com/maparoni/geojsonkit.git at 0.5.3 (0.60s)
Creating working copy for https://github.com/apple/swift-argument-parser
Working copy of https://github.com/apple/swift-argument-parser resolved at 1.1.2
Creating working copy for https://github.com/maparoni/geojsonkit.git
Working copy of https://github.com/maparoni/geojsonkit.git resolved at 0.5.3
Build complete.
{
"dependencies" : [
{
"identity" : "geojsonkit",
"requirement" : {
"range" : [
{
"lower_bound" : "0.5.3",
"upper_bound" : "1.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/maparoni/geojsonkit.git"
},
{
"identity" : "swift-argument-parser",
"requirement" : {
"range" : [
{
"lower_bound" : "1.0.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-argument-parser"
}
],
"manifest_display_name" : "GeoJSONKitTurf",
"name" : "GeoJSONKitTurf",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "12.0"
},
{
"name" : "ios",
"version" : "15.0"
},
{
"name" : "watchos",
"version" : "8.0"
},
{
"name" : "tvos",
"version" : "15.0"
},
{
"name" : "xros",
"version" : "1.0"
}
],
"products" : [
{
"name" : "GeoJSONKitTurf",
"targets" : [
"GeoJSONKitTurf"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "geokitten",
"targets" : [
"GeoKitten"
],
"type" : {
"executable" : null
}
}
],
"targets" : [
{
"c99name" : "GeoKitten",
"module_type" : "SwiftTarget",
"name" : "GeoKitten",
"path" : "Sources/GeoKitten",
"product_dependencies" : [
"ArgumentParser"
],
"product_memberships" : [
"geokitten"
],
"sources" : [
"main.swift"
],
"target_dependencies" : [
"GeoJSONKitTurf"
],
"type" : "executable"
},
{
"c99name" : "GeoJSONKitTurfTests",
"module_type" : "SwiftTarget",
"name" : "GeoJSONKitTurfTests",
"path" : "Tests/GeoJSONKitTurfTests",
"sources" : [
"BoundingBoxTests.swift",
"Fixture.swift",
"LineStringTests.swift",
"MultiPolygonTests.swift",
"PolygonTests.swift",
"PositionTests.swift",
"RadianCoordinate2DTests.swift",
"TurfTests.swift",
"XCTest+Save.swift"
],
"target_dependencies" : [
"GeoJSONKitTurf"
],
"type" : "test"
},
{
"c99name" : "GeoJSONKitTurf",
"module_type" : "SwiftTarget",
"name" : "GeoJSONKitTurf",
"path" : "Sources/GeoJSONKitTurf",
"product_dependencies" : [
"GeoJSONKit"
],
"product_memberships" : [
"GeoJSONKitTurf",
"geokitten"
],
"sources" : [
"ClosestCoordinate.swift",
"ConvexHull.swift",
"CoreLocation.swift",
"GeoJSON+Helpers.swift",
"Position+Helpers.swift",
"RadianCoordinate2D.swift",
"Simplify.swift",
"Turf+BoundingBox.swift",
"Turf+GeometryObject.swift",
"Turf+LineString.swift",
"Turf+LinearRing.swift",
"Turf+Polygon.swift",
"Turf.swift",
"algorithms/DouglasPeucker.swift",
"algorithms/MonotoneChain.swift",
"algorithms/Spline.swift",
"algorithms/SutherlandHodgeman.swift"
],
"type" : "library"
}
],
"tools_version" : "5.7"
}
Done.