ium_464914/Jenkinsfile

30 lines
939 B
Plaintext
Raw Normal View History

2024-03-20 14:34:00 +01:00
pipeline {
2024-04-02 12:41:01 +02:00
agent dockerfile true
2024-03-26 18:56:58 +01:00
parameters {
2024-03-26 19:32:48 +01:00
string(name: 'KAGGLE_USERNAME', defaultValue: 'alicjaszulecka', description: 'Kaggle username')
2024-03-26 18:56:58 +01:00
password(name: 'KAGGLE_KEY', defaultValue:'', description: 'Kaggle Key')
2024-03-26 19:41:42 +01:00
string(name: 'CUTOFF', defaultValue: '100', description: 'cut off number')
2024-03-26 18:56:58 +01:00
}
2024-03-20 14:34:00 +01:00
stages {
2024-03-26 18:56:58 +01:00
stage('Git Checkout') {
steps {
2024-03-26 19:32:48 +01:00
checkout scm
2024-03-26 18:56:58 +01:00
}
}
stage('Build') {
2024-03-26 19:11:15 +01:00
steps {
withEnv(["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}",
"KAGGLE_KEY=${params.KAGGLE_KEY}" ]) {
2024-03-26 18:56:58 +01:00
2024-03-26 19:51:54 +01:00
sh 'bash ./get_dataset.sh $CUTOFF'
archiveArtifacts artifacts: 'artifacts/*', onlyIfSuccessful: true
2024-03-26 19:11:15 +01:00
}
}
2024-03-26 18:56:58 +01:00
}
2024-04-02 12:41:01 +02:00
stage('Test') {
steps {
sh 'cat etc/issue'
}
}
2024-03-26 18:56:58 +01:00
}
2024-03-20 14:34:00 +01:00
}