46 lines
1.2 KiB
Plaintext
46 lines
1.2 KiB
Plaintext
pipeline {
|
|
agent {
|
|
docker {
|
|
image 'karolcyganik/ium:latest'
|
|
}
|
|
}
|
|
|
|
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('Copy Artifacts') {
|
|
steps {
|
|
script {
|
|
copyArtifacts fingerprintArtifacts: true, projectName: 'z-s495715-create-dataset', selector: specific('16')
|
|
}
|
|
}
|
|
}
|
|
stage('Execute Script') {
|
|
steps {
|
|
sh 'python 3 main.py'
|
|
}
|
|
}
|
|
}
|
|
} |