Changed Jenkinsfile

This commit is contained in:
s464953 2024-03-23 20:49:49 +01:00
parent df6de91789
commit 9930d2694d

64
Jenkinsfile vendored
View File

@ -1,27 +1,39 @@
node { pipeline {
stage('Preparation') { agent any
properties([
parameters([ parameters {
string( string(
defaultValue: 'tomaszzitkiewicz', defaultValue: 'gulczas',
description: 'Kaggle username', description: 'Kaggle username',
name: 'KAGGLE_USERNAME', name: 'KAGGLE_USERNAME',
trim: false trim: false
), )
password( password(
defaultValue: '', defaultValue: '',
description: 'Kaggle token taken from kaggle.json file, as described in https://github.com/Kaggle/kaggle-api#api-credentials', description: 'Kaggle token taken from kaggle.json file, as described in https://github.com/Kaggle/kaggle-api#api-credentials',
name: 'KAGGLE_KEY' name: 'KAGGLE_KEY'
) )
]) }
])
} stages {
stage('Build') { stage('Clone Repository') {
// Run the maven build steps {
withEnv(["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}", git 'https://git.wmi.amu.edu.pl/s464953/ium_464953.git'
"KAGGLE_KEY=${params.KAGGLE_KEY}" ]) { }
sh 'echo KAGGLE_USERNAME: $KAGGLE_USERNAME' }
sh 'kaggle datasets download brunoalercon123/top-200-spotify-songs-dataset' stage('Run Script') {
} steps {
} script {
withEnv(["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}", "KAGGLE_KEY=${params.KAGGLE_KEY}"]) {
sh 'bash download_dataset.sh $KAGGLE_USERNAME $KAGGLE_KEY'
}
}
}
}
stage('Archive Artifacts') {
steps {
archiveArtifacts artifacts: 'artifacts/*', onlyIfSuccessful: true
}
}
}
} }