Skip to content

Commit 6889a80

Browse files
MarcoFalkehebasto
authored andcommitted
ci: Add missing CI_RETRY_EXE before git clone
1 parent b705bad commit 6889a80

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ci/lint/04_install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ ${CI_RETRY_EXE} apt-get install -y curl xz-utils git gpg
1818
PYTHON_PATH="/python_build"
1919
if [ ! -d "${PYTHON_PATH}/bin" ]; then
2020
(
21-
git clone https://github.com/pyenv/pyenv.git
21+
${CI_RETRY_EXE} git clone https://github.com/pyenv/pyenv.git
2222
cd pyenv/plugins/python-build || exit 1
2323
./install.sh
2424
)

ci/test/06_script_b.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ index 65e31724bc..f61b471953 100644
5656
if [ "$RUN_FUZZ_TESTS" = "true" ]; then
5757
export DIR_FUZZ_IN=${DIR_QA_ASSETS}/fuzz_seed_corpus/
5858
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}"
6060
fi
6161
(
6262
cd "${DIR_QA_ASSETS}"

0 commit comments

Comments
 (0)