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 7
7
export LC_ALL=C.UTF-8
8
8
9
9
export HOST=x86_64-apple-darwin18
10
- export PIP_PACKAGES=" zmq"
10
+ export PIP_PACKAGES=" zmq lief "
11
11
export GOAL=" install"
12
12
export BITCOIN_CONFIG=" --with-gui --enable-reduce-exports --enable-external-signer"
13
13
export CI_OS_NAME=" macos"
14
14
export NO_DEPENDS=1
15
15
export OSX_SDK=" "
16
16
export CCACHE_SIZE=300M
17
-
18
17
export RUN_SECURITY_TESTS=" true"
Original file line number Diff line number Diff line change @@ -8,9 +8,10 @@ export LC_ALL=C.UTF-8
8
8
9
9
export CONTAINER_NAME=ci_native_multiprocess
10
10
export DOCKER_NAME_TAG=ubuntu:20.04
11
- export PACKAGES=" cmake python3 llvm clang"
11
+ export PACKAGES=" cmake python3 python3-pip llvm clang"
12
12
export DEP_OPTS=" DEBUG=1 MULTIPROCESS=1"
13
13
export GOAL=" install"
14
14
export BITCOIN_CONFIG=" --enable-external-signer --enable-debug CC=clang CXX=clang++" # Use clang to avoid OOM
15
15
export TEST_RUNNER_ENV=" BITCOIND=bitcoin-node"
16
16
export 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
67
67
elif [ " $CI_USE_APT_INSTALL " != " no" ]; then
68
68
${CI_RETRY_EXE} DOCKER_EXEC apt-get update
69
69
${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
70
73
fi
71
74
72
75
if [ " $CI_OS_NAME " == " macos" ]; then
You can’t perform that action at this time.
0 commit comments