ium_444417/Jenkinsfile

34 lines
1017 B
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-03 12:29:56 +02:00
agent { dockerfile true }
2022-03-24 18:33:08 +01: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-03-24 21:35:15 +01:00
sh "chmod u+x ./startscript1.sh"
2022-04-03 12:24:05 +02:00
sh "KAGGLE_USERNAME=${params.KAGGLE_USERNAME} KAGGLE_KEY=${params.KAGGLE_KEY} CUTOFF=${CUTOFF} ./startscript1.sh"
2022-03-24 17:43:23 +01:00
archiveArtifacts 'data.txt'
2022-03-24 18:29:20 +01:00
}
2022-03-24 17:40:59 +01:00
}
2022-03-23 11:11:31 +01:00
}
2022-03-23 11:09:04 +01:00
}