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

46
Jenkinsfile vendored
View File

@ -44,41 +44,37 @@ pipeline {
steps { steps {
script { script {
try { try {
//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 ''' // sh '''
#!/bin/bash // #!/bin/bash
pip install kaggle // pip install kaggle
git clone https://git.wmi.amu.edu.pl/s487187/ium_487187.git
echo "Processed Data" > output.txt // 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 '''
#!/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 "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!'
} }