Skip to content

Commit 63338b6

Browse files
authored
Add pip upgrade step, add pip retry/timeout to build + package (#559)
1 parent 816c132 commit 63338b6

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

jenkins/build-and-package.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,9 @@ cd "${WORKSPACE}/${local_indicator}" || exit
1818
# Set up venv
1919
python -m venv env
2020
source env/bin/activate
21-
pip install ../_delphi_utils_python/.
22-
pip install .
21+
pip install --upgrade pip --retries 10 --timeout 20
22+
pip install ../_delphi_utils_python/. --retries 10 --timeout 20
23+
pip install . --retries 10 --timeout 20
2324

2425
#
2526
# Package

0 commit comments

Comments
 (0)