pipeline build

This commit is contained in:
wikbom 2023-05-10 16:56:56 +02:00
parent eae9e30813
commit 200e254c5d
2 changed files with 2 additions and 2 deletions

2
Jenkinsfile vendored
View File

@ -17,7 +17,7 @@ node {
name: 'KAGGLE_KEY'
),
string(
defaultValue: '500',
defaultValue: '900',
description: 'Number of head lines to be taken from test file',
name: 'CUTOFF',
trim: false)

View File

@ -15,7 +15,7 @@ node {
copyArtifacts projectName: 's470618-create-dataset', filter: '*.csv', fingerprintArtifacts: true, selector: lastSuccessful(), target: '.'
}
stage('Build') {
withEnv(["LEARNING_PARAMETERS"=${params.LEARNING_PARAMETERS}]) {
withEnv(["LEARNING_PARAMETERS=${params.LEARNING_PARAMETERS}"]) {
sh "./learning.py ${LEARNING_PARAMETERS}"
}
}