Skip to content

Commit

Permalink
Force PIP to use a mounted volume for unpacking (#1378)
Browse files Browse the repository at this point in the history
For some reason it considers the / overlay full, even if it's not.
  • Loading branch information
ktf authored Jul 21, 2024
1 parent b71f16f commit 5f62f64
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions jenkins/daily-tags
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,9 @@ try {
export PATH="$PYTHONUSERBASE/bin:$PATH"
rm -rf "$PYTHONUSERBASE"
yum install -y python3-pip python3-devel python3-setuptools
python3 -m pip install --user --upgrade pip
python3 -m pip install --user --upgrade "${ALIBOT_SLUG:+git+https://github.com/${ALIBOT_SLUG}}"
mkdir -p /local/tmp
TMPDIR=/local/tmp python3 -m pip install --user --upgrade pip
TMPDIR=/local/tmp python3 -m pip install --user --upgrade "${ALIBOT_SLUG:+git+https://github.com/${ALIBOT_SLUG}}"
type check-open-pr
if [ "${PACKAGES%% *}" = AliPhysics ]; then
WAIT_TESTS="build/AliPhysics/release build/AliPhysics/root6"
Expand Down Expand Up @@ -115,8 +116,9 @@ try {
*)
;;
esac
python3 -m pip install --upgrade --user pip
python3 -m pip install --upgrade --user "git+https://github.com/$ALIBOT_SLUG"
mkdir -p /local/tmp
TMPDIR=/local/tmp python3 -m pip install --upgrade --user pip
TMPDIR=/local/tmp python3 -m pip install --upgrade --user "git+https://github.com/$ALIBOT_SLUG"
[ -f /opt/rh/rh-git218/enable ] && source /opt/rh/rh-git218/enable
daily-tags.sh || err=$?
rm -rf alidist daily-tags.?????????? mirror
Expand Down

0 comments on commit 5f62f64

Please sign in to comment.