ium_s487182/Jenkinsfile

25 lines
636 B
Plaintext
Raw Normal View History

2023-03-25 14:08:12 +01:00
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 {
2023-04-14 03:16:34 +02:00
stage('checkout: Check out from version control') {
2023-03-25 14:08:12 +01:00
steps {
2023-04-14 03:16:34 +02:00
git branch: 'master',
url: 'https://git.wmi.amu.edu.pl/s487182/ium_s487182'
2023-03-25 14:08:12 +01:00
}
}
2023-04-14 03:16:34 +02:00
stage('sh: Shell Script') {
2023-03-25 14:08:12 +01:00
steps {
2023-04-14 03:16:34 +02:00
sh 'python3 create_dataset.py'
2023-03-25 14:08:12 +01:00
}
}
}
2023-03-25 13:38:51 +01:00
}