iumKC/JenkinsDatastatsDockerhub

40 lines
977 B
Plaintext
Raw Permalink Normal View History

2024-04-03 08:47:40 +02:00
pipeline {
agent {
docker {
2024-04-03 08:50:15 +02:00
image 'karolcyganik/ium:latest'
2024-04-14 14:51:37 +02:00
args '-u root'
2024-04-03 08:47:40 +02:00
}
}
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'
}
}
2024-04-03 09:04:23 +02:00
stage('Execute Script') {
steps {
2024-04-03 09:09:30 +02:00
sh 'python3 main.py'
2024-04-03 08:47:40 +02:00
}
}
}
}