ium_452487/Jenkinsfile
s452487 648d22b7ff revert 8f8c0de5f6
revert Update Jenkinsfile
2024-05-04 14:02:41 +02:00

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'
}
}
}
}