Update Jenkinsfile: create dataset

This commit is contained in:
Paweł Skórzewski 2024-03-20 14:45:30 +01:00
parent 59eb4d4190
commit 29ddeaba9f
1 changed files with 5 additions and 9 deletions

14
Jenkinsfile vendored
View File

@ -1,14 +1,5 @@
pipeline {
agent any
//Definijuemy parametry, które będzie można podać podczas wywoływania zadania
parameters {
string (
defaultValue: 'Hello World!',
description: 'Tekst, którym chcesz przywitać świat',
name: 'INPUT_TEXT',
trim: false
)
}
stages {
stage('Checkout') {
steps {
@ -18,5 +9,10 @@ pipeline {
userRemoteConfigs: [[url: 'https://git.wmi.amu.edu.pl/pms/ium-s301654']])
}
}
stage('Download') {
steps {
sh './create-dataset.sh'
}
}
}
}