iumKC/JenkinsDatastatsDockerhub

40 lines
977 B
Plaintext

pipeline {
agent {
docker {
image 'karolcyganik/ium:latest'
args '-u root'
}
}
parameters {
string(
defaultValue: 'karol9',
description: 'Kaggle username',
name: 'KAGGLE_USERNAME',
trim: false
)
string(
defaultValue: '100',
description: 'Dataset cutoff size',
name: 'CUTOFF'
)
password(
defaultValue: '',
description: 'Kaggle token taken from kaggle.json file, as described in https://github.com/Kaggle/kaggle-api#api-credentials',
name: 'KAGGLE_KEY'
)
}
stages {
stage('Checkout') {
steps {
git branch: 'main', url: 'https://git.wmi.amu.edu.pl/s495715/iumKC.git'
}
}
stage('Execute Script') {
steps {
sh 'python3 main.py'
}
}
}
}