Skip to content

Commit

Permalink
ops: add virtualenv #16
Browse files Browse the repository at this point in the history
  • Loading branch information
ManuelJNunez committed Mar 7, 2021
1 parent 7af5ff7 commit 63a1618
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,11 @@ pipeline {
stages {
stage('Build') {
steps {
sh 'pip install poetry --user'
sh """
virtualenv venv --distribute
. venv/bin/activate
pip install poetry
"""
sh 'python --version'
}
}
Expand Down

0 comments on commit 63a1618

Please sign in to comment.