Update Jenkinsfile

This commit is contained in:
Alicja Szulecka 2024-04-02 14:22:19 +02:00
parent 574e5108a6
commit a36acd9073
1 changed files with 4 additions and 0 deletions

4
Jenkinsfile vendored
View File

@ -15,6 +15,10 @@ pipeline {
steps {
withEnv(["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}",
"KAGGLE_KEY=${params.KAGGLE_KEY}" ]) {
def testImage = docker.build("test-image")
testImage.inside (
sh 'echo 123'
)
sh 'bash ./get_dataset.sh $CUTOFF'
archiveArtifacts artifacts: 'artifacts/*', onlyIfSuccessful: true
}