Last active
April 9, 2022 13:44
-
-
Save artem-hatchenko/5b0be29cec8beca116a7664de52f5633 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
properties([ | |
parameters([ | |
choice( | |
name: 'PYTHON', | |
description: 'Choose Python version', | |
choices: ["python2.7", "python3.6", "python3.7", "python3.8", "python3.9"].join("\n") | |
), | |
base64File( | |
name: 'REQUIREMENTS_FILE', | |
description: 'Upload requirements file (Optional)' | |
) | |
]) | |
]) | |
pipeline { | |
agent any | |
options { | |
buildDiscarder(logRotator(numToKeepStr: '5')) | |
timeout(time: 60, unit:'MINUTES') | |
timestamps() | |
} | |
stages { | |
stage("Python"){ | |
steps{ | |
withPythonEnv("/usr/bin/${params.PYTHON}") { | |
script { | |
if ( env.REQUIREMENTS_FILE.isEmpty() ) { | |
sh "python --version" | |
sh "pip --version" | |
sh "echo Requirements file not set. Run Python without requirements file." | |
} | |
else { | |
sh "python --version" | |
sh "pip --version" | |
sh "echo Requirements file found. Run PIP install using requirements file." | |
withFileParameter('REQUIREMENTS_FILE') { | |
sh 'cat $REQUIREMENTS_FILE > requirements.txt' | |
} | |
sh "pip install -r requirements.txt" | |
} | |
} | |
} | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment