Skip to content

Commit

Permalink
fix(e2e): resolve dynlib OpenSSL issues
Browse files Browse the repository at this point in the history
by explicitely specifying `-d:useOpenssl3`

cf #9428 (comment)
  • Loading branch information
caybro committed Jun 8, 2023
1 parent ca26330 commit c5d5d1e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ci/Jenkinsfile.tests-e2e
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ pipeline {
string(
name: 'NIMFLAGS',
description: 'Extra Nim flags. Examples: --verbosity:2 --passL:"-v" --passC:"-v"',
defaultValue: '--colors:off'
defaultValue: '-d:useOpenssl3 --colors:off'
)
}

Expand Down Expand Up @@ -67,7 +67,7 @@ pipeline {
QTDIR = '/opt/qt/5.15.2/gcc_64'
PATH = "${env.QTDIR}/bin:${env.PATH}"
/* Include library in order to compile the project */
LD_LIBRARY_PATH = "$QTDIR/lib:$WORKSPACE/vendor/status-go/build/bin:$WORKSPACE/vendor/status-keycard-go/build/libkeycard/"
LD_LIBRARY_PATH = "$QTDIR/lib:$WORKSPACE/vendor/status-go/build/bin:$WORKSPACE/vendor/status-keycard-go/build/libkeycard/:${env.LD_LIBRARY_PATH}"
/* Container ports */
RPC_PORT = "${8545 + env.EXECUTOR_NUMBER.toInteger()}"
P2P_PORT = "${6010 + env.EXECUTOR_NUMBER.toInteger()}"
Expand Down

0 comments on commit c5d5d1e

Please sign in to comment.