You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by as...@apache.org on 2018/08/03 18:33:07 UTC

qpid-proton git commit: NO-JIRA: Fix build script for Apache Jenkins CI to upgrade pip before using it. - This is an attempt to avoid some build failures that seem to be due to bad versions of pip

Repository: qpid-proton
Updated Branches:
  refs/heads/master 21340cd20 -> c64dc0cdc


NO-JIRA: Fix build script for Apache Jenkins CI to upgrade pip before using it.
- This is an attempt to avoid some build failures that seem to be due to bad versions of pip


Project: http://git-wip-us.apache.org/repos/asf/qpid-proton/repo
Commit: http://git-wip-us.apache.org/repos/asf/qpid-proton/commit/c64dc0cd
Tree: http://git-wip-us.apache.org/repos/asf/qpid-proton/tree/c64dc0cd
Diff: http://git-wip-us.apache.org/repos/asf/qpid-proton/diff/c64dc0cd

Branch: refs/heads/master
Commit: c64dc0cdc702b092b34a991181d7c41df13515e9
Parents: 21340cd
Author: Andrew Stitcher <as...@apache.org>
Authored: Fri Aug 3 14:29:51 2018 -0400
Committer: Andrew Stitcher <as...@apache.org>
Committed: Fri Aug 3 14:31:56 2018 -0400

----------------------------------------------------------------------
 scripts/jenkins-proton-c-build.sh | 2 ++
 1 file changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/qpid-proton/blob/c64dc0cd/scripts/jenkins-proton-c-build.sh
----------------------------------------------------------------------
diff --git a/scripts/jenkins-proton-c-build.sh b/scripts/jenkins-proton-c-build.sh
index 1af4a45..422f75e 100755
--- a/scripts/jenkins-proton-c-build.sh
+++ b/scripts/jenkins-proton-c-build.sh
@@ -45,8 +45,10 @@ if [ -n $PIP ] && [ -x "$PIP" ]; then
     PATH="$ldir/bin:$PATH"
     echo "PATH=$PATH"
     if [ $VIRTUAL_ENV ]; then
+      pip install -U pip
       pip install -U tox
     else
+      pip install --user -U pip
       pip install --user -U tox
     fi
     RUN_TOX=true


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org
For additional commands, e-mail: commits-help@qpid.apache.org