This commit is contained in:
Jakub Zaręba 2023-03-27 21:22:53 +02:00
parent 30309c70c6
commit 0c51451a07

14
Jenkinsfile vendored
View File

@ -1,4 +1,8 @@
node {
stage('Clone Git Repository') {
git 'https://git.wmi.amu.edu.pl/s487187/ium_487187.git'
}
stage('Preparation') {
properties([
parameters([
@ -21,15 +25,6 @@ node {
withEnv(["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}",
"KAGGLE_KEY=${params.KAGGLE_KEY}" ]) {
sh 'echo KAGGLE_USERNAME: $KAGGLE_USERNAME'
sh 'kaggle datasets list'
}
}
stage('Clone Git Repository') {
git 'https://git.wmi.amu.edu.pl/s487187/ium_487187.git'
}
stage('Process Data') {
sh '''
#!/bin/bash
pip install kaggle
@ -44,6 +39,7 @@ node {
archiveArtifacts 'output.txt'
'''
}
}
stage('End') {
echo 'Program ended!'