modified
parent
185d9ff2b7
commit
a971fb3187
|
|
@ -23,7 +23,7 @@
|
|||
}
|
||||
//label libraryBuild is available in CN JAWS and ROW JAWS, therefore this one was used; no additional intents
|
||||
// agent {label 'jaws-slaves'}
|
||||
agent {label 'jaws-dynamic-slaves'}
|
||||
agent {label 'jaws-slaves'}
|
||||
parameters {
|
||||
// string(name: 'FROMDATE', defaultValue: '', description: 'Enter from date in format YYYY-MM-DD e.g. 2021-11-01')
|
||||
|
||||
|
|
@ -56,15 +56,17 @@
|
|||
}
|
||||
|
||||
stages {
|
||||
stage('Install required python packages') {
|
||||
stage('Install Required Python Packages') {
|
||||
steps {
|
||||
sh '''
|
||||
pip install --user -r requirements.txt
|
||||
python3 --version
|
||||
pip3 --version
|
||||
pip3 install --user -r requirements.txt
|
||||
'''
|
||||
}
|
||||
}
|
||||
|
||||
stage('Execute Reporting Script') {
|
||||
stage('Execute Script') {
|
||||
steps {
|
||||
|
||||
sh 'python3 generate.py ${params.INPUTFOLDER}'
|
||||
|
|
|
|||
Loading…
Reference in New Issue