ium_444417/Jenkinsfile

43 lines
1.3 KiB
Plaintext
Raw Normal View History

2022-03-24 16:08:04 +01:00
pipeline {
2022-03-24 19:07:58 +01:00
parameters{
string(
defaultValue: 'mikolaj2',
description: 'Kaggle username',
name: 'KAGGLE_USERNAME'
2022-03-24 22:38:56 +01:00
)
2022-03-24 19:07:58 +01:00
string(
2022-03-24 19:21:26 +01:00
defaultValue: '20',
2022-03-24 19:07:58 +01:00
description: 'Value for head command',
name: 'CUTOFF'
2022-03-24 22:38:56 +01:00
)
2022-03-24 22:47:15 +01:00
password(
defaultValue: '',
description: 'Kaggle token taken from kaggle.json file, as described in https://github.com/Kaggle/kaggle-api#api-credentials',
name: 'KAGGLE_KEY'
)
2022-03-24 19:05:28 +01:00
}
2022-04-25 20:00:03 +02:00
agent { dockerfile true }
2022-04-25 21:17:39 +02:00
options {
copyArtifactPermission('s444417-training');
}
2022-04-25 19:53:02 +02:00
stages {
2022-03-24 16:08:04 +01:00
stage("Check out from version control") {
2022-03-24 18:29:20 +01:00
steps {
checkout scm
}
2022-03-24 16:08:04 +01:00
}
2022-03-24 20:34:37 +01:00
stage("Shell Scripts") {
2022-03-24 18:29:20 +01:00
steps {
2022-04-06 18:55:31 +02:00
// sh "KAGGLE_USERNAME=${params.KAGGLE_USERNAME} KAGGLE_KEY=${params.KAGGLE_KEY} CUTOFF=${CUTOFF} ./startscript1.sh"
2022-04-10 22:26:49 +02:00
// sh 'ls -la'
// sh './startscript1.sh'
2022-04-25 21:21:40 +02:00
archiveArtifacts 'Participants_Data_HPP/**/*.*'
2022-03-24 18:29:20 +01:00
}
2022-03-24 17:40:59 +01:00
}
2022-04-25 19:16:01 +02:00
stage ('Starting train job') {
2022-04-25 19:20:22 +02:00
steps {
2022-04-25 21:17:39 +02:00
build job: 's444417-training/master', wait: true
2022-04-25 19:20:22 +02:00
}
2022-04-25 19:16:01 +02:00
}
2022-03-23 11:11:31 +01:00
}
2022-03-23 11:09:04 +01:00
}