File tree Expand file tree Collapse file tree 3 files changed +6
-3
lines changed
Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 77export LC_ALL=C.UTF-8
88
99export HOST=x86_64-apple-darwin18
10- export PIP_PACKAGES=" zmq"
10+ export PIP_PACKAGES=" zmq lief "
1111export GOAL=" install"
1212export BITCOIN_CONFIG=" --with-gui --enable-reduce-exports --enable-external-signer"
1313export CI_OS_NAME=" macos"
1414export NO_DEPENDS=1
1515export OSX_SDK=" "
1616export CCACHE_SIZE=300M
17-
1817export RUN_SECURITY_TESTS=" true"
Original file line number Diff line number Diff line change @@ -8,9 +8,10 @@ export LC_ALL=C.UTF-8
88
99export CONTAINER_NAME=ci_native_multiprocess
1010export DOCKER_NAME_TAG=ubuntu:20.04
11- export PACKAGES=" cmake python3 llvm clang"
11+ export PACKAGES=" cmake python3 python3-pip llvm clang"
1212export DEP_OPTS=" DEBUG=1 MULTIPROCESS=1"
1313export GOAL=" install"
1414export BITCOIN_CONFIG=" --enable-external-signer --enable-debug CC=clang CXX=clang++" # Use clang to avoid OOM
1515export TEST_RUNNER_ENV=" BITCOIND=bitcoin-node"
1616export RUN_SECURITY_TESTS=" true"
17+ export PIP_PACKAGES=" lief"
Original file line number Diff line number Diff line change @@ -67,6 +67,9 @@ if [[ $DOCKER_NAME_TAG == centos* ]]; then
6767elif [ " $CI_USE_APT_INSTALL " != " no" ]; then
6868 ${CI_RETRY_EXE} DOCKER_EXEC apt-get update
6969 ${CI_RETRY_EXE} DOCKER_EXEC apt-get install --no-install-recommends --no-upgrade -y $PACKAGES $DOCKER_PACKAGES
70+ if [ -n " $PIP_PACKAGES " ]; then
71+ ${CI_RETRY_EXE} pip3 install --user $PIP_PACKAGES
72+ fi
7073fi
7174
7275if [ " $CI_OS_NAME " == " macos" ]; then
You can’t perform that action at this time.
0 commit comments