fix Jenkins

This commit is contained in:
Dawid 2021-04-08 23:09:30 +02:00
parent 7a2e38279b
commit d8591d4420

6
Jenkinsfile vendored
View File

@ -24,14 +24,14 @@ pipeline{
stage('sh: Shell Script'){ stage('sh: Shell Script'){
steps{ steps{
withEnv(["CUTOFF=${params.CUTOFF}"]) { withEnv(["CUTOFF=${params.CUTOFF}"]) {
sh "chmod 777 ./script.sh" sh "chmod 777 ./data.sh"
sh "./script.sh" sh "./data.sh"
} }
}} }}
stage('Archive artifacts'){ stage('Archive artifacts'){
steps{ steps{
archiveArtifacts 'test.csv' archiveArtifacts 'test.csv'
archiveArtifacts 'dev.csv' archiveArtifacts 'validation.csv'
archiveArtifacts 'train.csv' archiveArtifacts 'train.csv'
} }
} }