Update Jenkinsfile

This commit is contained in:
s452487 2024-05-04 13:28:38 +02:00
parent c2742488f6
commit 544ccf4c5c

10
Jenkinsfile vendored
View File

@ -8,5 +8,15 @@ pipeline {
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'
}
}
}
}