Build Information
Successful build of swift-json-testing, reference main (b6d726
), with Swift 6.2 (beta) for macOS (SPM) on 20 Jun 2025 13:10:40 UTC.
Swift 6 data race errors: 0
Build Command
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
Build Log
========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/davdroman/swift-json-testing.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/davdroman/swift-json-testing
* branch main -> FETCH_HEAD
* [new branch] main -> origin/main
HEAD is now at b6d7261 Bump actions/checkout to v4 (#15)
Cloned https://github.com/davdroman/swift-json-testing.git
Revision (git rev-parse @):
b6d7261594b9e2f8f954e4c088c01c7a54181a5f
SUCCESS checkout https://github.com/davdroman/swift-json-testing.git at main
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.2
Building package at path: $PWD
https://github.com/davdroman/swift-json-testing.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
Building for debugging...
[0/5] Write sources
[4/5] Write swift-version-1EA4D86E10B52AF.txt
[6/24] Compiling IssueReporting BreakpointReporter.swift
[7/24] Compiling IssueReporting FatalErrorReporter.swift
[8/26] Compiling IssueReporting LockIsolated.swift
[9/26] Compiling IssueReporting Rethrows.swift
[10/26] Compiling IssueReporting SwiftTesting.swift
[11/26] Compiling IssueReporting UncheckedSendable.swift
[12/26] Compiling IssueReporting ErrorReporting.swift
[13/26] Compiling IssueReporting AppHostWarning.swift
[14/26] Compiling IssueReporting Deprecations.swift
[15/26] Compiling IssueReporting FailureObserver.swift
[16/26] Emitting module IssueReporting
[17/26] Compiling IssueReporting IsTesting.swift
[18/26] Compiling IssueReporting IssueReporter.swift
[19/26] Compiling IssueReporting Warn.swift
[20/26] Compiling IssueReporting XCTest.swift
[21/26] Compiling IssueReporting TestContext.swift
[22/26] Compiling IssueReporting Unimplemented.swift
[23/26] Compiling IssueReporting RuntimeWarningReporter.swift
[24/26] Compiling IssueReporting ReportIssue.swift
[25/26] Compiling IssueReporting WithExpectedIssue.swift
[26/26] Compiling IssueReporting WithIssueContext.swift
[27/29] Compiling XCTestDynamicOverlay Exports.swift
[28/29] Compiling XCTestDynamicOverlay Deprecations.swift
[29/29] Emitting module XCTestDynamicOverlay
[30/57] Compiling CustomDump Foundation.swift
[31/57] Compiling CustomDump GameKit.swift
[32/57] Compiling CustomDump KeyPath.swift
[33/59] Emitting module CustomDump
[34/59] Compiling CustomDump CustomDumpRepresentable.swift
[35/59] Compiling CustomDump CustomDumpStringConvertible.swift
[36/59] Compiling CustomDump Diff.swift
[37/59] Compiling CustomDump XCTAssertDifference.swift
[38/59] Compiling CustomDump XCTAssertNoDifference.swift
[39/59] Compiling CustomDump CoreImage.swift
[40/59] Compiling CustomDump CoreLocation.swift
[41/59] Compiling CustomDump CoreMotion.swift
[42/59] Compiling CustomDump Mirror.swift
[43/59] Compiling CustomDump String.swift
[44/59] Compiling CustomDump Unordered.swift
[45/59] Compiling CustomDump UserNotifications.swift
[46/59] Compiling CustomDump UserNotificationsUI.swift
[47/59] Compiling CustomDump CustomDumpReflectable.swift
[48/59] Compiling CustomDump Dump.swift
[49/59] Compiling CustomDump ExpectDifference.swift
[50/59] Compiling CustomDump ExpectNoDifference.swift
[51/59] Compiling CustomDump Swift.swift
[52/59] Compiling CustomDump SwiftUI.swift
[53/59] Compiling CustomDump UIKit.swift
[54/59] Compiling CustomDump AnyType.swift
[55/59] Compiling CustomDump CollectionDifference.swift
[56/59] Compiling CustomDump Identifiable.swift
[57/59] Compiling CustomDump Photos.swift
[58/59] Compiling CustomDump Speech.swift
[59/59] Compiling CustomDump StoreKit.swift
[60/68] Compiling JSONTesting XCTAssertJSONConfiguration.swift
[61/68] Compiling JSONTesting JSON+Serialization.swift
[62/68] Compiling JSONTesting JSON+Debugging.swift
[63/68] Compiling JSONTesting Exports.swift
[64/68] Compiling JSONTesting JSON+Codable.swift
[65/68] Compiling JSONTesting XCTAssertJSON.swift
/Users/admin/builder/spi-builder-workspace/Sources/JSONTesting/XCTAssertJSON.swift:14:5: warning: 'XCTAssertNoDifference(_:_:_:file:line:)' is deprecated: renamed to 'expectNoDifference' [#DeprecatedDeclaration]
12 | let codable = try codable()
13 | let sut = try decoder.decode(T.self, from: encoder.encode(codable))
14 | XCTAssertNoDifference(sut, codable, message(), file: file, line: line)
| |- warning: 'XCTAssertNoDifference(_:_:_:file:line:)' is deprecated: renamed to 'expectNoDifference' [#DeprecatedDeclaration]
| `- note: use 'expectNoDifference' instead
15 | }
16 |
/Users/admin/builder/spi-builder-workspace/Sources/JSONTesting/XCTAssertJSON.swift:41:5: warning: 'XCTAssertNoDifference(_:_:_:file:line:)' is deprecated: renamed to 'expectNoDifference' [#DeprecatedDeclaration]
39 | let sut = try JSON(of: encodable(), encoder: encoder)
40 | let json = try json()
41 | XCTAssertNoDifference(sut, json, message(), file: file, line: line)
| |- warning: 'XCTAssertNoDifference(_:_:_:file:line:)' is deprecated: renamed to 'expectNoDifference' [#DeprecatedDeclaration]
| `- note: use 'expectNoDifference' instead
42 | }
43 |
/Users/admin/builder/spi-builder-workspace/Sources/JSONTesting/XCTAssertJSON.swift:54:5: warning: 'XCTAssertNoDifference(_:_:_:file:line:)' is deprecated: renamed to 'expectNoDifference' [#DeprecatedDeclaration]
52 | let sut = try json().as(T.self, decoder: decoder)
53 | let decodable = try decodable()
54 | XCTAssertNoDifference(sut, decodable, message(), file: file, line: line)
| |- warning: 'XCTAssertNoDifference(_:_:_:file:line:)' is deprecated: renamed to 'expectNoDifference' [#DeprecatedDeclaration]
| `- note: use 'expectNoDifference' instead
55 | }
56 |
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[66/68] Compiling JSONTesting JSON+Literals.swift
[67/68] Compiling JSONTesting JSON.swift
[68/68] Emitting module JSONTesting
Build complete! (24.40s)
Fetching https://github.com/pointfreeco/swift-custom-dump
[1/4581] Fetching swift-custom-dump
Fetched https://github.com/pointfreeco/swift-custom-dump from cache (0.83s)
Computing version for https://github.com/pointfreeco/swift-custom-dump
Computed https://github.com/pointfreeco/swift-custom-dump at 1.3.3 (1.28s)
Fetching https://github.com/pointfreeco/xctest-dynamic-overlay
[1/5467] Fetching xctest-dynamic-overlay
Fetched https://github.com/pointfreeco/xctest-dynamic-overlay from cache (1.38s)
Computing version for https://github.com/pointfreeco/xctest-dynamic-overlay
Computed https://github.com/pointfreeco/xctest-dynamic-overlay at 1.5.2 (1.80s)
Creating working copy for https://github.com/pointfreeco/xctest-dynamic-overlay
Working copy of https://github.com/pointfreeco/xctest-dynamic-overlay resolved at 1.5.2
Creating working copy for https://github.com/pointfreeco/swift-custom-dump
Working copy of https://github.com/pointfreeco/swift-custom-dump resolved at 1.3.3
Build complete.
{
"dependencies" : [
{
"identity" : "swift-custom-dump",
"requirement" : {
"range" : [
{
"lower_bound" : "1.0.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/pointfreeco/swift-custom-dump"
}
],
"manifest_display_name" : "swift-json-testing",
"name" : "swift-json-testing",
"path" : "/Users/admin/builder/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" : "JSONTesting",
"targets" : [
"JSONTesting"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "JSONTestingTests",
"module_type" : "SwiftTarget",
"name" : "JSONTestingTests",
"path" : "Tests/JSONTestingTests",
"sources" : [
"JSONTests.swift",
"Sequence+AdjacentPairs.swift",
"XCTAssertJSONTests.swift"
],
"target_dependencies" : [
"JSONTesting"
],
"type" : "test"
},
{
"c99name" : "JSONTesting",
"module_type" : "SwiftTarget",
"name" : "JSONTesting",
"path" : "Sources/JSONTesting",
"product_dependencies" : [
"CustomDump"
],
"product_memberships" : [
"JSONTesting"
],
"sources" : [
"Exports.swift",
"JSON+Codable.swift",
"JSON+Debugging.swift",
"JSON+Literals.swift",
"JSON+Serialization.swift",
"JSON.swift",
"XCTAssertJSON.swift",
"XCTAssertJSONConfiguration.swift"
],
"type" : "library"
}
],
"tools_version" : "5.7"
}
Done.