The Swift Package Index logo.Swift Package Index

Build Information

Failed to build SwCrypt with Swift 5.9 for Linux.

Build Command

docker run --rm -v "checkouts-4606859-1":/host -w "/host/spi-builder-workspace" registry.gitlab.com/finestructure/spi-images:basic-5.9-latest swift build 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.19.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/soyersoyer/SwCrypt.git
Reference: 5.1.4
Cloned https://github.com/soyersoyer/SwCrypt.git into spi-builder-workspace
SUCCESS checkout https://github.com/soyersoyer/SwCrypt.git at 5.1.4
========================================
Build
========================================
Selected platform:         linux
Swift version:             5.9
Building package at path:  spi-builder-workspace
Running build ...
docker run --rm -v "checkouts-4606859-1":/host -w "/host/spi-builder-workspace" registry.gitlab.com/finestructure/spi-images:basic-5.9-latest swift build 2>&1
Building for debugging...
error: emit-module command failed with exit code 1 (use -v to see invocation)
[1/2] Emitting module SwCrypt
/host/spi-builder-workspace/SwCrypt/SwCrypt.swift:5:24: error: cannot find type 'OSStatus' in scope
        public enum SecError: OSStatus, Error {
                              ^~~~~~~~
/host/spi-builder-workspace/SwCrypt/SwCrypt.swift:19:18: error: cannot find type 'OSStatus' in scope
                init(_ status: OSStatus, function: String = #function, file: String = #file, line: Int = #line) {
                               ^~~~~~~~
/host/spi-builder-workspace/SwCrypt/SwCrypt.swift:2081:45: warning: initialization of 'UnsafePointer<UInt8>' results in a dangling pointer
                public static let rfc3394IV = Data(bytes: UnsafePointer<UInt8>(rfc3394IVData), count:rfc3394IVData.count)
                                                          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/SwCrypt/SwCrypt.swift:2081:66: note: implicit argument conversion from '[UInt8]' to 'UnsafePointer<UInt8>' produces a pointer valid only for the duration of the call to 'init(_:)'
                public static let rfc3394IV = Data(bytes: UnsafePointer<UInt8>(rfc3394IVData), count:rfc3394IVData.count)
                                                                               ^~~~~~~~~~~~~
/host/spi-builder-workspace/SwCrypt/SwCrypt.swift:2081:66: note: use the 'withUnsafeBufferPointer' method on Array in order to explicitly convert argument to buffer pointer valid for a defined scope
                public static let rfc3394IV = Data(bytes: UnsafePointer<UInt8>(rfc3394IVData), count:rfc3394IVData.count)
                                                                               ^
[2/2] Compiling SwCrypt SwCrypt.swift
/host/spi-builder-workspace/SwCrypt/SwCrypt.swift:5:24: error: cannot find type 'OSStatus' in scope
        public enum SecError: OSStatus, Error {
                              ^~~~~~~~
/host/spi-builder-workspace/SwCrypt/SwCrypt.swift:19:18: error: cannot find type 'OSStatus' in scope
                init(_ status: OSStatus, function: String = #function, file: String = #file, line: Int = #line) {
                               ^~~~~~~~
/host/spi-builder-workspace/SwCrypt/SwCrypt.swift:2081:45: warning: initialization of 'UnsafePointer<UInt8>' results in a dangling pointer
                public static let rfc3394IV = Data(bytes: UnsafePointer<UInt8>(rfc3394IVData), count:rfc3394IVData.count)
                                                          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/SwCrypt/SwCrypt.swift:2081:66: note: implicit argument conversion from '[UInt8]' to 'UnsafePointer<UInt8>' produces a pointer valid only for the duration of the call to 'init(_:)'
                public static let rfc3394IV = Data(bytes: UnsafePointer<UInt8>(rfc3394IVData), count:rfc3394IVData.count)
                                                                               ^~~~~~~~~~~~~
/host/spi-builder-workspace/SwCrypt/SwCrypt.swift:2081:66: note: use the 'withUnsafeBufferPointer' method on Array in order to explicitly convert argument to buffer pointer valid for a defined scope
                public static let rfc3394IV = Data(bytes: UnsafePointer<UInt8>(rfc3394IVData), count:rfc3394IVData.count)
                                                                               ^
/host/spi-builder-workspace/SwCrypt/SwCrypt.swift:20:19: error: extraneous argument label 'rawValue:' in call
                        self = SecError(rawValue: status)!
                                       ^~~~~~~~~~~
                                        
/host/spi-builder-workspace/SwCrypt/SwCrypt.swift:20:37: error: cannot force unwrap value of non-optional type 'SwKeyStore.SecError'
                        self = SecError(rawValue: status)!
                               ~~~~~~~~~~~~~~~~~~~~~~~~~~^
                                                         
/host/spi-builder-workspace/SwCrypt/SwCrypt.swift:22:76: error: value of type 'SwKeyStore.SecError' has no member 'rawValue'
                                print("\(file):\(line): [\(function)] \(self._domain): \(self) (\(self.rawValue))")
                                                                                                  ~~~~ ^~~~~~~~
/host/spi-builder-workspace/SwCrypt/SwCrypt.swift:5:14: note: did you mean to specify a raw type on the enum declaration?
        public enum SecError: OSStatus, Error {
                    ^
/host/spi-builder-workspace/SwCrypt/SwCrypt.swift:28:76: error: value of type 'SwKeyStore.SecError' has no member 'rawValue'
                                print("\(file):\(line): [\(function)] \(self._domain): \(self) (\(self.rawValue))")
                                                                                                  ~~~~ ^~~~~~~~
/host/spi-builder-workspace/SwCrypt/SwCrypt.swift:5:14: note: did you mean to specify a raw type on the enum declaration?
        public enum SecError: OSStatus, Error {
                    ^
/host/spi-builder-workspace/SwCrypt/SwCrypt.swift:38:4: error: cannot find 'kSecClass' in scope
                        kSecClass: kSecClassKey,
                        ^~~~~~~~~
/host/spi-builder-workspace/SwCrypt/SwCrypt.swift:38:15: error: cannot find 'kSecClassKey' in scope
                        kSecClass: kSecClassKey,
                                   ^~~~~~~~~~~~
/host/spi-builder-workspace/SwCrypt/SwCrypt.swift:39:4: error: cannot find 'kSecAttrKeyType' in scope
                        kSecAttrKeyType: kSecAttrKeyTypeRSA,
                        ^~~~~~~~~~~~~~~
/host/spi-builder-workspace/SwCrypt/SwCrypt.swift:39:21: error: cannot find 'kSecAttrKeyTypeRSA' in scope
                        kSecAttrKeyType: kSecAttrKeyTypeRSA,
                                         ^~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/SwCrypt/SwCrypt.swift:40:4: error: cannot find 'kSecAttrIsPermanent' in scope
                        kSecAttrIsPermanent: true as AnyObject,
                        ^~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/SwCrypt/SwCrypt.swift:41:4: error: cannot find 'kSecAttrApplicationTag' in scope
                        kSecAttrApplicationTag: keyTag as AnyObject,
                        ^~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/SwCrypt/SwCrypt.swift:42:4: error: cannot find 'kSecValueData' in scope
                        kSecValueData: pemKeyAsData as AnyObject
                        ^~~~~~~~~~~~~
/host/spi-builder-workspace/SwCrypt/SwCrypt.swift:48:16: error: cannot find 'SecItemAdd' in scope
                var status = SecItemAdd(parameters as CFDictionary, nil)
                             ^~~~~~~~~~
/host/spi-builder-workspace/SwCrypt/SwCrypt.swift:48:41: error: cannot find type 'CFDictionary' in scope
                var status = SecItemAdd(parameters as CFDictionary, nil)
                                                      ^~~~~~~~~~~~
/host/spi-builder-workspace/SwCrypt/SwCrypt.swift:48:55: error: 'nil' requires a contextual type
                var status = SecItemAdd(parameters as CFDictionary, nil)
                                                                    ^
/host/spi-builder-workspace/SwCrypt/SwCrypt.swift:49:16: error: cannot find 'errSecDuplicateItem' in scope
                if status == errSecDuplicateItem {
                             ^~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/SwCrypt/SwCrypt.swift:51:13: error: cannot find 'SecItemAdd' in scope
                        status = SecItemAdd(parameters as CFDictionary, nil)
                                 ^~~~~~~~~~
/host/spi-builder-workspace/SwCrypt/SwCrypt.swift:51:38: error: cannot find type 'CFDictionary' in scope
                        status = SecItemAdd(parameters as CFDictionary, nil)
                                                          ^~~~~~~~~~~~
/host/spi-builder-workspace/SwCrypt/SwCrypt.swift:51:52: error: 'nil' requires a contextual type
                        status = SecItemAdd(parameters as CFDictionary, nil)
                                                                        ^
/host/spi-builder-workspace/SwCrypt/SwCrypt.swift:53:19: error: cannot find 'errSecSuccess' in scope
                guard status == errSecSuccess else { throw SecError(status) }
                                ^~~~~~~~~~~~~
/host/spi-builder-workspace/SwCrypt/SwCrypt.swift:58:4: error: cannot find 'kSecClass' in scope
                        kSecClass : kSecClassKey,
                        ^~~~~~~~~
/host/spi-builder-workspace/SwCrypt/SwCrypt.swift:58:16: error: cannot find 'kSecClassKey' in scope
                        kSecClass : kSecClassKey,
                                    ^~~~~~~~~~~~
/host/spi-builder-workspace/SwCrypt/SwCrypt.swift:59:4: error: cannot find 'kSecAttrKeyType' in scope
                        kSecAttrKeyType : kSecAttrKeyTypeRSA,
                        ^~~~~~~~~~~~~~~
/host/spi-builder-workspace/SwCrypt/SwCrypt.swift:59:22: error: cannot find 'kSecAttrKeyTypeRSA' in scope
                        kSecAttrKeyType : kSecAttrKeyTypeRSA,
                                          ^~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/SwCrypt/SwCrypt.swift:60:4: error: cannot find 'kSecAttrApplicationTag' in scope
                        kSecAttrApplicationTag : keyTag as AnyObject,
                        ^~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/SwCrypt/SwCrypt.swift:61:4: error: cannot find 'kSecReturnData' in scope
                        kSecReturnData : true as AnyObject
                        ^~~~~~~~~~~~~~
/host/spi-builder-workspace/SwCrypt/SwCrypt.swift:64:16: error: cannot find 'SecItemCopyMatching' in scope
                let status = SecItemCopyMatching(parameters as CFDictionary, &data)
                             ^~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/SwCrypt/SwCrypt.swift:64:50: error: cannot find type 'CFDictionary' in scope
                let status = SecItemCopyMatching(parameters as CFDictionary, &data)
                                                               ^~~~~~~~~~~~
/host/spi-builder-workspace/SwCrypt/SwCrypt.swift:65:19: error: cannot find 'errSecSuccess' in scope
                guard status == errSecSuccess else { throw SecError(status) }
                                ^~~~~~~~~~~~~
/host/spi-builder-workspace/SwCrypt/SwCrypt.swift:78:4: error: cannot find 'kSecClass' in scope
                        kSecClass : kSecClassKey,
                        ^~~~~~~~~
/host/spi-builder-workspace/SwCrypt/SwCrypt.swift:78:16: error: cannot find 'kSecClassKey' in scope
                        kSecClass : kSecClassKey,
                                    ^~~~~~~~~~~~
/host/spi-builder-workspace/SwCrypt/SwCrypt.swift:79:4: error: cannot find 'kSecAttrApplicationTag' in scope
                        kSecAttrApplicationTag: keyTag as AnyObject
                        ^~~~~~~~~~~~~~~~~~~~~~
/host/spi-builder-workspace/SwCrypt/SwCrypt.swift:81:16: error: cannot find 'SecItemDelete' in scope
                let status = SecItemDelete(parameters as CFDictionary)
                             ^~~~~~~~~~~~~
/host/spi-builder-workspace/SwCrypt/SwCrypt.swift:81:44: error: cannot find type 'CFDictionary' in scope
                let status = SecItemDelete(parameters as CFDictionary)
                                                         ^~~~~~~~~~~~
/host/spi-builder-workspace/SwCrypt/SwCrypt.swift:82:19: error: cannot find 'errSecSuccess' in scope
                guard status == errSecSuccess else { throw SecError(status) }
                                ^~~~~~~~~~~~~
/host/spi-builder-workspace/SwCrypt/SwCrypt.swift:742:19: error: cannot find 'noErr' in scope
                guard status == noErr else { throw CCError(status) }
                                ^~~~~
/host/spi-builder-workspace/SwCrypt/SwCrypt.swift:757:19: error: cannot find 'noErr' in scope
                guard status == noErr else { throw CCError(status) }
                                ^~~~~
/host/spi-builder-workspace/SwCrypt/SwCrypt.swift:768:19: error: cannot find 'noErr' in scope
                guard status == noErr else { throw CCError(status) }
                                ^~~~~
/host/spi-builder-workspace/SwCrypt/SwCrypt.swift:924:20: error: cannot find 'noErr' in scope
                        guard status == noErr else { throw CCError(status) }
                                        ^~~~~
/host/spi-builder-workspace/SwCrypt/SwCrypt.swift:961:20: error: cannot find 'noErr' in scope
                        guard status == noErr else { throw CCError(status) }
                                        ^~~~~
/host/spi-builder-workspace/SwCrypt/SwCrypt.swift:966:20: error: cannot find 'noErr' in scope
                        guard status == noErr else { throw CCError(status) }
                                        ^~~~~
/host/spi-builder-workspace/SwCrypt/SwCrypt.swift:969:20: error: cannot find 'noErr' in scope
                        guard status == noErr else { throw CCError(status) }
                                        ^~~~~
/host/spi-builder-workspace/SwCrypt/SwCrypt.swift:974:20: error: cannot find 'noErr' in scope
                        guard status == noErr else { throw CCError(status) }
                                        ^~~~~
/host/spi-builder-workspace/SwCrypt/SwCrypt.swift:979:20: error: cannot find 'noErr' in scope
                        guard status == noErr else { throw CCError(status) }
                                        ^~~~~
/host/spi-builder-workspace/SwCrypt/SwCrypt.swift:990:20: error: cannot find 'noErr' in scope
                        guard status == noErr else { throw CCError(status) }
                                        ^~~~~
/host/spi-builder-workspace/SwCrypt/SwCrypt.swift:998:20: error: cannot find 'noErr' in scope
                        guard status == noErr else { throw CCError(status) }
                                        ^~~~~
/host/spi-builder-workspace/SwCrypt/SwCrypt.swift:1008:20: error: cannot find 'noErr' in scope
                        guard status == noErr else { throw CCError(status) }
                                        ^~~~~
/host/spi-builder-workspace/SwCrypt/SwCrypt.swift:1062:20: error: cannot find 'noErr' in scope
                        guard status == noErr else { throw CCError(status) }
                                        ^~~~~
/host/spi-builder-workspace/SwCrypt/SwCrypt.swift:1108:20: error: cannot find 'noErr' in scope
                        guard status == noErr else { throw CCError(status) }
                                        ^~~~~
/host/spi-builder-workspace/SwCrypt/SwCrypt.swift:1136:20: error: cannot find 'noErr' in scope
                        guard status == noErr else { throw CCError(status) }
                                        ^~~~~
/host/spi-builder-workspace/SwCrypt/SwCrypt.swift:1150:20: error: cannot find 'noErr' in scope
                        guard status == noErr else { throw CCError(status) }
                                        ^~~~~
/host/spi-builder-workspace/SwCrypt/SwCrypt.swift:1161:20: error: cannot find 'noErr' in scope
                        guard status == noErr else { throw CCError(status) }
                                        ^~~~~
/host/spi-builder-workspace/SwCrypt/SwCrypt.swift:1197:21: error: cannot find 'noErr' in scope
                                guard status == noErr else { throw CCError(status) }
                                                ^~~~~
/host/spi-builder-workspace/SwCrypt/SwCrypt.swift:1236:21: error: cannot find 'noErr' in scope
                                guard status == noErr else { throw CCError(status) }
                                                ^~~~~
/host/spi-builder-workspace/SwCrypt/SwCrypt.swift:1260:20: error: cannot find 'noErr' in scope
                        guard status == noErr else { throw CCError(status) }
                                        ^~~~~
/host/spi-builder-workspace/SwCrypt/SwCrypt.swift:1657:20: error: cannot find 'noErr' in scope
                        guard status == noErr else { throw CCError(status) }
                                        ^~~~~
/host/spi-builder-workspace/SwCrypt/SwCrypt.swift:1693:20: error: cannot find 'noErr' in scope
                        guard status == noErr else { throw CCError(status) }
                                        ^~~~~
/host/spi-builder-workspace/SwCrypt/SwCrypt.swift:1713:20: error: cannot find 'noErr' in scope
                        guard status == noErr else { throw CCError(status) }
                                        ^~~~~
/host/spi-builder-workspace/SwCrypt/SwCrypt.swift:1732:20: error: cannot find 'noErr' in scope
                        guard status == noErr else { throw CCError(status) }
                                        ^~~~~
/host/spi-builder-workspace/SwCrypt/SwCrypt.swift:1772:20: error: cannot find 'noErr' in scope
                        guard status == noErr else { throw CCError(status) }
                                        ^~~~~
/host/spi-builder-workspace/SwCrypt/SwCrypt.swift:1791:20: error: cannot find 'noErr' in scope
                        guard status == noErr else { throw CCError(status) }
                                        ^~~~~
/host/spi-builder-workspace/SwCrypt/SwCrypt.swift:1806:20: error: cannot find 'noErr' in scope
                        guard status == noErr else { throw CCError(status) }
                                        ^~~~~
/host/spi-builder-workspace/SwCrypt/SwCrypt.swift:1823:20: error: cannot find 'noErr' in scope
                        guard status == noErr else { throw CCError(status) }
                                        ^~~~~
/host/spi-builder-workspace/SwCrypt/SwCrypt.swift:1984:20: error: cannot find 'noErr' in scope
                        guard status == noErr else {
                                        ^~~~~
/host/spi-builder-workspace/SwCrypt/SwCrypt.swift:2054:20: error: cannot find 'noErr' in scope
                        guard status == noErr else { throw CCError(status) }
                                        ^~~~~
/host/spi-builder-workspace/SwCrypt/SwCrypt.swift:2098:20: error: cannot find 'noErr' in scope
                        guard status == noErr else { throw CCError(status) }
                                        ^~~~~
/host/spi-builder-workspace/SwCrypt/SwCrypt.swift:2119:20: error: cannot find 'noErr' in scope
                        guard status == noErr else { throw CCError(status) }
                                        ^~~~~
error: fatalError
BUILD FAILURE 5.9 linux

Build Machine: Linux 1