Build Information
Successful build of LazyArray, reference master (6a4606
), with Swift 6.0 for macOS (SPM) on 27 Nov 2024 01:21:41 UTC.
Swift 6 data race errors: 0
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.1.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.58.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/lucas34/LazyArray.git
Reference: master
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/lucas34/LazyArray
* branch master -> FETCH_HEAD
* [new branch] master -> origin/master
HEAD is now at 6a4606d Rename parameter to keep consistency
Cloned https://github.com/lucas34/LazyArray.git
Revision (git rev-parse @):
6a4606d2177baba0af4e6a03063d894c6fb2ea39
SUCCESS checkout https://github.com/lucas34/LazyArray.git at master
========================================
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": "lazyarray",
"name": "LazyArray",
"url": "https://github.com/lucas34/LazyArray.git",
"version": "unspecified",
"path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/LazyArray",
"dependencies": [
]
}
]
}
Fetching https://github.com/lucas34/LazyArray.git
[1/248] Fetching lazyarray
Fetched https://github.com/lucas34/LazyArray.git from cache (0.71s)
Creating working copy for https://github.com/lucas34/LazyArray.git
Working copy of https://github.com/lucas34/LazyArray.git resolved at master (6a4606d)
warning: '.resolve-product-dependencies': dependency 'lazyarray' is not used by any target
Found 0 product dependencies
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.0
Building package at path: $PWD
https://github.com/lucas34/LazyArray.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.1.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/2] Write sources
[1/2] Write swift-version--7754E27361AE5C74.txt
[3/12] Compiling LazyArray LazyArray+Sequence.swift
/Users/admin/builder/spi-builder-workspace/Sources/LazyArray/LazyArray+Sequence.swift:10:5: warning: 'public' modifier is redundant for static method declared in a public extension
8 | public extension LazyArray {
9 |
10 | public static func EMPTY<E>() -> LazyArray<E> {
| `- warning: 'public' modifier is redundant for static method declared in a public extension
11 | return LazyArray<E>()
12 | }
/Users/admin/builder/spi-builder-workspace/Sources/LazyArray/LazyArray+Sequence.swift:14:5: warning: 'public' modifier is redundant for property declared in a public extension
12 | }
13 |
14 | public final var isEmpty: Bool {
| `- warning: 'public' modifier is redundant for property declared in a public extension
15 | return count < 1
16 | }
/Users/admin/builder/spi-builder-workspace/Sources/LazyArray/LazyArray+Sequence.swift:18:5: warning: 'public' modifier is redundant for property declared in a public extension
16 | }
17 |
18 | public final var hasData: Bool {
| `- warning: 'public' modifier is redundant for property declared in a public extension
19 | return !isEmpty
20 | }
/Users/admin/builder/spi-builder-workspace/Sources/LazyArray/LazyArray+Sequence.swift:22:5: warning: 'public' modifier is redundant for property declared in a public extension
20 | }
21 |
22 | public final var first: Element? {
| `- warning: 'public' modifier is redundant for property declared in a public extension
23 | return isEmpty ? nil : self[0]
24 | }
/Users/admin/builder/spi-builder-workspace/Sources/LazyArray/LazyArray+Sequence.swift:26:5: warning: 'public' modifier is redundant for property declared in a public extension
24 | }
25 |
26 | public final var last: Element? {
| `- warning: 'public' modifier is redundant for property declared in a public extension
27 | return isEmpty ? nil : self[count - 1]
28 | }
/Users/admin/builder/spi-builder-workspace/Sources/LazyArray/LazyArray+Sequence.swift:30:5: warning: 'public' modifier is redundant for instance method declared in a public extension
28 | }
29 |
30 | public final func dropFirst() -> LazyArray<Element> {
| `- warning: 'public' modifier is redundant for instance method declared in a public extension
31 | guard count > 0 else {
32 | return LazyArray<Element>.EMPTY()
/Users/admin/builder/spi-builder-workspace/Sources/LazyArray/LazyArray+Sequence.swift:37:5: warning: 'public' modifier is redundant for instance method declared in a public extension
35 | }
36 |
37 | public final func dropFirst(_ n: Int) -> LazyArray<Element> {
| `- warning: 'public' modifier is redundant for instance method declared in a public extension
38 | guard n >= 0 else {
39 | fatalError("Can't drop a negative number of elements from a collection")
/Users/admin/builder/spi-builder-workspace/Sources/LazyArray/LazyArray+Sequence.swift:44:5: warning: 'public' modifier is redundant for instance method declared in a public extension
42 | }
43 |
44 | public final func dropLast() -> LazyArray<Element> {
| `- warning: 'public' modifier is redundant for instance method declared in a public extension
45 | return self[0..<Swift.max(0, (count - 1))]
46 | }
/Users/admin/builder/spi-builder-workspace/Sources/LazyArray/LazyArray+Sequence.swift:48:5: warning: 'public' modifier is redundant for instance method declared in a public extension
46 | }
47 |
48 | public final func dropLast(_ n: Int) -> LazyArray<Element> {
| `- warning: 'public' modifier is redundant for instance method declared in a public extension
49 | guard n >= 0 else {
50 | fatalError("Can't drop a negative number of elements from a collection")
/Users/admin/builder/spi-builder-workspace/Sources/LazyArray/LazyArray+Sequence.swift:55:5: warning: 'public' modifier is redundant for instance method declared in a public extension
53 | }
54 |
55 | public final func prefix(_ maxLength: Int) -> LazyArray<Element> {
| `- warning: 'public' modifier is redundant for instance method declared in a public extension
56 | guard maxLength >= 0 else {
57 | fatalError("Can't take a prefix of negative length from a collection")
/Users/admin/builder/spi-builder-workspace/Sources/LazyArray/LazyArray+Sequence.swift:62:5: warning: 'public' modifier is redundant for instance method declared in a public extension
60 | }
61 |
62 | public final func suffix(_ maxLength: Int) -> LazyArray<Element> {
| `- warning: 'public' modifier is redundant for instance method declared in a public extension
63 | guard maxLength >= 0 else {
64 | fatalError("Can't take a suffix of negative length from a collection")
[4/13] Compiling LazyArray LazyArray.swift
[5/13] Compiling LazyArray LazyArray+Range.swift
[6/13] Compiling LazyArray LazyArray+Linear.swift
[7/13] Compiling LazyArray LazyArray+Cache.swift
[8/13] Compiling LazyArray LazyArray+Array.swift
[9/13] Compiling LazyArray LazyArray+CoutableRange.swift
[10/13] Compiling LazyArray LazyArray+Any.swift
[11/13] Emitting module LazyArray
/Users/admin/builder/spi-builder-workspace/Sources/LazyArray/LazyArray+Sequence.swift:10:5: warning: 'public' modifier is redundant for static method declared in a public extension
8 | public extension LazyArray {
9 |
10 | public static func EMPTY<E>() -> LazyArray<E> {
| `- warning: 'public' modifier is redundant for static method declared in a public extension
11 | return LazyArray<E>()
12 | }
/Users/admin/builder/spi-builder-workspace/Sources/LazyArray/LazyArray+Sequence.swift:14:5: warning: 'public' modifier is redundant for property declared in a public extension
12 | }
13 |
14 | public final var isEmpty: Bool {
| `- warning: 'public' modifier is redundant for property declared in a public extension
15 | return count < 1
16 | }
/Users/admin/builder/spi-builder-workspace/Sources/LazyArray/LazyArray+Sequence.swift:18:5: warning: 'public' modifier is redundant for property declared in a public extension
16 | }
17 |
18 | public final var hasData: Bool {
| `- warning: 'public' modifier is redundant for property declared in a public extension
19 | return !isEmpty
20 | }
/Users/admin/builder/spi-builder-workspace/Sources/LazyArray/LazyArray+Sequence.swift:22:5: warning: 'public' modifier is redundant for property declared in a public extension
20 | }
21 |
22 | public final var first: Element? {
| `- warning: 'public' modifier is redundant for property declared in a public extension
23 | return isEmpty ? nil : self[0]
24 | }
/Users/admin/builder/spi-builder-workspace/Sources/LazyArray/LazyArray+Sequence.swift:26:5: warning: 'public' modifier is redundant for property declared in a public extension
24 | }
25 |
26 | public final var last: Element? {
| `- warning: 'public' modifier is redundant for property declared in a public extension
27 | return isEmpty ? nil : self[count - 1]
28 | }
/Users/admin/builder/spi-builder-workspace/Sources/LazyArray/LazyArray+Sequence.swift:30:5: warning: 'public' modifier is redundant for instance method declared in a public extension
28 | }
29 |
30 | public final func dropFirst() -> LazyArray<Element> {
| `- warning: 'public' modifier is redundant for instance method declared in a public extension
31 | guard count > 0 else {
32 | return LazyArray<Element>.EMPTY()
/Users/admin/builder/spi-builder-workspace/Sources/LazyArray/LazyArray+Sequence.swift:37:5: warning: 'public' modifier is redundant for instance method declared in a public extension
35 | }
36 |
37 | public final func dropFirst(_ n: Int) -> LazyArray<Element> {
| `- warning: 'public' modifier is redundant for instance method declared in a public extension
38 | guard n >= 0 else {
39 | fatalError("Can't drop a negative number of elements from a collection")
/Users/admin/builder/spi-builder-workspace/Sources/LazyArray/LazyArray+Sequence.swift:44:5: warning: 'public' modifier is redundant for instance method declared in a public extension
42 | }
43 |
44 | public final func dropLast() -> LazyArray<Element> {
| `- warning: 'public' modifier is redundant for instance method declared in a public extension
45 | return self[0..<Swift.max(0, (count - 1))]
46 | }
/Users/admin/builder/spi-builder-workspace/Sources/LazyArray/LazyArray+Sequence.swift:48:5: warning: 'public' modifier is redundant for instance method declared in a public extension
46 | }
47 |
48 | public final func dropLast(_ n: Int) -> LazyArray<Element> {
| `- warning: 'public' modifier is redundant for instance method declared in a public extension
49 | guard n >= 0 else {
50 | fatalError("Can't drop a negative number of elements from a collection")
/Users/admin/builder/spi-builder-workspace/Sources/LazyArray/LazyArray+Sequence.swift:55:5: warning: 'public' modifier is redundant for instance method declared in a public extension
53 | }
54 |
55 | public final func prefix(_ maxLength: Int) -> LazyArray<Element> {
| `- warning: 'public' modifier is redundant for instance method declared in a public extension
56 | guard maxLength >= 0 else {
57 | fatalError("Can't take a prefix of negative length from a collection")
/Users/admin/builder/spi-builder-workspace/Sources/LazyArray/LazyArray+Sequence.swift:62:5: warning: 'public' modifier is redundant for instance method declared in a public extension
60 | }
61 |
62 | public final func suffix(_ maxLength: Int) -> LazyArray<Element> {
| `- warning: 'public' modifier is redundant for instance method declared in a public extension
63 | guard maxLength >= 0 else {
64 | fatalError("Can't take a suffix of negative length from a collection")
[12/13] Compiling LazyArray LazyArray+Map.swift
[13/13] Compiling LazyArray LazyMutableList.swift
Build complete! (14.77s)
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "LazyArray",
"name" : "LazyArray",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
],
"products" : [
{
"name" : "LazyArray",
"targets" : [
"LazyArray"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"swift_languages_versions" : [
"3",
"4"
],
"targets" : [
{
"c99name" : "LazyArrayTests",
"module_type" : "SwiftTarget",
"name" : "LazyArrayTests",
"path" : "Tests/LazyArrayTests",
"sources" : [
"LazyArrayTests.swift"
],
"target_dependencies" : [
"LazyArray"
],
"type" : "test"
},
{
"c99name" : "LazyArray",
"module_type" : "SwiftTarget",
"name" : "LazyArray",
"path" : "Sources/LazyArray",
"product_memberships" : [
"LazyArray"
],
"sources" : [
"LazyArray+Any.swift",
"LazyArray+Array.swift",
"LazyArray+Cache.swift",
"LazyArray+CoutableRange.swift",
"LazyArray+Linear.swift",
"LazyArray+Map.swift",
"LazyArray+Range.swift",
"LazyArray+Sequence.swift",
"LazyArray.swift",
"LazyMutableList.swift"
],
"type" : "library"
}
],
"tools_version" : "4.0"
}
Done.