This commit is contained in:
Jakub Zaręba 2023-05-10 16:43:01 +02:00
parent 598c084c0c
commit 4cd4573f15
1 changed files with 6 additions and 19 deletions

25
Jenkinsfile vendored
View File

@ -40,31 +40,18 @@ pipeline {
}
}
stage('Build') {
//when { expression { params.KAGGLE_USERNAME && params.KAGGLE_KEY } }
steps {
script {
try {
// withEnv(["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}",
// "KAGGLE_KEY=${params.KAGGLE_KEY}" ]) {
// 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 'rm -rf ium_487187'
sh '''
#!/bin/bash
pip install kaggle
#!/bin/bash
pip install kaggle
git clone https://git.wmi.amu.edu.pl/s487187/ium_487187.git
git clone https://git.wmi.amu.edu.pl/s487187/ium_487187.git
echo "Processed Data" > output.txt
'''
echo "Processed Data" > output.txt
'''
sh "head -n ${params.CUTOFF} data.csv"
} catch (err) {
error "Failed to build: ${err.message}"