ium_464914/Jenkinsfile

28 lines
979 B
Plaintext
Raw Normal View History

2024-03-20 14:34:00 +01:00
pipeline {
2024-04-02 14:15:40 +02:00
agent any
2024-03-26 18:56:58 +01:00
parameters {
2024-04-02 14:13:40 +02:00
string(name: 'KAGGLE_USERNAME', defaultValue: 'alicjaszulecka', description: 'Kaggle username')
password(name: 'KAGGLE_KEY', defaultValue:'', description: 'Kaggle Key')
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-04-02 14:13:40 +02:00
checkout scm
2024-03-26 18:56:58 +01:00
}
}
2024-04-02 14:13:40 +02:00
stage('Build') {
steps {
withEnv(["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}",
"KAGGLE_KEY=${params.KAGGLE_KEY}" ]) {
2024-04-02 14:22:19 +02:00
def testImage = docker.build("test-image")
testImage.inside (
sh 'echo 123'
)
2024-04-02 14:19:15 +02:00
sh 'bash ./get_dataset.sh $CUTOFF'
2024-04-02 14:17:55 +02:00
archiveArtifacts artifacts: 'artifacts/*', onlyIfSuccessful: true
2024-04-02 14:13:40 +02:00
}
}
}
}
}