ium_444417/Jenkinsfile
s444417 f94b3ceb92
Some checks failed
s444417-training/pipeline/head There was a failure building this commit
add model to git
2022-05-03 18:09:46 +02:00

45 lines
1.3 KiB
Groovy

pipeline {
agent {
docker { image 'mikolajk/ium:latest' }
}
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'
)
}
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
}
}
}
}