ium_452487/Jenkinsfile

22 lines
639 B
Plaintext
Raw Normal View History

2024-03-24 17:02:18 +01:00
pipeline {
2024-04-01 20:04:28 +02:00
agent { dockerfile true }
stages {
stage('Dataset download and stats') {
steps {
2024-04-01 21:39:20 +02:00
sh "export KAGGLE_CONFIG_DIR='${env.WORKSPACE}/kaggle_config/'"
2024-04-01 20:04:28 +02:00
sh "chmod +x -R ${env.WORKSPACE}"
sh './dataset_download_and_run.sh'
}
}
2024-05-04 13:28:38 +02:00
stage('archiveArtifacts') {
steps {
echo "Zapisywanie artefaktów..."
archiveArtifacts 'test.csv'
archiveArtifacts 'train.csv'
archiveArtifacts 'valid.csv'
archiveArtifacts 'extracted_dataset/2022/processed.csv'
}
}
2024-04-01 20:04:28 +02:00
}
2024-03-20 14:28:52 +01:00
}