The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Failed to build Chameleon, reference master (f133b8), with Swift 6.2 (beta) for macOS (SPM) on 17 Jun 2025 23:44:29 UTC.

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/chameleonbot/chameleon.git
Reference: master
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/chameleonbot/chameleon
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
HEAD is now at f133b84 Update ModelPointer+Matcher.swift (#3)
Cloned https://github.com/chameleonbot/chameleon.git
Revision (git rev-parse @):
f133b847586f0ea78b6148b2e0eac5bf13429c40
SUCCESS checkout https://github.com/chameleonbot/chameleon.git at master
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.2
Building package at path:  $PWD
https://github.com/chameleonbot/chameleon.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
Building for debugging...
[0/36] Write sources
[34/36] Write swift-version-1EA4D86E10B52AF.txt
[35/79] Compiling CHTTP http_parser.c
[37/79] Emitting module PathIndexable
[38/79] Compiling PathIndexable PathIndexable.swift
[39/79] Compiling PathIndexable PathIndexable+Subscripting.swift
[40/79] Emitting module Debugging
[41/79] Compiling Debugging Debuggable.swift
[42/79] Emitting module libc
[43/79] Compiling libc libc.swift
[44/79] Compiling Bits Byte+Alphabet.swift
[45/79] Compiling Bits Byte+ControlCharacters.swift
[46/79] Compiling Bits Byte+Convenience.swift
[47/79] Compiling Bits Byte+PatternMatching.swift
[48/80] Emitting module Bits
[49/80] Compiling Bits Aliases.swift
[50/80] Compiling Bits Base64Encoder.swift
[51/80] Compiling Bits String+BytesConvertible.swift
[52/80] Compiling Bits UnsignedInteger+BytesConvertible.swift
[53/80] Compiling Bits HexEncoder.swift
[54/80] Compiling Bits Operators.swift
[55/80] Compiling Bits ByteSequence+Conversions.swift
[56/80] Compiling Bits Bytes+Base64.swift
[57/80] Compiling Bits Byte+Random.swift
[58/80] Compiling Bits Byte+UTF8Numbers.swift
[59/80] Compiling Bits UnsignedInteger+Shifting.swift
[60/80] Compiling Bits BytesConvertible.swift
[61/80] Compiling Bits Data+BytesConvertible.swift
[62/80] Compiling Bits Bytes+Hex.swift
[63/80] Compiling Bits Bytes+Percent.swift
[66/80] Compiling Common String+Extensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/Common/Codable/Decodable.swift:7:10: warning: associated value 'error(type:error:)' of 'Sendable'-conforming generic enum 'DecodeError' has non-sendable type 'T.Type'
 5 |
 6 | public enum DecodeError<T: Decodable>: Error, CustomStringConvertible {
 7 |     case error(type: T.Type, error: Error)
   |          `- warning: associated value 'error(type:error:)' of 'Sendable'-conforming generic enum 'DecodeError' has non-sendable type 'T.Type'
 8 |
 9 |     public var description: String {
/Users/admin/builder/spi-builder-workspace/Sources/Common/Codable/Decoder+Decodable.swift:3:5: warning: 'public' modifier is redundant for instance method declared in a public extension
 1 |
 2 | public extension Decoder {
 3 |     public func value<T: Decodable>(of type: T.Type = T.self, at keyPath: [KeyPathComponent]) throws -> T {
   |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
 4 |         let innerData: [String: Any] = try value(at: keyPath)
 5 |         let decoder = Decoder(data: innerData)
/Users/admin/builder/spi-builder-workspace/Sources/Common/Codable/Decoder+Decodable.swift:9:5: warning: 'public' modifier is redundant for instance method declared in a public extension
 7 |         return try T(decoder: decoder)
 8 |     }
 9 |     public func values<T: Decodable>(of type: T.Type = T.self, at keyPath: [KeyPathComponent]) throws -> [T] {
   |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
10 |         let innerData: [[String: Any]] = try value(at: keyPath)
11 |
/Users/admin/builder/spi-builder-workspace/Sources/Common/Codable/Decodable.swift:7:10: warning: associated value 'error(type:error:)' of 'Sendable'-conforming generic enum 'DecodeError' has non-sendable type 'T.Type'
 5 |
 6 | public enum DecodeError<T: Decodable>: Error, CustomStringConvertible {
 7 |     case error(type: T.Type, error: Error)
   |          `- warning: associated value 'error(type:error:)' of 'Sendable'-conforming generic enum 'DecodeError' has non-sendable type 'T.Type'
 8 |
 9 |     public var description: String {
/Users/admin/builder/spi-builder-workspace/Sources/Common/Codable/Decoder+Decodable.swift:3:5: warning: 'public' modifier is redundant for instance method declared in a public extension
 1 |
 2 | public extension Decoder {
 3 |     public func value<T: Decodable>(of type: T.Type = T.self, at keyPath: [KeyPathComponent]) throws -> T {
   |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
 4 |         let innerData: [String: Any] = try value(at: keyPath)
 5 |         let decoder = Decoder(data: innerData)
/Users/admin/builder/spi-builder-workspace/Sources/Common/Codable/Decoder+Decodable.swift:9:5: warning: 'public' modifier is redundant for instance method declared in a public extension
 7 |         return try T(decoder: decoder)
 8 |     }
 9 |     public func values<T: Decodable>(of type: T.Type = T.self, at keyPath: [KeyPathComponent]) throws -> [T] {
   |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
10 |         let innerData: [[String: Any]] = try value(at: keyPath)
11 |
[75/80] Compiling Common String+HTML.swift
[80/80] Emitting module Common
/Users/admin/builder/spi-builder-workspace/Sources/Common/Codable/Decodable.swift:7:10: warning: associated value 'error(type:error:)' of 'Sendable'-conforming generic enum 'DecodeError' has non-sendable type 'T.Type'
 5 |
 6 | public enum DecodeError<T: Decodable>: Error, CustomStringConvertible {
 7 |     case error(type: T.Type, error: Error)
   |          `- warning: associated value 'error(type:error:)' of 'Sendable'-conforming generic enum 'DecodeError' has non-sendable type 'T.Type'
 8 |
 9 |     public var description: String {
/Users/admin/builder/spi-builder-workspace/Sources/Common/Codable/Decoder+Decodable.swift:3:5: warning: 'public' modifier is redundant for instance method declared in a public extension
 1 |
 2 | public extension Decoder {
 3 |     public func value<T: Decodable>(of type: T.Type = T.self, at keyPath: [KeyPathComponent]) throws -> T {
   |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
 4 |         let innerData: [String: Any] = try value(at: keyPath)
 5 |         let decoder = Decoder(data: innerData)
/Users/admin/builder/spi-builder-workspace/Sources/Common/Codable/Decoder+Decodable.swift:9:5: warning: 'public' modifier is redundant for instance method declared in a public extension
 7 |         return try T(decoder: decoder)
 8 |     }
 9 |     public func values<T: Decodable>(of type: T.Type = T.self, at keyPath: [KeyPathComponent]) throws -> [T] {
   |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
10 |         let innerData: [[String: Any]] = try value(at: keyPath)
11 |
[81/103] Compiling Common TimeInterval+Extensions.swift
[82/135] Emitting module Core
[83/137] Compiling Models EmojiRepresentable.swift
[84/137] Compiling Models IDRepresentable.swift
[85/137] Compiling Models ModelPointer.swift
[86/137] Compiling Models Pong.swift
[87/137] Compiling Models Parse.swift
[88/137] Compiling Models Decoder+ModelPointer.swift
[89/137] Compiling Models Emoji.swift
[90/137] Compiling Models ChatMessage.swift
[91/137] Compiling Models Field.swift
[92/137] Compiling Models Footer.swift
[93/137] Compiling Models CustomEmoji.swift
[94/137] Compiling Models MessageEdit.swift
[95/137] Compiling Models Targets.swift
[96/137] Compiling Models Team.swift
[97/137] Compiling Models Nameable.swift
[98/137] Compiling Models Title.swift
[99/137] Compiling Models Color.swift
[100/137] Compiling Models Command.swift
[101/137] Compiling Models Exports.swift
[102/137] Compiling Models Group.swift
[103/137] Compiling Models SlashCommand.swift
[104/137] Compiling Models BotUser.swift
[105/137] Compiling Models Channel.swift
[106/137] Compiling Models Attachment.swift
[107/137] Compiling Models Author.swift
/Users/admin/builder/spi-builder-workspace/Sources/Models/ModelPointer.swift:38:16: warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'ModelPointer' to 'Hashable' by implementing 'hash(into:)' instead [#DeprecatedDeclaration]
36 |
37 | extension ModelPointer: Hashable {
38 |     public var hashValue: Int {
   |                `- warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'ModelPointer' to 'Hashable' by implementing 'hash(into:)' instead [#DeprecatedDeclaration]
39 |         return id.hashValue
40 |     }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
/Users/admin/builder/spi-builder-workspace/Sources/Models/ModelPointer.swift:38:16: warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'ModelPointer' to 'Hashable' by implementing 'hash(into:)' instead [#DeprecatedDeclaration]
36 |
37 | extension ModelPointer: Hashable {
38 |     public var hashValue: Int {
   |                `- warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'ModelPointer' to 'Hashable' by implementing 'hash(into:)' instead [#DeprecatedDeclaration]
39 |         return id.hashValue
40 |     }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
/Users/admin/builder/spi-builder-workspace/Sources/Models/ModelPointer.swift:38:16: warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'ModelPointer' to 'Hashable' by implementing 'hash(into:)' instead [#DeprecatedDeclaration]
36 |
37 | extension ModelPointer: Hashable {
38 |     public var hashValue: Int {
   |                `- warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'ModelPointer' to 'Hashable' by implementing 'hash(into:)' instead [#DeprecatedDeclaration]
39 |         return id.hashValue
40 |     }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[111/140] Compiling Models IM.swift
[112/140] Compiling Models Message+Subtype.swift
[113/140] Compiling Models Message.swift
[114/140] Compiling Core String.swift
[115/140] Compiling Core WorkingDirectory.swift
[116/140] Compiling Models Purpose.swift
[129/227] Emitting module Models
/Users/admin/builder/spi-builder-workspace/Sources/Models/Decoder+ModelPointer.swift:3:5: warning: 'public' modifier is redundant for instance method declared in a public extension
 1 |
 2 | public extension Common.Decoder {
 3 |     public func pointer<T: IDRepresentable>(at keyPath: [KeyPathComponent]) throws -> ModelPointer<T> {
   |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
 4 |         let pointerId: String = try value(at: keyPath)
 5 |         return ModelPointer(id: pointerId)
/Users/admin/builder/spi-builder-workspace/Sources/Models/Decoder+ModelPointer.swift:7:5: warning: 'public' modifier is redundant for instance method declared in a public extension
 5 |         return ModelPointer(id: pointerId)
 6 |     }
 7 |     public func pointers<T: IDRepresentable>(at keyPath: [KeyPathComponent]) throws -> [ModelPointer<T>] {
   |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
 8 |         let pointerIds: [String] = try value(at: keyPath)
 9 |         return pointerIds.map(ModelPointer.init)
/Users/admin/builder/spi-builder-workspace/Sources/Models/ModelPointer.swift:38:16: warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'ModelPointer' to 'Hashable' by implementing 'hash(into:)' instead [#DeprecatedDeclaration]
36 |
37 | extension ModelPointer: Hashable {
38 |     public var hashValue: Int {
   |                `- warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'ModelPointer' to 'Hashable' by implementing 'hash(into:)' instead [#DeprecatedDeclaration]
39 |         return id.hashValue
40 |     }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[130/227] Compiling Console String+ANSI.swift
[131/227] Compiling Console Terminal+Command.swift
[132/227] Compiling Node StructuredDataWrapper+Polymorphic.swift
[133/227] Compiling Node Getters.swift
[134/227] Compiling Node Setters.swift
[135/227] Compiling Node Bool+Convertible.swift
[136/227] Compiling Node Date+Convertible.swift
[137/227] Compiling Node FloatingPoint+Convertible.swift
/Users/admin/builder/spi-builder-workspace/Sources/Models/Decoder+ModelPointer.swift:3:5: warning: 'public' modifier is redundant for instance method declared in a public extension
 1 |
 2 | public extension Common.Decoder {
 3 |     public func pointer<T: IDRepresentable>(at keyPath: [KeyPathComponent]) throws -> ModelPointer<T> {
   |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
 4 |         let pointerId: String = try value(at: keyPath)
 5 |         return ModelPointer(id: pointerId)
/Users/admin/builder/spi-builder-workspace/Sources/Models/Decoder+ModelPointer.swift:7:5: warning: 'public' modifier is redundant for instance method declared in a public extension
 5 |         return ModelPointer(id: pointerId)
 6 |     }
 7 |     public func pointers<T: IDRepresentable>(at keyPath: [KeyPathComponent]) throws -> [ModelPointer<T>] {
   |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
 8 |         let pointerIds: [String] = try value(at: keyPath)
 9 |         return pointerIds.map(ModelPointer.init)
[138/227] Compiling Node Integer+Convertible.swift
/Users/admin/builder/spi-builder-workspace/Sources/Models/Decoder+ModelPointer.swift:3:5: warning: 'public' modifier is redundant for instance method declared in a public extension
 1 |
 2 | public extension Common.Decoder {
 3 |     public func pointer<T: IDRepresentable>(at keyPath: [KeyPathComponent]) throws -> ModelPointer<T> {
   |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
 4 |         let pointerId: String = try value(at: keyPath)
 5 |         return ModelPointer(id: pointerId)
/Users/admin/builder/spi-builder-workspace/Sources/Models/Decoder+ModelPointer.swift:7:5: warning: 'public' modifier is redundant for instance method declared in a public extension
 5 |         return ModelPointer(id: pointerId)
 6 |     }
 7 |     public func pointers<T: IDRepresentable>(at keyPath: [KeyPathComponent]) throws -> [ModelPointer<T>] {
   |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
 8 |         let pointerIds: [String] = try value(at: keyPath)
 9 |         return pointerIds.map(ModelPointer.init)
[139/227] Compiling Node Schema+Convertible.swift
/Users/admin/builder/spi-builder-workspace/Sources/Models/Decoder+ModelPointer.swift:3:5: warning: 'public' modifier is redundant for instance method declared in a public extension
 1 |
 2 | public extension Common.Decoder {
 3 |     public func pointer<T: IDRepresentable>(at keyPath: [KeyPathComponent]) throws -> ModelPointer<T> {
   |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
 4 |         let pointerId: String = try value(at: keyPath)
 5 |         return ModelPointer(id: pointerId)
/Users/admin/builder/spi-builder-workspace/Sources/Models/Decoder+ModelPointer.swift:7:5: warning: 'public' modifier is redundant for instance method declared in a public extension
 5 |         return ModelPointer(id: pointerId)
 6 |     }
 7 |     public func pointers<T: IDRepresentable>(at keyPath: [KeyPathComponent]) throws -> [ModelPointer<T>] {
   |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
 8 |         let pointerIds: [String] = try value(at: keyPath)
 9 |         return pointerIds.map(ModelPointer.init)
[140/227] Compiling Node SchemaWrapper+Convertible.swift
/Users/admin/builder/spi-builder-workspace/Sources/Models/Decoder+ModelPointer.swift:3:5: warning: 'public' modifier is redundant for instance method declared in a public extension
 1 |
 2 | public extension Common.Decoder {
 3 |     public func pointer<T: IDRepresentable>(at keyPath: [KeyPathComponent]) throws -> ModelPointer<T> {
   |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
 4 |         let pointerId: String = try value(at: keyPath)
 5 |         return ModelPointer(id: pointerId)
/Users/admin/builder/spi-builder-workspace/Sources/Models/Decoder+ModelPointer.swift:7:5: warning: 'public' modifier is redundant for instance method declared in a public extension
 5 |         return ModelPointer(id: pointerId)
 6 |     }
 7 |     public func pointers<T: IDRepresentable>(at keyPath: [KeyPathComponent]) throws -> [ModelPointer<T>] {
   |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
 8 |         let pointerIds: [String] = try value(at: keyPath)
 9 |         return pointerIds.map(ModelPointer.init)
[141/227] Compiling Transport StreamError.swift
[142/228] Compiling Transport Stream.swift
[143/228] Compiling Random EmptyInitializable.swift
[144/228] Emitting module Transport
[145/228] Compiling Transport ClientStream.swift
[146/228] Compiling Random Exports.swift
[147/228] Compiling Random OSRandom.swift
[148/228] Compiling Random RandomProtocol.swift
[149/228] Compiling Random URandom.swift
[150/228] Compiling Transport ServerStream.swift
[151/228] Compiling Transport ReadableStream.swift
[152/228] Compiling Transport InternetStream.swift
[153/228] Compiling Transport Exports.swift
[154/228] Compiling Transport Port.swift
[155/228] Compiling Transport FoundationStream.swift
[156/228] Compiling Console ConsoleStyle+Terminal.swift
[159/231] Compiling Node StructuredData+Init.swift
[160/231] Compiling Node StructuredData+PathIndexable.swift
[161/231] Compiling Node StructuredData+Polymorphic.swift
[162/231] Compiling Node StructuredData.swift
[163/231] Compiling Node StructuredDataWrapper+Cases.swift
[164/231] Compiling Node StructuredDataWrapper+Convenience.swift
[165/231] Compiling Random Array+Random.swift
[166/231] Emitting module Random
[167/231] Compiling Node String+Convertible.swift
[168/231] Compiling Node UUID+Convertible.swift
[169/231] Compiling Node UnsignedInteger+Convertible.swift
[170/231] Compiling Node Context.swift
[171/231] Emitting module Node
[172/234] Compiling Transport WriteableStream.swift
[173/285] Compiling Sockets Select.swift
[174/285] Compiling Sockets TCPEstablishedSocket.swift
[175/285] Compiling Sockets TCPInternetSocket.swift
[176/285] Compiling Sockets Address+C.swift
[178/285] Compiling Console Terminal.swift
[179/285] Compiling Console Bool+Polymorphic.swift
[180/285] Compiling Node Optional+Convertible.swift
[181/285] Compiling Node Set+Convertible.swift
[182/285] Compiling Node Number.swift
[183/285] Compiling Node StructuredData+Equatable.swift
[184/285] Compiling Sockets Config.swift
[185/285] Compiling Sockets Descriptor.swift
[186/285] Compiling Sockets Socket.swift
[187/285] Compiling Sockets SocketOptions.swift
[188/285] Compiling Sockets Types.swift
[189/285] Compiling Sockets Exports.swift
[190/285] Compiling Sockets Conversions.swift
[191/285] Compiling Sockets Error.swift
[192/285] Compiling Sockets FDSet.swift
[193/285] Compiling Sockets InternetSocket.swift
[194/285] Compiling Sockets Pipe.swift
[195/285] Compiling Sockets RawSocket.swift
[208/285] Emitting module Console
[221/285] Compiling Sockets Address.swift
[222/285] Compiling Sockets Buffer.swift
[223/285] Compiling Sockets TCPReadableSocket.swift
[224/285] Compiling Sockets TCPSocket.swift
[229/285] Compiling Node Errors.swift
[230/285] Compiling Node Exports.swift
[231/285] Compiling Node Identifier.swift
[235/301] Compiling Crypto LibreSSLError.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
  |         `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/ctls/shim.h:4:10: error: 'openssl/conf.h' file not found
 2 | #define __COPENSSL_SHIM_H__
 3 |
 4 | #include <openssl/conf.h>
   |          `- error: 'openssl/conf.h' file not found
 5 | #include <openssl/evp.h>
 6 | #include <openssl/err.h>
/Users/admin/builder/spi-builder-workspace/.build/checkouts/crypto/Sources/Crypto/Cipher/Cipher+Method.swift:1:8: error: could not build Objective-C module 'CTLS'
  1 | import CTLS
    |        `- error: could not build Objective-C module 'CTLS'
  2 |
  3 | extension Cipher {
[236/302] Compiling Crypto Hash+Random.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
  |         `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/ctls/shim.h:4:10: error: 'openssl/conf.h' file not found
 2 | #define __COPENSSL_SHIM_H__
 3 |
 4 | #include <openssl/conf.h>
   |          `- error: 'openssl/conf.h' file not found
 5 | #include <openssl/evp.h>
 6 | #include <openssl/err.h>
/Users/admin/builder/spi-builder-workspace/.build/checkouts/crypto/Sources/Crypto/Cipher/Cipher+Method.swift:1:8: error: could not build Objective-C module 'CTLS'
  1 | import CTLS
    |        `- error: could not build Objective-C module 'CTLS'
  2 |
  3 | extension Cipher {
[237/302] Compiling Crypto Hash.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
  |         `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/ctls/shim.h:4:10: error: 'openssl/conf.h' file not found
 2 | #define __COPENSSL_SHIM_H__
 3 |
 4 | #include <openssl/conf.h>
   |          `- error: 'openssl/conf.h' file not found
 5 | #include <openssl/evp.h>
 6 | #include <openssl/err.h>
/Users/admin/builder/spi-builder-workspace/.build/checkouts/crypto/Sources/Crypto/Cipher/Cipher+Method.swift:1:8: error: could not build Objective-C module 'CTLS'
  1 | import CTLS
    |        `- error: could not build Objective-C module 'CTLS'
  2 |
  3 | extension Cipher {
[238/302] Compiling Crypto Hash+Method.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
  |         `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/ctls/shim.h:4:10: error: 'openssl/conf.h' file not found
 2 | #define __COPENSSL_SHIM_H__
 3 |
 4 | #include <openssl/conf.h>
   |          `- error: 'openssl/conf.h' file not found
 5 | #include <openssl/evp.h>
 6 | #include <openssl/err.h>
/Users/admin/builder/spi-builder-workspace/.build/checkouts/crypto/Sources/Crypto/Cipher/Cipher+Method.swift:1:8: error: could not build Objective-C module 'CTLS'
  1 | import CTLS
    |        `- error: could not build Objective-C module 'CTLS'
  2 |
  3 | extension Cipher {
[239/302] Compiling Crypto PseudoRandom.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
  |         `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/ctls/shim.h:4:10: error: 'openssl/conf.h' file not found
 2 | #define __COPENSSL_SHIM_H__
 3 |
 4 | #include <openssl/conf.h>
   |          `- error: 'openssl/conf.h' file not found
 5 | #include <openssl/evp.h>
 6 | #include <openssl/err.h>
/Users/admin/builder/spi-builder-workspace/.build/checkouts/crypto/Sources/Crypto/Cipher/Cipher+Method.swift:1:8: error: could not build Objective-C module 'CTLS'
  1 | import CTLS
    |        `- error: could not build Objective-C module 'CTLS'
  2 |
  3 | extension Cipher {
[240/302] Compiling Crypto HMAC.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
  |         `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/ctls/shim.h:4:10: error: 'openssl/conf.h' file not found
 2 | #define __COPENSSL_SHIM_H__
 3 |
 4 | #include <openssl/conf.h>
   |          `- error: 'openssl/conf.h' file not found
 5 | #include <openssl/evp.h>
 6 | #include <openssl/err.h>
/Users/admin/builder/spi-builder-workspace/.build/checkouts/crypto/Sources/Crypto/Cipher/Cipher+Method.swift:1:8: error: could not build Objective-C module 'CTLS'
  1 | import CTLS
    |        `- error: could not build Objective-C module 'CTLS'
  2 |
  3 | extension Cipher {
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
  |         `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/ctls/shim.h:4:10: error: 'openssl/conf.h' file not found
 2 | #define __COPENSSL_SHIM_H__
 3 |
 4 | #include <openssl/conf.h>
   |          `- error: 'openssl/conf.h' file not found
 5 | #include <openssl/evp.h>
 6 | #include <openssl/err.h>
/Users/admin/builder/spi-builder-workspace/.build/checkouts/crypto/Sources/Crypto/Cipher/Cipher+Method.swift:1:8: error: could not build Objective-C module 'CTLS'
  1 | import CTLS
    |        `- error: could not build Objective-C module 'CTLS'
  2 |
  3 | extension Cipher {
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
  |         `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/ctls/shim.h:4:10: error: 'openssl/conf.h' file not found
 2 | #define __COPENSSL_SHIM_H__
 3 |
 4 | #include <openssl/conf.h>
   |          `- error: 'openssl/conf.h' file not found
 5 | #include <openssl/evp.h>
 6 | #include <openssl/err.h>
/Users/admin/builder/spi-builder-workspace/.build/checkouts/crypto/Sources/Crypto/Cipher/Cipher+Method.swift:1:8: error: could not build Objective-C module 'CTLS'
  1 | import CTLS
    |        `- error: could not build Objective-C module 'CTLS'
  2 |
  3 | extension Cipher {
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
  |         `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/ctls/shim.h:4:10: error: 'openssl/conf.h' file not found
 2 | #define __COPENSSL_SHIM_H__
 3 |
 4 | #include <openssl/conf.h>
   |          `- error: 'openssl/conf.h' file not found
 5 | #include <openssl/evp.h>
 6 | #include <openssl/err.h>
/Users/admin/builder/spi-builder-workspace/.build/checkouts/crypto/Sources/Crypto/Cipher/Cipher+Method.swift:1:8: error: could not build Objective-C module 'CTLS'
  1 | import CTLS
    |        `- error: could not build Objective-C module 'CTLS'
  2 |
  3 | extension Cipher {
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
  |         `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/ctls/shim.h:4:10: error: 'openssl/conf.h' file not found
 2 | #define __COPENSSL_SHIM_H__
 3 |
 4 | #include <openssl/conf.h>
   |          `- error: 'openssl/conf.h' file not found
 5 | #include <openssl/evp.h>
 6 | #include <openssl/err.h>
/Users/admin/builder/spi-builder-workspace/.build/checkouts/crypto/Sources/Crypto/Cipher/Cipher+Method.swift:1:8: error: could not build Objective-C module 'CTLS'
  1 | import CTLS
    |        `- error: could not build Objective-C module 'CTLS'
  2 |
  3 | extension Cipher {
[247/304] Compiling BCrypt Serializer.swift
[248/304] Compiling BCrypt Salt.swift
[249/304] Compiling JSON Sequence+Convertible.swift
error: emit-module command failed with exit code 1 (use -v to see invocation)
[250/304] Emitting module Crypto
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
  |         `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/ctls/shim.h:4:10: error: 'openssl/conf.h' file not found
 2 | #define __COPENSSL_SHIM_H__
 3 |
 4 | #include <openssl/conf.h>
   |          `- error: 'openssl/conf.h' file not found
 5 | #include <openssl/evp.h>
 6 | #include <openssl/err.h>
/Users/admin/builder/spi-builder-workspace/.build/checkouts/crypto/Sources/Crypto/Cipher/Cipher+Method.swift:1:8: error: could not build Objective-C module 'CTLS'
  1 | import CTLS
    |        `- error: could not build Objective-C module 'CTLS'
  2 |
  3 | extension Cipher {
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
  |         `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/ctls/shim.h:4:10: error: 'openssl/conf.h' file not found
 2 | #define __COPENSSL_SHIM_H__
 3 |
 4 | #include <openssl/conf.h>
   |          `- error: 'openssl/conf.h' file not found
 5 | #include <openssl/evp.h>
 6 | #include <openssl/err.h>
/Users/admin/builder/spi-builder-workspace/.build/checkouts/crypto/Sources/Crypto/Cipher/Cipher+Method.swift:1:8: error: could not build Objective-C module 'CTLS'
  1 | import CTLS
    |        `- error: could not build Objective-C module 'CTLS'
  2 |
  3 | extension Cipher {
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
  |         `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/ctls/shim.h:4:10: error: 'openssl/conf.h' file not found
 2 | #define __COPENSSL_SHIM_H__
 3 |
 4 | #include <openssl/conf.h>
   |          `- error: 'openssl/conf.h' file not found
 5 | #include <openssl/evp.h>
 6 | #include <openssl/err.h>
/Users/admin/builder/spi-builder-workspace/.build/checkouts/crypto/Sources/Crypto/Cipher/Cipher+Method.swift:1:8: error: could not build Objective-C module 'CTLS'
  1 | import CTLS
    |        `- error: could not build Objective-C module 'CTLS'
  2 |
  3 | extension Cipher {
[253/304] Compiling Cache MemoryCache.swift
[254/304] Emitting module Cache
[255/304] Compiling Cache CacheProtocol.swift
[256/304] Compiling BCrypt Export.swift
[257/304] Compiling BCrypt Keys.swift
[258/304] Compiling BCrypt Parser.swift
[259/304] Compiling Branches SubBranchMap.swift
[260/304] Compiling Branches Branch+Paths.swift
[261/304] Compiling JSON JSONRepresentable.swift
[262/304] Compiling JSON JSONContext.swift
[263/304] Compiling JSON JSON.swift
[264/304] Compiling JSON JSON+Serialize.swift
[265/304] Emitting module Branches
[266/304] Compiling Branches Branch.swift
[267/304] Compiling Crypto Random.swift
<module-includes>:1:9: note: in file included from <module-includes>:1:
1 | #import "shim.h"
  |         `- note: in file included from <module-includes>:1:
2 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/ctls/shim.h:4:10: error: 'openssl/conf.h' file not found
 2 | #define __COPENSSL_SHIM_H__
 3 |
 4 | #include <openssl/conf.h>
   |          `- error: 'openssl/conf.h' file not found
 5 | #include <openssl/evp.h>
 6 | #include <openssl/err.h>
/Users/admin/builder/spi-builder-workspace/.build/checkouts/crypto/Sources/Crypto/Cipher/Cipher+Method.swift:1:8: error: could not build Objective-C module 'CTLS'
  1 | import CTLS
    |        `- error: could not build Objective-C module 'CTLS'
  2 |
  3 | extension Cipher {
[268/304] Compiling BCrypt Convenience.swift
[269/304] Compiling JSON JSON+Fuzzy.swift
[270/304] Emitting module JSON
[271/304] Compiling JSON JSON+Bytes.swift
[272/304] Compiling URI URI.swift
[273/304] Compiling URI URI+Ports.swift
[274/304] Compiling URI URI+Byte.swift
[275/304] Compiling URI URI+Modification.swift
[276/304] Compiling URI URI+String.swift
[277/304] Emitting module URI
Fetching https://github.com/vapor/vapor.git
Fetching https://github.com/vapor/redis.git
[1/3751] Fetching redis
[3752/78297] Fetching redis, vapor
Fetched https://github.com/vapor/vapor.git from cache (2.44s)
Fetched https://github.com/vapor/redis.git from cache (2.44s)
Computing version for https://github.com/vapor/vapor.git
Computed https://github.com/vapor/vapor.git at 2.4.5 (2.99s)
Fetching https://github.com/vapor/routing.git
Fetching https://github.com/vapor/crypto.git
Fetching https://github.com/vapor/core.git
Fetching https://github.com/vapor/engine.git
Fetching https://github.com/vapor/json.git
Fetching https://github.com/vapor/multipart.git
Fetching https://github.com/vapor/node.git
[1/2786] Fetching crypto
[29/6997] Fetching crypto, node
[295/27140] Fetching crypto, node, core
[632/30593] Fetching crypto, node, core, multipart
[1047/31591] Fetching crypto, node, core, multipart, json
[1257/57058] Fetching crypto, node, core, multipart, json, engine
[1758/77910] Fetching crypto, node, core, multipart, json, engine, routing
Fetched https://github.com/vapor/core.git from cache (1.46s)
Fetched https://github.com/vapor/crypto.git from cache (1.46s)
Fetching https://github.com/vapor/bcrypt.git
Fetching https://github.com/vapor/console.git
Fetched https://github.com/vapor/routing.git from cache (1.63s)
[32326/34129] Fetching node, multipart, json, engine
Fetched https://github.com/vapor/engine.git from cache (1.85s)
Fetched https://github.com/vapor/json.git from cache (1.85s)
Fetched https://github.com/vapor/node.git from cache (1.85s)
Fetched https://github.com/vapor/multipart.git from cache (1.85s)
[1/99] Fetching bcrypt
[100/6117] Fetching bcrypt, console
Fetched https://github.com/vapor/bcrypt.git from cache (1.08s)
Fetched https://github.com/vapor/console.git from cache (1.08s)
Computing version for https://github.com/vapor/bcrypt.git
Computed https://github.com/vapor/bcrypt.git at 1.1.1 (3.11s)
Fetching https://github.com/vapor/random.git
[1/148] Fetching random
Fetched https://github.com/vapor/random.git from cache (0.63s)
Computing version for https://github.com/vapor/random.git
Computed https://github.com/vapor/random.git at 1.2.0 (1.14s)
Computing version for https://github.com/vapor/redis.git
Computed https://github.com/vapor/redis.git at 2.2.0 (0.49s)
Fetching https://github.com/vapor/tls.git
Fetching https://github.com/vapor/sockets.git
[1/3312] Fetching sockets
[101/4456] Fetching sockets, tls
Fetched https://github.com/vapor/sockets.git from cache (0.94s)
Fetched https://github.com/vapor/tls.git from cache (0.94s)
Computing version for https://github.com/vapor/routing.git
Computed https://github.com/vapor/routing.git at 2.2.1 (1.47s)
Fetching https://github.com/vapor/debugging.git
[1/260] Fetching debugging
Fetched https://github.com/vapor/debugging.git from cache (0.70s)
Computing version for https://github.com/vapor/debugging.git
Computed https://github.com/vapor/debugging.git at 1.1.1 (1.21s)
Computing version for https://github.com/vapor/json.git
Computed https://github.com/vapor/json.git at 2.2.2 (0.48s)
Computing version for https://github.com/vapor/core.git
Computed https://github.com/vapor/core.git at 2.2.1 (0.49s)
Fetching https://github.com/vapor/bits.git
[1/358] Fetching bits
Fetched https://github.com/vapor/bits.git from cache (0.64s)
Computing version for https://github.com/vapor/bits.git
Computed https://github.com/vapor/bits.git at 1.1.1 (1.14s)
Computing version for https://github.com/vapor/multipart.git
Computed https://github.com/vapor/multipart.git at 2.2.1 (0.54s)
Computing version for https://github.com/vapor/crypto.git
Computed https://github.com/vapor/crypto.git at 2.1.3 (0.48s)
Fetching https://github.com/vapor/ctls.git
[1/71] Fetching ctls
Fetched https://github.com/vapor/ctls.git from cache (0.61s)
Computing version for https://github.com/vapor/console.git
Computed https://github.com/vapor/console.git at 2.3.1 (0.48s)
Computing version for https://github.com/vapor/tls.git
Computed https://github.com/vapor/tls.git at 2.1.3 (0.47s)
Computing version for https://github.com/vapor/ctls.git
Computed https://github.com/vapor/ctls.git at 1.1.3 (0.47s)
Computing version for https://github.com/vapor/node.git
Computed https://github.com/vapor/node.git at 2.1.5 (0.48s)
Computing version for https://github.com/vapor/engine.git
Computed https://github.com/vapor/engine.git at 2.2.5 (0.48s)
Computing version for https://github.com/vapor/sockets.git
Computed https://github.com/vapor/sockets.git at 2.2.3 (0.47s)
Creating working copy for https://github.com/vapor/core.git
Working copy of https://github.com/vapor/core.git resolved at 2.2.1
Creating working copy for https://github.com/vapor/crypto.git
Working copy of https://github.com/vapor/crypto.git resolved at 2.1.3
Creating working copy for https://github.com/vapor/console.git
Working copy of https://github.com/vapor/console.git resolved at 2.3.1
Creating working copy for https://github.com/vapor/json.git
Working copy of https://github.com/vapor/json.git resolved at 2.2.2
Creating working copy for https://github.com/vapor/bits.git
Working copy of https://github.com/vapor/bits.git resolved at 1.1.1
Creating working copy for https://github.com/vapor/debugging.git
Working copy of https://github.com/vapor/debugging.git resolved at 1.1.1
Creating working copy for https://github.com/vapor/redis.git
Working copy of https://github.com/vapor/redis.git resolved at 2.2.0
Creating working copy for https://github.com/vapor/sockets.git
Working copy of https://github.com/vapor/sockets.git resolved at 2.2.3
Creating working copy for https://github.com/vapor/random.git
Working copy of https://github.com/vapor/random.git resolved at 1.2.0
Creating working copy for https://github.com/vapor/multipart.git
Working copy of https://github.com/vapor/multipart.git resolved at 2.2.1
Creating working copy for https://github.com/vapor/bcrypt.git
Working copy of https://github.com/vapor/bcrypt.git resolved at 1.1.1
Creating working copy for https://github.com/vapor/vapor.git
Working copy of https://github.com/vapor/vapor.git resolved at 2.4.5
Creating working copy for https://github.com/vapor/node.git
Working copy of https://github.com/vapor/node.git resolved at 2.1.5
Creating working copy for https://github.com/vapor/ctls.git
Working copy of https://github.com/vapor/ctls.git resolved at 1.1.3
Creating working copy for https://github.com/vapor/routing.git
Working copy of https://github.com/vapor/routing.git resolved at 2.2.1
Creating working copy for https://github.com/vapor/engine.git
Working copy of https://github.com/vapor/engine.git resolved at 2.2.5
Creating working copy for https://github.com/vapor/tls.git
Working copy of https://github.com/vapor/tls.git resolved at 2.1.3
warning: 'ctls': ignoring declared target(s) 'CTLS' in the system package
warning: failed to retrieve search paths with pkg-config; maybe pkg-config is not installed
warning: you may be able to install ctls using your system-packager:
    brew install openssl
warning: you may be able to install ctls using your system-packager:
    brew install openssl
BUILD FAILURE 6.2 macosSpm