Skip to content

Commit

Permalink
Update pip
Browse files Browse the repository at this point in the history
Signed-off-by: Seth Zegelstein <szegel@amazon.com>
  • Loading branch information
a-szegel committed Nov 6, 2024
1 parent 8054ece commit 65e88d4
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions contrib/aws/Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -37,24 +37,29 @@ def install_porta_fiducia() {
/*
* Install PortaFiducia in a (new) virtual environment.
*/
sh '''
python3 -m pip install --upgrade pip
python3 -m pip install --upgrade setuptools wheel
python3 -m pip install --upgrade ensurepip
'''

sh '''
time python3 -m venv venv
python3 -m venv venv
'''

sh '''
. venv/bin/activate
time pip install -vvv --upgrade pip
pip install -vvv --upgrade pip
'''

sh '''
. venv/bin/activate
time pip install -vvv --upgrade awscli
pip install -vvv --upgrade awscli
'''

sh '''
. venv/bin/activate
time pip install -vvv -e PortaFiducia
pip install -vvv -e PortaFiducia
'''
}

Expand Down

0 comments on commit 65e88d4

Please sign in to comment.