Update Jenkinsfile

This commit is contained in:
s452487 2024-05-04 15:29:58 +02:00
parent 648d22b7ff
commit 99063a59de

10
Jenkinsfile vendored
View File

@ -1,21 +1,17 @@
pipeline {
agent { dockerfile true }
stages {
stage('Dataset download and stats') {
stage('evaluateDataset') {
steps {
sh "export KAGGLE_CONFIG_DIR='${env.WORKSPACE}/kaggle_config/'"
copyArtifacts filter: '*', fingerprintArtifacts: true, projectName: 's452487-training'
sh "chmod +x -R ${env.WORKSPACE}"
sh './dataset_download_and_run.sh'
sh './evaluate.sh'
}
}
stage('archiveArtifacts') {
steps {
echo "Zapisywanie artefaktów..."
archiveArtifacts 'test.csv'
archiveArtifacts 'train.csv'
archiveArtifacts 'valid.csv'
archiveArtifacts 'extracted_dataset/2022/processed.csv'
}
}
}