ium_s487182/Jenkinsfile

25 lines
636 B
Groovy

pipeline {
agent any
//Definijuemy parametry, które będzie można podać podczas wywoływania zadania
parameters {
string (
defaultValue: 'Hellllo World!',
description: 'Tekst, którym chcesz przywitać świat',
name: 'INPUT_TEXT',
trim: false
)
}
stages {
stage('checkout: Check out from version control') {
steps {
git branch: 'master',
url: 'https://git.wmi.amu.edu.pl/s487182/ium_s487182'
}
}
stage('sh: Shell Script') {
steps {
sh 'python3 create_dataset.py'
}
}
}
}