ium_487184/Jenkinsfile

57 lines
1.7 KiB
Plaintext
Raw Normal View History

2023-06-28 22:39:02 +02:00
pipeline {
agent any
parameters {
string(
2023-06-28 23:25:28 +02:00
defaultValue: 'bartekmalanka',
2023-06-28 22:39:02 +02: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'
)
string(
defaultValue: '30',
description: 'dataset cutoff',
name: 'CUTOFF',
trim: false
)
}
stages {
stage('Download dataset') {
steps {
checkout scm
2023-04-21 16:10:02 +02:00
sh 'ls -l'
2023-06-28 22:39:02 +02:00
withEnv(["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}",
"KAGGLE_KEY=${params.KAGGLE_KEY}" ]) {
sh 'kaggle datasets download -d elakiricoder/gender-classification-dataset'
sh 'unzip -o gender-classification-dataset.zip'
}
}
}
stage('Docker') {
steps {
script {
def dockerImage = docker.build("docker-image", "./")
dockerImage.inside {
sh 'ls -l'
sh 'ls -l'
sh 'python3 createDataset.py'
archiveArtifacts 'gender_classification_train.csv'
archiveArtifacts 'gender_classification_test.csv'
archiveArtifacts 'gender_classification_val.csv'
sh 'ls -l'
}
}
}
}
}
post {
success {
2023-06-28 23:20:30 +02:00
build job: 'z-s487184-training/main', wait: false
2023-04-21 15:03:48 +02:00
}
}
2023-06-28 22:39:02 +02:00
}