ium_444354/Jenkinsfile

45 lines
1.3 KiB
Plaintext
Raw Normal View History

2022-03-21 11:13:00 +01:00
pipeline {
2022-03-24 19:56:27 +01:00
parameters{
password(
defaultValue: '',
description: 'Kaggle token taken from kaggle.json file, as described in https://github.com/Kaggle/kaggle-api#api-credentials',
2022-03-24 20:30:56 +01:00
name: 'KAGGLE_SECRET_KEY'
2022-03-24 19:56:27 +01:00
)
string(
defaultValue: 'riraasaa',
description: 'Kaggle username',
name: 'KAGGLE_USERNAME'
)
string(
defaultValue: '20',
description: 'Value for head command',
name: 'CUTOFF'
)
}
environment {
KAGGLE_USERNAME="$params.KAGGLE_USERNAME"
2022-03-24 20:14:38 +01:00
KAGGLE_KEY="$params.KAGGLE_KEY"
2022-03-24 19:56:27 +01:00
CUTOFF="$params.CUTOFF"
}
2022-04-09 18:36:43 +02:00
agent
{
2022-04-09 20:46:14 +02:00
dockerfile true
2022-04-09 18:36:43 +02:00
}
2022-04-03 22:17:18 +02:00
2022-03-24 19:56:27 +01:00
stages {
stage("Check out from version control") {
steps {
checkout scm
}
}
stage("Shell Script") {
steps {
2022-04-09 20:52:48 +02:00
sh "chmod u+x ./script.sh"
2022-03-24 19:56:27 +01:00
sh "KAGGLE_USERNAME=${KAGGLE_USERNAME} KAGGLE_KEY=${KAGGLE_KEY} CUTOFF=${CUTOFF} ./script.sh"
2022-03-24 20:40:48 +01:00
archiveArtifacts 'TEST_winequality-red.csv'
archiveArtifacts 'TRAIN_winequality-red.csv'
archiveArtifacts 'VAL_winequality-red.csv'
2022-03-24 19:56:27 +01:00
}
}
}
2022-03-21 11:13:00 +01:00
}