Update Jenkinsfile

This commit is contained in:
s452487 2024-03-24 17:56:30 +01:00
parent 8846ae58eb
commit 6b709c041d

7
Jenkinsfile vendored
View File

@ -14,9 +14,16 @@ pipeline {
}
stage('sh: Shell Script') {
steps {
echo "Przetwarzanie zbioru danych..."
sh "chmod +x -R ${env.WORKSPACE}"
sh "./dataset_download.sh"
}
}
stage('archiveArtifacts') {
steps {
echo "Zapisywanie artefaktów..."
archiveArtifacts 'processed.csv'
}
}
}
}