ium_444386/Jenkinsfile

30 lines
769 B
Plaintext
Raw Normal View History

2022-03-21 10:57:17 +01:00
pipeline {
agent any
2022-03-21 22:10:51 +01:00
parameters {
2022-03-21 22:08:38 +01:00
string(
2022-03-21 22:19:34 +01:00
defaultValue: 'szymonjadczak',
2022-03-21 22:08:38 +01:00
description: 'Kaggle username',
name: 'KAGGLE_USERNAME',
trim: false
)
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-21 22:10:51 +01:00
}
environment {
KAGGLE_USERNAME="$params.KAGGLE_USERNAME"
KAGGLE_KEY="$params.KAGGLE_KEY"
}
2022-03-21 22:12:49 +01:00
stages {
stage('Stage 1') {
steps {
echo 'Hello world!!!'
checkout([$class: 'GitSCM', branches: [[name: '*/master']], extensions: [], userRemoteConfigs: [[url: 'https://git.wmi.amu.edu.pl/s444386/ium_444386']]])
2022-03-21 22:19:34 +01:00
sh: "./download_dataset.sh"
2022-03-21 22:12:49 +01:00
}
2022-03-21 22:08:38 +01:00
}
2022-03-21 22:12:49 +01:00
}
2022-03-21 10:57:17 +01:00
}