Build Information
Failed to build S3SignerAWS, reference master (cdca19), with Swift 6.2 for Linux on 17 Jun 2025 17:13:37 UTC.
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.2-latest swift build --triple x86_64-unknown-linux-gnu 2>&1Build Log
========================================
RunAll
========================================
Builder version: 4.64.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.2
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" registry.gitlab.com/finestructure/spi-images:basic-6.2-latest swift build --triple x86_64-unknown-linux-gnu 2>&1
basic-6.2-latest: Pulling from finestructure/spi-images
Digest: sha256:f81a7bd7aa87a0f81848d48c5bcc03f5f78deebd37fa5f9be9913077205d3687
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.2-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.61s)
Computing version for https://github.com/vapor/open-crypto.git
Computed https://github.com/vapor/open-crypto.git at 4.0.0-beta.2 (1.86s)
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] Write swift-version-24593BA9C3E375BF.txt
[3/4] Compiling COpenCrypto c_open_crypto.c
[5/21] Emitting module OpenCrypto
[6/23] Compiling OpenCrypto AES.swift
[7/23] Compiling OpenCrypto ChaChaPoly.swift
[8/23] Compiling OpenCrypto Digest.swift
[9/23] Compiling OpenCrypto SymmetricKey.swift
[10/23] Compiling OpenCrypto Utilities.swift
[11/23] Compiling OpenCrypto SHA1.swift
[12/23] Compiling OpenCrypto SHA2.swift
[13/23] Compiling OpenCrypto HexEncoding.swift
[14/23] Compiling OpenCrypto Insecure.swift
[15/23] Compiling OpenCrypto MD5.swift
[16/23] Compiling OpenCrypto MessageAuthenticationCode.swift
[17/23] Compiling OpenCrypto HashFunction.swift
[18/23] Compiling OpenCrypto HashedAuthenticationCode.swift
[19/23] Compiling OpenCrypto Errors.swift
[20/23] Compiling OpenCrypto Exports.swift
[21/23] Compiling OpenCrypto HMAC.swift
[22/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 |
[23/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 |
BUILD FAILURE 6.2 linux