ium_444417/Jenkinsfile
s444417 29194fb16b
Some checks failed
s444417-training/pipeline/head There was a failure building this commit
wait to false
2022-04-25 21:29:39 +02:00

43 lines
1.3 KiB
Groovy

pipeline {
parameters{
string(
defaultValue: 'mikolaj2',
description: 'Kaggle username',
name: 'KAGGLE_USERNAME'
)
string(
defaultValue: '20',
description: 'Value for head command',
name: 'CUTOFF'
)
password(
defaultValue: '',
description: 'Kaggle token taken from kaggle.json file, as described in https://github.com/Kaggle/kaggle-api#api-credentials',
name: 'KAGGLE_KEY'
)
}
agent { dockerfile true }
options {
copyArtifactPermission('s444417-training');
}
stages {
stage("Check out from version control") {
steps {
checkout scm
}
}
stage("Shell Scripts") {
steps {
// sh "KAGGLE_USERNAME=${params.KAGGLE_USERNAME} KAGGLE_KEY=${params.KAGGLE_KEY} CUTOFF=${CUTOFF} ./startscript1.sh"
// sh 'ls -la'
// sh './startscript1.sh'
archiveArtifacts 'Participants_Data_HPP/**/*.*'
}
}
stage ('Starting train job') {
steps {
build job: 's444417-training/master', wait: false
}
}
}
}