File tree Expand file tree Collapse file tree 4 files changed +9
-10
lines changed Expand file tree Collapse file tree 4 files changed +9
-10
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ ${CI_RETRY_EXE} apt-get install -y curl xz-utils git gpg
18
18
PYTHON_PATH=" /python_build"
19
19
if [ ! -d " ${PYTHON_PATH} /bin" ]; then
20
20
(
21
- git clone https://github.com/pyenv/pyenv.git
21
+ ${CI_RETRY_EXE} git clone https://github.com/pyenv/pyenv.git
22
22
cd pyenv/plugins/python-build || exit 1
23
23
./install.sh
24
24
)
Original file line number Diff line number Diff line change @@ -31,14 +31,8 @@ elif [ "$CI_OS_NAME" != "macos" ]; then
31
31
fi
32
32
33
33
if [ -n " $PIP_PACKAGES " ]; then
34
- if [ " $CI_OS_NAME " == " macos" ]; then
35
- sudo -H pip3 install --upgrade pip
36
- # shellcheck disable=SC2086
37
- IN_GETOPT_BIN=" $( brew --prefix gnu-getopt) /bin/getopt" ${CI_RETRY_EXE} pip3 install --user $PIP_PACKAGES
38
- else
39
- # shellcheck disable=SC2086
40
- ${CI_RETRY_EXE} pip3 install --user $PIP_PACKAGES
41
- fi
34
+ # shellcheck disable=SC2086
35
+ ${CI_RETRY_EXE} pip3 install --user $PIP_PACKAGES
42
36
fi
43
37
44
38
if [[ ${USE_MEMORY_SANITIZER} == " true" ]]; then
Original file line number Diff line number Diff line change 61
61
mkdir -p " ${PREVIOUS_RELEASES_DIR} "
62
62
fi
63
63
64
+ if [ " $CI_OS_NAME " == " macos" ]; then
65
+ IN_GETOPT_BIN=" $( brew --prefix gnu-getopt) /bin/getopt"
66
+ export IN_GETOPT_BIN
67
+ fi
68
+
64
69
CI_EXEC () {
65
70
$CI_EXEC_CMD_PREFIX bash -c " export PATH=${BINS_SCRATCH_DIR} :${BASE_ROOT_DIR} /ci/retry:\$ PATH && cd \" ${BASE_ROOT_DIR} \" && $* "
66
71
}
Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ index 65e31724bc..f61b471953 100644
56
56
if [ " $RUN_FUZZ_TESTS " = " true" ]; then
57
57
export DIR_FUZZ_IN=${DIR_QA_ASSETS} /fuzz_seed_corpus/
58
58
if [ ! -d " $DIR_FUZZ_IN " ]; then
59
- git clone --depth=1 https://github.com/bitcoin-core/qa-assets " ${DIR_QA_ASSETS} "
59
+ ${CI_RETRY_EXE} git clone --depth=1 https://github.com/bitcoin-core/qa-assets " ${DIR_QA_ASSETS} "
60
60
fi
61
61
(
62
62
cd " ${DIR_QA_ASSETS} "
You can’t perform that action at this time.
0 commit comments