The Swift Package Index logo.Swift Package Index

Build Information

Failed to build S3SignerAWS, reference master (cdca19), with Swift 6.3 for Linux on 20 Apr 2026 20:14:46 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:basic-6.3-latest swift build --triple x86_64-unknown-linux-gnu 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/justinm1/s3signeraws.git
Reference: master
Initialized empty Git repository in /host/spi-builder-workspace/.git/
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: 	git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: 	git branch -m <name>
From https://github.com/justinm1/s3signeraws
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
HEAD is now at cdca194 Update to OpenCrypto  (#17)
Cloned https://github.com/justinm1/s3signeraws.git
Revision (git rev-parse @):
cdca1940c608d096d3f99ae445f268daaa572d2a
SUCCESS checkout https://github.com/justinm1/s3signeraws.git at master
========================================
Build
========================================
Selected platform:         linux
Swift version:             6.3
Building package at path:  $PWD
https://github.com/justinm1/s3signeraws.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:basic-6.3-latest swift build --triple x86_64-unknown-linux-gnu 2>&1
basic-6.3-latest: Pulling from swiftpackageindex/spi-images
Digest: sha256:5a7d791d2ead8a924b1292cb31bf3288eabcfe8880e0b005b00b45b71a5bc36a
Status: Image is up to date for registry.gitlab.com/swiftpackageindex/spi-images:basic-6.3-latest
Fetching https://github.com/vapor/open-crypto.git
[1/2786] Fetching open-crypto
Fetched https://github.com/vapor/open-crypto.git from cache (0.34s)
Computing version for https://github.com/vapor/open-crypto.git
Computed https://github.com/vapor/open-crypto.git at 4.0.0-beta.2 (0.85s)
Creating working copy for https://github.com/vapor/open-crypto.git
Working copy of https://github.com/vapor/open-crypto.git resolved at 4.0.0-beta.2
Building for debugging...
[0/4] Write sources
[2/4] Compiling COpenCrypto c_open_crypto.c
[3/4] Write swift-version-24593BA9C3E375BF.txt
[5/21] Emitting module OpenCrypto
[6/23] Compiling OpenCrypto HexEncoding.swift
[7/23] Compiling OpenCrypto Insecure.swift
[8/23] Compiling OpenCrypto HashFunction.swift
[9/23] Compiling OpenCrypto HashedAuthenticationCode.swift
[10/23] Compiling OpenCrypto AES.swift
[11/23] Compiling OpenCrypto ChaChaPoly.swift
[12/23] Compiling OpenCrypto Digest.swift
[13/23] Compiling OpenCrypto SymmetricKey.swift
[14/23] Compiling OpenCrypto Utilities.swift
[15/23] Compiling OpenCrypto OpenSSLCipherFunction.swift
/host/spi-builder-workspace/.build/checkouts/open-crypto/Sources/OpenCrypto/OpenSSLCipherFunction.swift:101:43: error: cannot find 'EVP_CIPHER_key_length' in scope
 99 |         where IV: DataProtocol
100 |     {
101 |         guard key.bitCount == numericCast(EVP_CIPHER_key_length(convert(algorithm))) * 8 else {
    |                                           `- error: cannot find 'EVP_CIPHER_key_length' in scope
102 |             throw CryptoKitError.incorrectKeySize
103 |         }
/host/spi-builder-workspace/.build/checkouts/open-crypto/Sources/OpenCrypto/OpenSSLCipherFunction.swift:104:39: error: cannot find 'EVP_CIPHER_iv_length' in scope
102 |             throw CryptoKitError.incorrectKeySize
103 |         }
104 |         guard iv.count == numericCast(EVP_CIPHER_iv_length(convert(algorithm))) else {
    |                                       `- error: cannot find 'EVP_CIPHER_iv_length' in scope
105 |             throw CryptoKitError.incorrectParameterSize
106 |         }
/host/spi-builder-workspace/.build/checkouts/open-crypto/Sources/OpenCrypto/OpenSSLCipherFunction.swift:129:75: error: cannot find 'EVP_CIPHER_block_size' in scope
127 |     {
128 |         let data = data.copyBytes()
129 |         var chunk = [UInt8](repeating: 0, count: data.count + numericCast(EVP_CIPHER_block_size(convert(algorithm))) - 1)
    |                                                                           `- error: cannot find 'EVP_CIPHER_block_size' in scope
130 |         var chunkLength: Int32 = 0
131 |
/host/spi-builder-workspace/.build/checkouts/open-crypto/Sources/OpenCrypto/OpenSSLCipherFunction.swift:149:62: error: cannot find 'EVP_CIPHER_block_size' in scope
147 |         into buffer: inout [UInt8]
148 |     ) throws {
149 |         var chunk = [UInt8](repeating: 0, count: numericCast(EVP_CIPHER_block_size(convert(algorithm))))
    |                                                              `- error: cannot find 'EVP_CIPHER_block_size' in scope
150 |         var chunkLength: Int32 = 0
151 |
/host/spi-builder-workspace/.build/checkouts/open-crypto/Sources/OpenCrypto/OpenSSLHashFunction.swift:15:28: error: cannot find 'EVP_MD_size' in scope
13 | extension OpenSSLDigest {
14 |     public static var byteCount: Int {
15 |         return numericCast(EVP_MD_size(convert(self.algorithm)))
   |                            `- error: cannot find 'EVP_MD_size' in scope
16 |     }
17 |
[16/23] Compiling OpenCrypto OpenSSLHashFunction.swift
/host/spi-builder-workspace/.build/checkouts/open-crypto/Sources/OpenCrypto/OpenSSLCipherFunction.swift:101:43: error: cannot find 'EVP_CIPHER_key_length' in scope
 99 |         where IV: DataProtocol
100 |     {
101 |         guard key.bitCount == numericCast(EVP_CIPHER_key_length(convert(algorithm))) * 8 else {
    |                                           `- error: cannot find 'EVP_CIPHER_key_length' in scope
102 |             throw CryptoKitError.incorrectKeySize
103 |         }
/host/spi-builder-workspace/.build/checkouts/open-crypto/Sources/OpenCrypto/OpenSSLCipherFunction.swift:104:39: error: cannot find 'EVP_CIPHER_iv_length' in scope
102 |             throw CryptoKitError.incorrectKeySize
103 |         }
104 |         guard iv.count == numericCast(EVP_CIPHER_iv_length(convert(algorithm))) else {
    |                                       `- error: cannot find 'EVP_CIPHER_iv_length' in scope
105 |             throw CryptoKitError.incorrectParameterSize
106 |         }
/host/spi-builder-workspace/.build/checkouts/open-crypto/Sources/OpenCrypto/OpenSSLCipherFunction.swift:129:75: error: cannot find 'EVP_CIPHER_block_size' in scope
127 |     {
128 |         let data = data.copyBytes()
129 |         var chunk = [UInt8](repeating: 0, count: data.count + numericCast(EVP_CIPHER_block_size(convert(algorithm))) - 1)
    |                                                                           `- error: cannot find 'EVP_CIPHER_block_size' in scope
130 |         var chunkLength: Int32 = 0
131 |
/host/spi-builder-workspace/.build/checkouts/open-crypto/Sources/OpenCrypto/OpenSSLCipherFunction.swift:149:62: error: cannot find 'EVP_CIPHER_block_size' in scope
147 |         into buffer: inout [UInt8]
148 |     ) throws {
149 |         var chunk = [UInt8](repeating: 0, count: numericCast(EVP_CIPHER_block_size(convert(algorithm))))
    |                                                              `- error: cannot find 'EVP_CIPHER_block_size' in scope
150 |         var chunkLength: Int32 = 0
151 |
/host/spi-builder-workspace/.build/checkouts/open-crypto/Sources/OpenCrypto/OpenSSLHashFunction.swift:15:28: error: cannot find 'EVP_MD_size' in scope
13 | extension OpenSSLDigest {
14 |     public static var byteCount: Int {
15 |         return numericCast(EVP_MD_size(convert(self.algorithm)))
   |                            `- error: cannot find 'EVP_MD_size' in scope
16 |     }
17 |
[17/23] Compiling OpenCrypto MD5.swift
[18/23] Compiling OpenCrypto MessageAuthenticationCode.swift
[19/23] Compiling OpenCrypto SHA1.swift
[20/23] Compiling OpenCrypto SHA2.swift
[21/23] Compiling OpenCrypto Errors.swift
[22/23] Compiling OpenCrypto Exports.swift
[23/23] Compiling OpenCrypto HMAC.swift
BUILD FAILURE 6.3 linux