Update 'Jenkinsfile'

This commit is contained in:
Patryk Gałka 2023-04-18 19:28:43 +02:00
parent 688682c41c
commit 381260fd31

7
Jenkinsfile vendored
View File

@ -42,5 +42,12 @@ pipeline {
archiveArtifacts 'ls.txt'
}
}
stage('Build') {
// Run the maven build
withEnv(["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}",
"KAGGLE_KEY=${params.KAGGLE_KEY}" ]) {
sh 'kaggle datasets list'
}
}
}
}