The Swift Package Index logo.Swift Package Index

Build Information

Failed to build Failable with Swift 5.9 for macOS (SPM).

Build Command

Build command unavailable

Build Log

========================================
RunAll
========================================
Builder version: 4.27.1
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/skelpo/failable.git
Reference: master
Initialized empty Git repository in /Users/builder/builds/TDmZkXJm/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/.git/
From https://github.com/skelpo/failable
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
HEAD is now at b488d50 Merge pull request #5 from skelpo/develop
Cloned https://github.com/skelpo/failable.git
Revision (git rev-parse @):
b488d50046d35243a67860bd8499bfc7fe1b8428
SUCCESS checkout https://github.com/skelpo/failable.git at master
========================================
ResolveProductDependencies
========================================
Resolving dependencies ...
{
  "identity": ".resolve-product-dependencies",
  "name": "resolve-dependencies",
  "url": "/Users/builder/builds/TDmZkXJm/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/.resolve-product-dependencies",
  "version": "unspecified",
  "path": "/Users/builder/builds/TDmZkXJm/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/.resolve-product-dependencies",
  "dependencies": [
    {
      "identity": "failable",
      "name": "Failable",
      "url": "https://github.com/skelpo/failable.git",
      "version": "unspecified",
      "path": "/Users/builder/builds/TDmZkXJm/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/failable",
      "dependencies": [
      ]
    }
  ]
}
Fetching https://github.com/skelpo/failable.git
[1/746] Fetching failable
Fetched https://github.com/skelpo/failable.git (0.55s)
Creating working copy for https://github.com/skelpo/failable.git
Working copy of https://github.com/skelpo/failable.git resolved at master
warning: '.resolve-product-dependencies': dependency 'failable' is not used by any target
Found 0 product dependencies
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             5.9
Building package at path:  $PWD/checkout
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-15.0.0.app xcrun swift build --arch arm64
Building for debugging...
[1/27] Compiling Failable Failable+Sequence.swift
[2/27] Compiling Failable Failable+SignedNumeric.swift
[3/27] Compiling Failable Failable+Strideable.swift
[4/27] Compiling Failable Failable+StringRepresentation.swift
[5/27] Compiling Failable Validation.swift
[6/27] Compiling Failable AppendedValidations.swift
[7/27] Compiling Failable CollectionValidations.swift
[8/27] Compiling Failable Failable+Hashable.swift
[9/27] Compiling Failable Failable+Numeric.swift
[10/27] Compiling Failable Failable+Optional.swift
[11/27] Compiling Failable Failable+RawRepresentable.swift
error: emit-module command failed with exit code 1 (use -v to see invocation)
[12/30] Compiling Failable Failable+UnsignedInteger.swift
[13/30] Compiling Failable Failable.swift
[14/30] Compiling Failable Operators.swift
[15/30] Compiling Failable Failable+Error.swift
[16/30] Compiling Failable Failable+ExpressibleByLiteral.swift
[17/30] Compiling Failable Failable+FixedWidthInteger.swift
[18/30] Compiling Failable Failable+FloatingPoint.swift
[19/30] Emitting module Failable
/Users/builder/builds/TDmZkXJm/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Failable/Failable+Helpers/Failable+BinaryFloatingPoint.swift:27:26: error: 'Float80' is unavailable: Float80 is not available on target platform.
    public init(_ value: Float80)throws {
                         ^~~~~~~
Swift.Float80:2:23: note: 'Float80' has been explicitly marked unavailable here
@frozen public struct Float80 {
                      ^
/Users/builder/builds/TDmZkXJm/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Failable/Failable+Helpers/Failable+BinaryInteger.swift:39:17: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in Swift 6
    public init<T>(truncatingIfNeeded source: T)throws where T : BinaryInteger {
                ^
/Users/builder/builds/TDmZkXJm/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Failable/Failable.swift:36:24: note: 'T' previously declared here
public struct Failable<T, Validations> where Validations: Validation, Validations.Supported == T {
                       ^
/Users/builder/builds/TDmZkXJm/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Failable/Failable+Helpers/Failable+Collection.swift:1:1: error: type 'Failable<T, Validations>' does not conform to protocol 'Collection'
extension Failable: Collection where T: Collection {
^
/Users/builder/builds/TDmZkXJm/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Failable/Failable+Helpers/Failable+Collection.swift:1:1: error: unavailable subscript 'subscript(_:)' was used to satisfy a requirement of protocol 'Collection'
extension Failable: Collection where T: Collection {
^
Swift.Collection:3:12: note: 'subscript(_:)' declared here
    public subscript(bounds: Range<Self.Index>) -> Self.SubSequence { get }
           ^
Swift.Collection:14:5: note: requirement 'subscript(_:)' declared here
    subscript(bounds: Range<Self.Index>) -> Self.SubSequence { get }
    ^
/Users/builder/builds/TDmZkXJm/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Failable/Failable+Helpers/Failable+Collection.swift:30:1: error: type 'Failable<T, Validations>' does not conform to protocol 'BidirectionalCollection'
extension Failable: BidirectionalCollection where T: BidirectionalCollection {
^
/Users/builder/builds/TDmZkXJm/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Failable/Failable+Helpers/Failable+Collection.swift:30:1: error: unavailable subscript 'subscript(_:)' was used to satisfy a requirement of protocol 'BidirectionalCollection'
extension Failable: BidirectionalCollection where T: BidirectionalCollection {
^
Swift.Collection:3:12: note: 'subscript(_:)' declared here
    public subscript(bounds: Range<Self.Index>) -> Self.SubSequence { get }
           ^
Swift.BidirectionalCollection:14:14: note: requirement 'subscript(_:)' declared here
    override subscript(bounds: Range<Self.Index>) -> Self.SubSequence { get }
             ^
/Users/builder/builds/TDmZkXJm/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Failable/Failable+Helpers/Failable+Collection.swift:38:1: error: type 'Failable<T, Validations>' does not conform to protocol 'RandomAccessCollection'
extension Failable: RandomAccessCollection where T: RandomAccessCollection {}
^
/Users/builder/builds/TDmZkXJm/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Failable/Failable+Helpers/Failable+Collection.swift:38:1: error: unavailable subscript 'subscript(_:)' was used to satisfy a requirement of protocol 'RandomAccessCollection'
extension Failable: RandomAccessCollection where T: RandomAccessCollection {}
^
Swift.Collection:3:12: note: 'subscript(_:)' declared here
    public subscript(bounds: Range<Self.Index>) -> Self.SubSequence { get }
           ^
Swift.RandomAccessCollection:7:14: note: requirement 'subscript(_:)' declared here
    override subscript(bounds: Range<Self.Index>) -> Self.SubSequence { get }
             ^
[20/30] Compiling Failable CodableContainer.swift
/Users/builder/builds/TDmZkXJm/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Failable/Failable+Helpers/Failable+BinaryFloatingPoint.swift:27:26: error: 'Float80' is unavailable: Float80 is not available on target platform.
    public init(_ value: Float80)throws {
                         ^~~~~~~
Swift.Float80:2:23: note: 'Float80' has been explicitly marked unavailable here
@frozen public struct Float80 {
                      ^
/Users/builder/builds/TDmZkXJm/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Failable/Failable+Helpers/Failable+BinaryFloatingPoint.swift:28:17: error: no exact matches in call to initializer
        let t = T(value)
                ^
Swift.BinaryFloatingPoint:5:5: note: candidate expects value of type 'Float' for parameter #1 (got 'Float80')
    init(_ value: Float)
    ^
Swift.BinaryFloatingPoint:6:5: note: candidate expects value of type 'Double' for parameter #1 (got 'Float80')
    init(_ value: Double)
    ^
Swift.FloatingPoint:5:5: note: candidate expects value of type 'Int' for parameter #1 (got 'Float80')
    init(_ value: Int)
    ^
/Users/builder/builds/TDmZkXJm/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Failable/Failable+Helpers/Failable+BinaryInteger.swift:39:17: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in Swift 6
    public init<T>(truncatingIfNeeded source: T)throws where T : BinaryInteger {
                ^
/Users/builder/builds/TDmZkXJm/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Failable/Failable.swift:36:24: note: 'T' previously declared here
public struct Failable<T, Validations> where Validations: Validation, Validations.Supported == T {
                       ^
[21/30] Compiling Failable Error.swift
/Users/builder/builds/TDmZkXJm/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Failable/Failable+Helpers/Failable+BinaryFloatingPoint.swift:27:26: error: 'Float80' is unavailable: Float80 is not available on target platform.
    public init(_ value: Float80)throws {
                         ^~~~~~~
Swift.Float80:2:23: note: 'Float80' has been explicitly marked unavailable here
@frozen public struct Float80 {
                      ^
/Users/builder/builds/TDmZkXJm/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Failable/Failable+Helpers/Failable+BinaryFloatingPoint.swift:28:17: error: no exact matches in call to initializer
        let t = T(value)
                ^
Swift.BinaryFloatingPoint:5:5: note: candidate expects value of type 'Float' for parameter #1 (got 'Float80')
    init(_ value: Float)
    ^
Swift.BinaryFloatingPoint:6:5: note: candidate expects value of type 'Double' for parameter #1 (got 'Float80')
    init(_ value: Double)
    ^
Swift.FloatingPoint:5:5: note: candidate expects value of type 'Int' for parameter #1 (got 'Float80')
    init(_ value: Int)
    ^
/Users/builder/builds/TDmZkXJm/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Failable/Failable+Helpers/Failable+BinaryInteger.swift:39:17: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in Swift 6
    public init<T>(truncatingIfNeeded source: T)throws where T : BinaryInteger {
                ^
/Users/builder/builds/TDmZkXJm/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Failable/Failable.swift:36:24: note: 'T' previously declared here
public struct Failable<T, Validations> where Validations: Validation, Validations.Supported == T {
                       ^
[22/30] Compiling Failable Failable+BinaryFloatingPoint.swift
/Users/builder/builds/TDmZkXJm/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Failable/Failable+Helpers/Failable+BinaryFloatingPoint.swift:27:26: error: 'Float80' is unavailable: Float80 is not available on target platform.
    public init(_ value: Float80)throws {
                         ^~~~~~~
Swift.Float80:2:23: note: 'Float80' has been explicitly marked unavailable here
@frozen public struct Float80 {
                      ^
/Users/builder/builds/TDmZkXJm/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Failable/Failable+Helpers/Failable+BinaryFloatingPoint.swift:28:17: error: no exact matches in call to initializer
        let t = T(value)
                ^
Swift.BinaryFloatingPoint:5:5: note: candidate expects value of type 'Float' for parameter #1 (got 'Float80')
    init(_ value: Float)
    ^
Swift.BinaryFloatingPoint:6:5: note: candidate expects value of type 'Double' for parameter #1 (got 'Float80')
    init(_ value: Double)
    ^
Swift.FloatingPoint:5:5: note: candidate expects value of type 'Int' for parameter #1 (got 'Float80')
    init(_ value: Int)
    ^
/Users/builder/builds/TDmZkXJm/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Failable/Failable+Helpers/Failable+BinaryInteger.swift:39:17: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in Swift 6
    public init<T>(truncatingIfNeeded source: T)throws where T : BinaryInteger {
                ^
/Users/builder/builds/TDmZkXJm/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Failable/Failable.swift:36:24: note: 'T' previously declared here
public struct Failable<T, Validations> where Validations: Validation, Validations.Supported == T {
                       ^
[23/30] Compiling Failable Failable+BinaryInteger.swift
/Users/builder/builds/TDmZkXJm/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Failable/Failable+Helpers/Failable+BinaryFloatingPoint.swift:27:26: error: 'Float80' is unavailable: Float80 is not available on target platform.
    public init(_ value: Float80)throws {
                         ^~~~~~~
Swift.Float80:2:23: note: 'Float80' has been explicitly marked unavailable here
@frozen public struct Float80 {
                      ^
/Users/builder/builds/TDmZkXJm/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Failable/Failable+Helpers/Failable+BinaryFloatingPoint.swift:28:17: error: no exact matches in call to initializer
        let t = T(value)
                ^
Swift.BinaryFloatingPoint:5:5: note: candidate expects value of type 'Float' for parameter #1 (got 'Float80')
    init(_ value: Float)
    ^
Swift.BinaryFloatingPoint:6:5: note: candidate expects value of type 'Double' for parameter #1 (got 'Float80')
    init(_ value: Double)
    ^
Swift.FloatingPoint:5:5: note: candidate expects value of type 'Int' for parameter #1 (got 'Float80')
    init(_ value: Int)
    ^
/Users/builder/builds/TDmZkXJm/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Failable/Failable+Helpers/Failable+BinaryInteger.swift:39:17: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in Swift 6
    public init<T>(truncatingIfNeeded source: T)throws where T : BinaryInteger {
                ^
/Users/builder/builds/TDmZkXJm/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Failable/Failable.swift:36:24: note: 'T' previously declared here
public struct Failable<T, Validations> where Validations: Validation, Validations.Supported == T {
                       ^
[24/30] Compiling Failable Failable+Bool.swift
/Users/builder/builds/TDmZkXJm/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Failable/Failable+Helpers/Failable+Collection.swift:1:1: error: type 'Failable<T, Validations>' does not conform to protocol 'Collection'
extension Failable: Collection where T: Collection {
^
/Users/builder/builds/TDmZkXJm/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Failable/Failable+Helpers/Failable+Collection.swift:1:1: error: unavailable subscript 'subscript(_:)' was used to satisfy a requirement of protocol 'Collection'
extension Failable: Collection where T: Collection {
^
Swift.Collection:3:12: note: 'subscript(_:)' declared here
    public subscript(bounds: Range<Self.Index>) -> Self.SubSequence { get }
           ^
Swift.Collection:14:5: note: requirement 'subscript(_:)' declared here
    subscript(bounds: Range<Self.Index>) -> Self.SubSequence { get }
    ^
/Users/builder/builds/TDmZkXJm/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Failable/Failable+Helpers/Failable+Collection.swift:30:1: error: type 'Failable<T, Validations>' does not conform to protocol 'BidirectionalCollection'
extension Failable: BidirectionalCollection where T: BidirectionalCollection {
^
/Users/builder/builds/TDmZkXJm/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Failable/Failable+Helpers/Failable+Collection.swift:30:1: error: unavailable subscript 'subscript(_:)' was used to satisfy a requirement of protocol 'BidirectionalCollection'
extension Failable: BidirectionalCollection where T: BidirectionalCollection {
^
Swift.Collection:3:12: note: 'subscript(_:)' declared here
    public subscript(bounds: Range<Self.Index>) -> Self.SubSequence { get }
           ^
Swift.BidirectionalCollection:14:14: note: requirement 'subscript(_:)' declared here
    override subscript(bounds: Range<Self.Index>) -> Self.SubSequence { get }
             ^
/Users/builder/builds/TDmZkXJm/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Failable/Failable+Helpers/Failable+Collection.swift:38:1: error: type 'Failable<T, Validations>' does not conform to protocol 'RandomAccessCollection'
extension Failable: RandomAccessCollection where T: RandomAccessCollection {}
^
/Users/builder/builds/TDmZkXJm/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Failable/Failable+Helpers/Failable+Collection.swift:38:1: error: unavailable subscript 'subscript(_:)' was used to satisfy a requirement of protocol 'RandomAccessCollection'
extension Failable: RandomAccessCollection where T: RandomAccessCollection {}
^
Swift.Collection:3:12: note: 'subscript(_:)' declared here
    public subscript(bounds: Range<Self.Index>) -> Self.SubSequence { get }
           ^
Swift.RandomAccessCollection:7:14: note: requirement 'subscript(_:)' declared here
    override subscript(bounds: Range<Self.Index>) -> Self.SubSequence { get }
             ^
[25/30] Compiling Failable Failable+Codable.swift
/Users/builder/builds/TDmZkXJm/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Failable/Failable+Helpers/Failable+Collection.swift:1:1: error: type 'Failable<T, Validations>' does not conform to protocol 'Collection'
extension Failable: Collection where T: Collection {
^
/Users/builder/builds/TDmZkXJm/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Failable/Failable+Helpers/Failable+Collection.swift:1:1: error: unavailable subscript 'subscript(_:)' was used to satisfy a requirement of protocol 'Collection'
extension Failable: Collection where T: Collection {
^
Swift.Collection:3:12: note: 'subscript(_:)' declared here
    public subscript(bounds: Range<Self.Index>) -> Self.SubSequence { get }
           ^
Swift.Collection:14:5: note: requirement 'subscript(_:)' declared here
    subscript(bounds: Range<Self.Index>) -> Self.SubSequence { get }
    ^
/Users/builder/builds/TDmZkXJm/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Failable/Failable+Helpers/Failable+Collection.swift:30:1: error: type 'Failable<T, Validations>' does not conform to protocol 'BidirectionalCollection'
extension Failable: BidirectionalCollection where T: BidirectionalCollection {
^
/Users/builder/builds/TDmZkXJm/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Failable/Failable+Helpers/Failable+Collection.swift:30:1: error: unavailable subscript 'subscript(_:)' was used to satisfy a requirement of protocol 'BidirectionalCollection'
extension Failable: BidirectionalCollection where T: BidirectionalCollection {
^
Swift.Collection:3:12: note: 'subscript(_:)' declared here
    public subscript(bounds: Range<Self.Index>) -> Self.SubSequence { get }
           ^
Swift.BidirectionalCollection:14:14: note: requirement 'subscript(_:)' declared here
    override subscript(bounds: Range<Self.Index>) -> Self.SubSequence { get }
             ^
/Users/builder/builds/TDmZkXJm/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Failable/Failable+Helpers/Failable+Collection.swift:38:1: error: type 'Failable<T, Validations>' does not conform to protocol 'RandomAccessCollection'
extension Failable: RandomAccessCollection where T: RandomAccessCollection {}
^
/Users/builder/builds/TDmZkXJm/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Failable/Failable+Helpers/Failable+Collection.swift:38:1: error: unavailable subscript 'subscript(_:)' was used to satisfy a requirement of protocol 'RandomAccessCollection'
extension Failable: RandomAccessCollection where T: RandomAccessCollection {}
^
Swift.Collection:3:12: note: 'subscript(_:)' declared here
    public subscript(bounds: Range<Self.Index>) -> Self.SubSequence { get }
           ^
Swift.RandomAccessCollection:7:14: note: requirement 'subscript(_:)' declared here
    override subscript(bounds: Range<Self.Index>) -> Self.SubSequence { get }
             ^
[26/30] Compiling Failable Failable+Collection.swift
/Users/builder/builds/TDmZkXJm/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Failable/Failable+Helpers/Failable+Collection.swift:1:1: error: type 'Failable<T, Validations>' does not conform to protocol 'Collection'
extension Failable: Collection where T: Collection {
^
/Users/builder/builds/TDmZkXJm/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Failable/Failable+Helpers/Failable+Collection.swift:1:1: error: unavailable subscript 'subscript(_:)' was used to satisfy a requirement of protocol 'Collection'
extension Failable: Collection where T: Collection {
^
Swift.Collection:3:12: note: 'subscript(_:)' declared here
    public subscript(bounds: Range<Self.Index>) -> Self.SubSequence { get }
           ^
Swift.Collection:14:5: note: requirement 'subscript(_:)' declared here
    subscript(bounds: Range<Self.Index>) -> Self.SubSequence { get }
    ^
/Users/builder/builds/TDmZkXJm/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Failable/Failable+Helpers/Failable+Collection.swift:30:1: error: type 'Failable<T, Validations>' does not conform to protocol 'BidirectionalCollection'
extension Failable: BidirectionalCollection where T: BidirectionalCollection {
^
/Users/builder/builds/TDmZkXJm/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Failable/Failable+Helpers/Failable+Collection.swift:30:1: error: unavailable subscript 'subscript(_:)' was used to satisfy a requirement of protocol 'BidirectionalCollection'
extension Failable: BidirectionalCollection where T: BidirectionalCollection {
^
Swift.Collection:3:12: note: 'subscript(_:)' declared here
    public subscript(bounds: Range<Self.Index>) -> Self.SubSequence { get }
           ^
Swift.BidirectionalCollection:14:14: note: requirement 'subscript(_:)' declared here
    override subscript(bounds: Range<Self.Index>) -> Self.SubSequence { get }
             ^
/Users/builder/builds/TDmZkXJm/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Failable/Failable+Helpers/Failable+Collection.swift:38:1: error: type 'Failable<T, Validations>' does not conform to protocol 'RandomAccessCollection'
extension Failable: RandomAccessCollection where T: RandomAccessCollection {}
^
/Users/builder/builds/TDmZkXJm/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Failable/Failable+Helpers/Failable+Collection.swift:38:1: error: unavailable subscript 'subscript(_:)' was used to satisfy a requirement of protocol 'RandomAccessCollection'
extension Failable: RandomAccessCollection where T: RandomAccessCollection {}
^
Swift.Collection:3:12: note: 'subscript(_:)' declared here
    public subscript(bounds: Range<Self.Index>) -> Self.SubSequence { get }
           ^
Swift.RandomAccessCollection:7:14: note: requirement 'subscript(_:)' declared here
    override subscript(bounds: Range<Self.Index>) -> Self.SubSequence { get }
             ^
[27/30] Compiling Failable Failable+Comparable.swift
/Users/builder/builds/TDmZkXJm/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Failable/Failable+Helpers/Failable+Collection.swift:1:1: error: type 'Failable<T, Validations>' does not conform to protocol 'Collection'
extension Failable: Collection where T: Collection {
^
/Users/builder/builds/TDmZkXJm/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Failable/Failable+Helpers/Failable+Collection.swift:1:1: error: unavailable subscript 'subscript(_:)' was used to satisfy a requirement of protocol 'Collection'
extension Failable: Collection where T: Collection {
^
Swift.Collection:3:12: note: 'subscript(_:)' declared here
    public subscript(bounds: Range<Self.Index>) -> Self.SubSequence { get }
           ^
Swift.Collection:14:5: note: requirement 'subscript(_:)' declared here
    subscript(bounds: Range<Self.Index>) -> Self.SubSequence { get }
    ^
/Users/builder/builds/TDmZkXJm/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Failable/Failable+Helpers/Failable+Collection.swift:30:1: error: type 'Failable<T, Validations>' does not conform to protocol 'BidirectionalCollection'
extension Failable: BidirectionalCollection where T: BidirectionalCollection {
^
/Users/builder/builds/TDmZkXJm/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Failable/Failable+Helpers/Failable+Collection.swift:30:1: error: unavailable subscript 'subscript(_:)' was used to satisfy a requirement of protocol 'BidirectionalCollection'
extension Failable: BidirectionalCollection where T: BidirectionalCollection {
^
Swift.Collection:3:12: note: 'subscript(_:)' declared here
    public subscript(bounds: Range<Self.Index>) -> Self.SubSequence { get }
           ^
Swift.BidirectionalCollection:14:14: note: requirement 'subscript(_:)' declared here
    override subscript(bounds: Range<Self.Index>) -> Self.SubSequence { get }
             ^
/Users/builder/builds/TDmZkXJm/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Failable/Failable+Helpers/Failable+Collection.swift:38:1: error: type 'Failable<T, Validations>' does not conform to protocol 'RandomAccessCollection'
extension Failable: RandomAccessCollection where T: RandomAccessCollection {}
^
/Users/builder/builds/TDmZkXJm/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Failable/Failable+Helpers/Failable+Collection.swift:38:1: error: unavailable subscript 'subscript(_:)' was used to satisfy a requirement of protocol 'RandomAccessCollection'
extension Failable: RandomAccessCollection where T: RandomAccessCollection {}
^
Swift.Collection:3:12: note: 'subscript(_:)' declared here
    public subscript(bounds: Range<Self.Index>) -> Self.SubSequence { get }
           ^
Swift.RandomAccessCollection:7:14: note: requirement 'subscript(_:)' declared here
    override subscript(bounds: Range<Self.Index>) -> Self.SubSequence { get }
             ^
[28/30] Compiling Failable ComparableValidations.swift
[29/30] Compiling Failable OptionalValidations.swift
[30/30] Compiling Failable StringValidations.swift
error: fatalError
[0/1] Planning build
Building for debugging...
[1/8] Compiling Failable Failable+Codable.swift
[2/8] Compiling Failable Error.swift
[3/8] Compiling Failable Failable+Bool.swift
[4/8] Compiling Failable Failable+BinaryFloatingPoint.swift
/Users/builder/builds/TDmZkXJm/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Failable/Failable+Helpers/Failable+BinaryFloatingPoint.swift:27:26: error: 'Float80' is unavailable: Float80 is not available on target platform.
    public init(_ value: Float80)throws {
                         ^~~~~~~
Swift.Float80:2:23: note: 'Float80' has been explicitly marked unavailable here
@frozen public struct Float80 {
                      ^
/Users/builder/builds/TDmZkXJm/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Failable/Failable+Helpers/Failable+BinaryFloatingPoint.swift:28:17: error: no exact matches in call to initializer
        let t = T(value)
                ^
Swift.BinaryFloatingPoint:5:5: note: candidate expects value of type 'Float' for parameter #1 (got 'Float80')
    init(_ value: Float)
    ^
Swift.BinaryFloatingPoint:6:5: note: candidate expects value of type 'Double' for parameter #1 (got 'Float80')
    init(_ value: Double)
    ^
Swift.FloatingPoint:5:5: note: candidate expects value of type 'Int' for parameter #1 (got 'Float80')
    init(_ value: Int)
    ^
[5/18] Compiling Failable CodableContainer.swift
[6/18] Compiling Failable Failable+Collection.swift
/Users/builder/builds/TDmZkXJm/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Failable/Failable+Helpers/Failable+Collection.swift:1:1: error: type 'Failable<T, Validations>' does not conform to protocol 'Collection'
extension Failable: Collection where T: Collection {
^
/Users/builder/builds/TDmZkXJm/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Failable/Failable+Helpers/Failable+Collection.swift:1:1: error: unavailable subscript 'subscript(_:)' was used to satisfy a requirement of protocol 'Collection'
extension Failable: Collection where T: Collection {
^
Swift.Collection:3:12: note: 'subscript(_:)' declared here
    public subscript(bounds: Range<Self.Index>) -> Self.SubSequence { get }
           ^
Swift.Collection:14:5: note: requirement 'subscript(_:)' declared here
    subscript(bounds: Range<Self.Index>) -> Self.SubSequence { get }
    ^
/Users/builder/builds/TDmZkXJm/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Failable/Failable+Helpers/Failable+Collection.swift:30:1: error: type 'Failable<T, Validations>' does not conform to protocol 'BidirectionalCollection'
extension Failable: BidirectionalCollection where T: BidirectionalCollection {
^
/Users/builder/builds/TDmZkXJm/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Failable/Failable+Helpers/Failable+Collection.swift:30:1: error: unavailable subscript 'subscript(_:)' was used to satisfy a requirement of protocol 'BidirectionalCollection'
extension Failable: BidirectionalCollection where T: BidirectionalCollection {
^
Swift.Collection:3:12: note: 'subscript(_:)' declared here
    public subscript(bounds: Range<Self.Index>) -> Self.SubSequence { get }
           ^
Swift.BidirectionalCollection:14:14: note: requirement 'subscript(_:)' declared here
    override subscript(bounds: Range<Self.Index>) -> Self.SubSequence { get }
             ^
/Users/builder/builds/TDmZkXJm/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Failable/Failable+Helpers/Failable+Collection.swift:38:1: error: type 'Failable<T, Validations>' does not conform to protocol 'RandomAccessCollection'
extension Failable: RandomAccessCollection where T: RandomAccessCollection {}
^
/Users/builder/builds/TDmZkXJm/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Failable/Failable+Helpers/Failable+Collection.swift:38:1: error: unavailable subscript 'subscript(_:)' was used to satisfy a requirement of protocol 'RandomAccessCollection'
extension Failable: RandomAccessCollection where T: RandomAccessCollection {}
^
Swift.Collection:3:12: note: 'subscript(_:)' declared here
    public subscript(bounds: Range<Self.Index>) -> Self.SubSequence { get }
           ^
Swift.RandomAccessCollection:7:14: note: requirement 'subscript(_:)' declared here
    override subscript(bounds: Range<Self.Index>) -> Self.SubSequence { get }
             ^
[7/23] Compiling Failable Failable+UnsignedInteger.swift
[8/23] Compiling Failable Failable.swift
[9/25] Compiling Failable Failable+Comparable.swift
error: emit-module command failed with exit code 1 (use -v to see invocation)
[10/27] Compiling Failable Failable+BinaryInteger.swift
/Users/builder/builds/TDmZkXJm/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Failable/Failable+Helpers/Failable+BinaryInteger.swift:39:17: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in Swift 6
    public init<T>(truncatingIfNeeded source: T)throws where T : BinaryInteger {
                ^
/Users/builder/builds/TDmZkXJm/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Failable/Failable.swift:36:24: note: 'T' previously declared here
public struct Failable<T, Validations> where Validations: Validation, Validations.Supported == T {
                       ^
[11/27] Emitting module Failable
/Users/builder/builds/TDmZkXJm/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Failable/Failable+Helpers/Failable+BinaryFloatingPoint.swift:27:26: error: 'Float80' is unavailable: Float80 is not available on target platform.
    public init(_ value: Float80)throws {
                         ^~~~~~~
Swift.Float80:2:23: note: 'Float80' has been explicitly marked unavailable here
@frozen public struct Float80 {
                      ^
/Users/builder/builds/TDmZkXJm/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Failable/Failable+Helpers/Failable+BinaryInteger.swift:39:17: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in Swift 6
    public init<T>(truncatingIfNeeded source: T)throws where T : BinaryInteger {
                ^
/Users/builder/builds/TDmZkXJm/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Failable/Failable.swift:36:24: note: 'T' previously declared here
public struct Failable<T, Validations> where Validations: Validation, Validations.Supported == T {
                       ^
/Users/builder/builds/TDmZkXJm/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Failable/Failable+Helpers/Failable+Collection.swift:1:1: error: type 'Failable<T, Validations>' does not conform to protocol 'Collection'
extension Failable: Collection where T: Collection {
^
/Users/builder/builds/TDmZkXJm/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Failable/Failable+Helpers/Failable+Collection.swift:1:1: error: unavailable subscript 'subscript(_:)' was used to satisfy a requirement of protocol 'Collection'
extension Failable: Collection where T: Collection {
^
Swift.Collection:3:12: note: 'subscript(_:)' declared here
    public subscript(bounds: Range<Self.Index>) -> Self.SubSequence { get }
           ^
Swift.Collection:14:5: note: requirement 'subscript(_:)' declared here
    subscript(bounds: Range<Self.Index>) -> Self.SubSequence { get }
    ^
/Users/builder/builds/TDmZkXJm/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Failable/Failable+Helpers/Failable+Collection.swift:30:1: error: type 'Failable<T, Validations>' does not conform to protocol 'BidirectionalCollection'
extension Failable: BidirectionalCollection where T: BidirectionalCollection {
^
/Users/builder/builds/TDmZkXJm/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Failable/Failable+Helpers/Failable+Collection.swift:30:1: error: unavailable subscript 'subscript(_:)' was used to satisfy a requirement of protocol 'BidirectionalCollection'
extension Failable: BidirectionalCollection where T: BidirectionalCollection {
^
Swift.Collection:3:12: note: 'subscript(_:)' declared here
    public subscript(bounds: Range<Self.Index>) -> Self.SubSequence { get }
           ^
Swift.BidirectionalCollection:14:14: note: requirement 'subscript(_:)' declared here
    override subscript(bounds: Range<Self.Index>) -> Self.SubSequence { get }
             ^
/Users/builder/builds/TDmZkXJm/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Failable/Failable+Helpers/Failable+Collection.swift:38:1: error: type 'Failable<T, Validations>' does not conform to protocol 'RandomAccessCollection'
extension Failable: RandomAccessCollection where T: RandomAccessCollection {}
^
/Users/builder/builds/TDmZkXJm/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/Failable/Failable+Helpers/Failable+Collection.swift:38:1: error: unavailable subscript 'subscript(_:)' was used to satisfy a requirement of protocol 'RandomAccessCollection'
extension Failable: RandomAccessCollection where T: RandomAccessCollection {}
^
Swift.Collection:3:12: note: 'subscript(_:)' declared here
    public subscript(bounds: Range<Self.Index>) -> Self.SubSequence { get }
           ^
Swift.RandomAccessCollection:7:14: note: requirement 'subscript(_:)' declared here
    override subscript(bounds: Range<Self.Index>) -> Self.SubSequence { get }
             ^
[12/29] Compiling Failable Failable+SignedNumeric.swift
[13/29] Compiling Failable Failable+Strideable.swift
[14/29] Compiling Failable Failable+StringRepresentation.swift
[15/29] Compiling Failable Failable+Optional.swift
[16/29] Compiling Failable Failable+RawRepresentable.swift
[17/29] Compiling Failable Failable+Sequence.swift
[18/29] Compiling Failable OptionalValidations.swift
[19/29] Compiling Failable StringValidations.swift
[20/29] Compiling Failable Operators.swift
[21/29] Compiling Failable Validation.swift
[22/29] Compiling Failable CollectionValidations.swift
[23/29] Compiling Failable ComparableValidations.swift
[24/29] Compiling Failable Failable+FloatingPoint.swift
[25/29] Compiling Failable Failable+Hashable.swift
[26/29] Compiling Failable Failable+Numeric.swift
[27/29] Compiling Failable Failable+Error.swift
[28/29] Compiling Failable Failable+ExpressibleByLiteral.swift
[29/29] Compiling Failable Failable+FixedWidthInteger.swift
error: fatalError
BUILD FAILURE 5.9 macosSpm