Update Jenkinsfile

This commit is contained in:
Alicja Szulecka 2024-04-02 12:41:01 +02:00
parent 3bf5015e26
commit ffb2ad1180
1 changed files with 6 additions and 1 deletions

7
Jenkinsfile vendored
View File

@ -1,5 +1,5 @@
pipeline { pipeline {
agent any agent dockerfile true
parameters { parameters {
string(name: 'KAGGLE_USERNAME', defaultValue: 'alicjaszulecka', description: 'Kaggle username') string(name: 'KAGGLE_USERNAME', defaultValue: 'alicjaszulecka', description: 'Kaggle username')
password(name: 'KAGGLE_KEY', defaultValue:'', description: 'Kaggle Key') password(name: 'KAGGLE_KEY', defaultValue:'', description: 'Kaggle Key')
@ -21,5 +21,10 @@ pipeline {
} }
} }
} }
stage('Test') {
steps {
sh 'cat etc/issue'
}
}
} }
} }