64 lines
1.8 KiB
Groovy
64 lines
1.8 KiB
Groovy
pipeline {
|
|
agent any
|
|
parameters {
|
|
string (
|
|
name: 'KAGGLE_USERNAME',
|
|
defaultValue: 'ardenw',
|
|
description: 'Kaggle username'
|
|
)
|
|
password (
|
|
name: 'API_KEY',
|
|
defaultValue: '',
|
|
description: 'Kaggle API key'
|
|
)
|
|
string (
|
|
name: 'DATA_TRAIN_RATIO',
|
|
defaultValue: '80',
|
|
description: 'Train data ratio percentage'
|
|
)
|
|
string (
|
|
name: 'CUTOFF',
|
|
defaultValue: '500',
|
|
description: 'Cutoff value'
|
|
)
|
|
}
|
|
stages {
|
|
stage('Checkout repository') {
|
|
steps {
|
|
checkout scm
|
|
}
|
|
}
|
|
stage('Download dataset') {
|
|
steps {
|
|
withCredentials([string(credentialsId: 'ium-sftp-password', variable: 'IUM_SFTP_PASS')]) {
|
|
sh 'dvc remote add -d ium_ssh_remote ssh://ium-sftp@tzietkiewicz.vm.wmi.amu.edu.pl/ium-sftp'
|
|
sh 'dvc remote modify --local ium_ssh_remote password $IUM_SFTP_PASS'
|
|
sh 'dvc pull'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
stage('Prepare dataset') {
|
|
agent {
|
|
dockerfile {
|
|
filename 'Dockerfile'
|
|
reuseNode true
|
|
}
|
|
}
|
|
|
|
steps {
|
|
sh "chmod +x ./get_dataset.py"
|
|
sh "python ./get_dataset.py"
|
|
archiveArtifacts artifacts: 'dataset.csv,df_train.csv,df_test.csv', onlyIfSuccessful: true
|
|
}
|
|
}
|
|
stage('Run training'){
|
|
steps{
|
|
script {
|
|
build(job: 's464980-training/master')
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|