Rebuild bottles of xcinfo #1454
Annotations
8 errors, 1 warning, and 16 notices
bottle (14-arm64-12381311609)
xcinfo 1.0.3 did not build
|
`brew install --verbose --formula --build-bottle xcinfo` failed on macOS Sonoma (14) on Apple Silicon!:
Formula/x/xcinfo.rb#L25
1 | @Frozen public struct UnsafeBufferPointer<Element> : Copyable where Element : ~Copyable {
| `- note: generic struct 'UnsafeBufferPointer' does not conform to the 'Sendable' protocol
2 | public let count: Int
3 | @inlinable public init(start: UnsafePointer<Element>?, count: Int)
/private/tmp/xcinfo-20241217-5070-i39rv7/xcinfo-1.0.3/Sources/xcinfoCore/Unxip.swift:193:13: error: the compiler is unable to type-check this expression in reasonable time; try breaking up the expression into distinct sub-expressions
191 | }
192 |
193 | let attribute =
| `- error: the compiler is unable to type-check this expression in reasonable time; try breaking up the expression into distinct sub-expressions
194 | "cmpf".utf8.reversed() // magic
195 | + [0x0c, 0x00, 0x00, 0x00] // LZFSE, 64K chunks
/private/tmp/xcinfo-20241217-5070-i39rv7/xcinfo-1.0.3/Sources/xcinfoCore/Unxip.swift:287:33: warning: capture of '_remaining' with non-sendable type 'UnsafeBufferPointer<UInt8>.SubSequence' (aka 'Slice<UnsafeBufferPointer<UInt8>>') in a `@Sendable` closure; this is an error in the Swift 6 language mode
285 |
286 | chunkStream.addTask {
287 | let remaining = _remaining
| `- warning: capture of '_remaining' with non-sendable type 'UnsafeBufferPointer<UInt8>.SubSequence' (aka 'Slice<UnsafeBufferPointer<UInt8>>') in a `@Sendable` closure; this is an error in the Swift 6 language mode
288 | let decompressedSize = _decompressedSize
289 |
Swift.Slice:1:23: note: generic struct 'Slice' does not conform to the 'Sendable' protocol
1 | @Frozen public struct Slice<Base> where Base : Collection {
| `- note: generic struct 'Slice' does not conform to the 'Sendable' protocol
2 | public var _startIndex: Base.Index
3 | public var _endIndex: Base.Index
/private/tmp/xcinfo-20241217-5070-i39rv7/xcinfo-1.0.3/Sources/xcinfoCore/XCReleasesAPI.swift:38:1: warning: extension declares a conformance of imported type 'Xcode' to imported protocols 'CustomStringConvertible', 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'XCModel' introduce this conformance in the future
36 | }
37 |
38 | extension Xcode: CustomStringConvertible, CustomDebugStringConvertible {
| |- warning: extension declares a conformance of imported type 'Xcode' to imported protocols 'CustomStringConvertible', 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'XCModel' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
39 | var displayVersion: String {
40 | var components: [String] = []
/private/tmp/xcinfo-20241217-5070-i39rv7/xcinfo-1.0.3/Sources/xcinfoCore/XCReleasesAPI.swift:140:1: warning: extension declares a conformance of imported type 'Xcode' to imported protocols 'Comparable', 'Equatable', 'Hashable'; this will not behave correctly if the owners of 'XCModel' introduce this conformance in the future
138 | }
139 |
140 | extension Xcode: Comparable, Hashable {
| |- warning: extension declares a conformance of imported type 'Xcode' to imported protocols 'Comparable', 'Equatable', 'Hashable'; this will not behave correctly if the owners of 'XCModel' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
141 | public static func == (lhs: Xcode, rhs: Xcode) -> Bool {
142 | lhs.version == rhs.version
/private/tmp/xcinfo-20241217-5070-i39rv7/xcinfo-1.0.3/Sources/xcinfoCore/XCReleasesAPI.swift:154:1: warning: extension declares a conformance of imported type 'Version' to imported protocols 'Comparable', 'Equatable', 'Hashable'; this will not behave correctly if the owners of 'XCModel' introduce this conformance in the future
152 | }
153 |
154 | extension Version: Comparable, Hashable {
| |- warning: extension declares a conformance of imported type 'Versi
|
bottle (14-arm64-12381311609)
install failed
|
bottle (14-arm64-12381311609)
Process completed with exit code 1.
|
bottle (14-x86_64-12381311609)
xcinfo 1.0.3 did not build
|
`brew install --verbose --formula --build-bottle xcinfo` failed on macOS Sonoma (14)!:
Formula/x/xcinfo.rb#L25
1 | @Frozen public struct UnsafeBufferPointer<Element> : Copyable where Element : ~Copyable {
| `- note: generic struct 'UnsafeBufferPointer' does not conform to the 'Sendable' protocol
2 | public let count: Int
3 | @inlinable public init(start: UnsafePointer<Element>?, count: Int)
/private/tmp/xcinfo-20241217-5055-6cqxuh/xcinfo-1.0.3/Sources/xcinfoCore/Unxip.swift:193:13: error: the compiler is unable to type-check this expression in reasonable time; try breaking up the expression into distinct sub-expressions
191 | }
192 |
193 | let attribute =
| `- error: the compiler is unable to type-check this expression in reasonable time; try breaking up the expression into distinct sub-expressions
194 | "cmpf".utf8.reversed() // magic
195 | + [0x0c, 0x00, 0x00, 0x00] // LZFSE, 64K chunks
/private/tmp/xcinfo-20241217-5055-6cqxuh/xcinfo-1.0.3/Sources/xcinfoCore/Unxip.swift:287:33: warning: capture of '_remaining' with non-sendable type 'UnsafeBufferPointer<UInt8>.SubSequence' (aka 'Slice<UnsafeBufferPointer<UInt8>>') in a `@Sendable` closure; this is an error in the Swift 6 language mode
285 |
286 | chunkStream.addTask {
287 | let remaining = _remaining
| `- warning: capture of '_remaining' with non-sendable type 'UnsafeBufferPointer<UInt8>.SubSequence' (aka 'Slice<UnsafeBufferPointer<UInt8>>') in a `@Sendable` closure; this is an error in the Swift 6 language mode
288 | let decompressedSize = _decompressedSize
289 |
Swift.Slice:1:23: note: generic struct 'Slice' does not conform to the 'Sendable' protocol
1 | @Frozen public struct Slice<Base> where Base : Collection {
| `- note: generic struct 'Slice' does not conform to the 'Sendable' protocol
2 | public var _startIndex: Base.Index
3 | public var _endIndex: Base.Index
/private/tmp/xcinfo-20241217-5055-6cqxuh/xcinfo-1.0.3/Sources/xcinfoCore/XCReleasesAPI.swift:38:1: warning: extension declares a conformance of imported type 'Xcode' to imported protocols 'CustomStringConvertible', 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'XCModel' introduce this conformance in the future
36 | }
37 |
38 | extension Xcode: CustomStringConvertible, CustomDebugStringConvertible {
| |- warning: extension declares a conformance of imported type 'Xcode' to imported protocols 'CustomStringConvertible', 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'XCModel' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
39 | var displayVersion: String {
40 | var components: [String] = []
/private/tmp/xcinfo-20241217-5055-6cqxuh/xcinfo-1.0.3/Sources/xcinfoCore/XCReleasesAPI.swift:140:1: warning: extension declares a conformance of imported type 'Xcode' to imported protocols 'Comparable', 'Equatable', 'Hashable'; this will not behave correctly if the owners of 'XCModel' introduce this conformance in the future
138 | }
139 |
140 | extension Xcode: Comparable, Hashable {
| |- warning: extension declares a conformance of imported type 'Xcode' to imported protocols 'Comparable', 'Equatable', 'Hashable'; this will not behave correctly if the owners of 'XCModel' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
141 | public static func == (lhs: Xcode, rhs: Xcode) -> Bool {
142 | lhs.version == rhs.version
/private/tmp/xcinfo-20241217-5055-6cqxuh/xcinfo-1.0.3/Sources/xcinfoCore/XCReleasesAPI.swift:154:1: warning: extension declares a conformance of imported type 'Version' to imported protocols 'Comparable', 'Equatable', 'Hashable'; this will not behave correctly if the owners of 'XCModel' introduce this conformance in the future
152 | }
153 |
154 | extension Version: Comparable, Hashable {
| |- warning: extension declares a conformance of imported type 'Versi
|
bottle (14-x86_64-12381311609)
install failed
|
bottle (14-x86_64-12381311609)
Process completed with exit code 1.
|
setup
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
bottle (14-arm64-12381311609)
0 bottle(s)
|
bottle (14-arm64-12381311609)
0 failed bottle(s)
|
bottle (14-arm64-12381311609)
1 list(s) of skipped formulae
|
bottle (14-arm64-12381311609)
0 list(s) of successfully tested dependents
|
bottle (13-arm64-12381311609)
1 bottle(s)
|
bottle (13-arm64-12381311609)
0 failed bottle(s)
|
bottle (13-arm64-12381311609)
1 list(s) of skipped formulae
|
bottle (13-arm64-12381311609)
0 list(s) of successfully tested dependents
|
bottle (14-x86_64-12381311609)
0 bottle(s)
|
bottle (14-x86_64-12381311609)
0 failed bottle(s)
|
bottle (14-x86_64-12381311609)
1 list(s) of skipped formulae
|
bottle (14-x86_64-12381311609)
0 list(s) of successfully tested dependents
|
bottle (13-x86_64-12381311609)
1 bottle(s)
|
bottle (13-x86_64-12381311609)
0 failed bottle(s)
|
bottle (13-x86_64-12381311609)
1 list(s) of skipped formulae
|
bottle (13-x86_64-12381311609)
0 list(s) of successfully tested dependents
|
Artifacts
Produced during runtime
Name | Size | |
---|---|---|
bottles_13-arm64-12381311609
|
886 KB |
|
bottles_13-x86_64-12381311609
|
904 KB |
|
bottles_14-arm64-12381311609
|
466 Bytes |
|
bottles_14-x86_64-12381311609
|
454 Bytes |
|
logs_13-arm64-12381311609
|
2.04 KB |
|
logs_13-x86_64-12381311609
|
2.08 KB |
|
logs_14-arm64-12381311609
|
4 KB |
|
logs_14-x86_64-12381311609
|
4 KB |
|