22 lines
639 B
Groovy
22 lines
639 B
Groovy
pipeline {
|
|
agent { dockerfile true }
|
|
stages {
|
|
stage('Dataset download and stats') {
|
|
steps {
|
|
sh "export KAGGLE_CONFIG_DIR='${env.WORKSPACE}/kaggle_config/'"
|
|
sh "chmod +x -R ${env.WORKSPACE}"
|
|
sh './dataset_download_and_run.sh'
|
|
}
|
|
}
|
|
|
|
stage('archiveArtifacts') {
|
|
steps {
|
|
echo "Zapisywanie artefaktów..."
|
|
archiveArtifacts 'test.csv'
|
|
archiveArtifacts 'train.csv'
|
|
archiveArtifacts 'valid.csv'
|
|
archiveArtifacts 'extracted_dataset/2022/processed.csv'
|
|
}
|
|
}
|
|
}
|
|
} |