diff --git a/Jenkinsfile b/Jenkinsfile index bbc8773..b9a9bd4 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -27,11 +27,14 @@ pipeline{ withEnv(["CUTOFF=${params.CUTOFF}"]) { sh "chmod 777 ./script.sh" sh "python3 ./scrip2.py" + } + }} + stage('Archive artifacts'){ + steps{ archiveArtifacts 'test.csv' archiveArtifacts 'dev.csv' archiveArtifacts 'train.csv' - } - }} + } } -} \ No newline at end of file +}} \ No newline at end of file