This commit is contained in:
Jakub Zaręba 2023-05-10 16:10:11 +02:00
parent 139ef69ca8
commit 291bd0c151

26
Jenkinsfile vendored
View File

@ -47,6 +47,16 @@ pipeline {
// withEnv(["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}", // withEnv(["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}",
// "KAGGLE_KEY=${params.KAGGLE_KEY}" ]) { // "KAGGLE_KEY=${params.KAGGLE_KEY}" ]) {
// sh 'echo KAGGLE_USERNAME: $KAGGLE_USERNAME' // sh 'echo KAGGLE_USERNAME: $KAGGLE_USERNAME'
// sh '''
// #!/bin/bash
// pip install kaggle
// git clone https://git.wmi.amu.edu.pl/s487187/ium_487187.git
// echo "Processed Data" > output.txt
// '''
// sh "head -n ${params.CUTOFF} data.csv"
// }
sh ''' sh '''
#!/bin/bash #!/bin/bash
pip install kaggle pip install kaggle
@ -56,29 +66,15 @@ pipeline {
echo "Processed Data" > output.txt echo "Processed Data" > output.txt
''' '''
sh "head -n ${params.CUTOFF} data.csv" sh "head -n ${params.CUTOFF} data.csv"
}
} catch (err) { } catch (err) {
error "Failed to build: ${err.message}" error "Failed to build: ${err.message}"
} }
}
}
stage('Clone Git Repository') {
when { expression { params.KAGGLE_USERNAME && params.KAGGLE_KEY } }
steps {
script {
try {
git 'https://git.wmi.amu.edu.pl/s487187/ium_487187.git'
} catch (err) {
error "Failed to clone repository: ${err.message}"
}
} }
} }
} }
stage('End') { stage('End') {
when { expression { params.KAGGLE_USERNAME && params.KAGGLE_KEY } } // when { expression { params.KAGGLE_USERNAME && params.KAGGLE_KEY } }
steps { steps {
echo 'Program ended!' echo 'Program ended!'
} }