22 lines
633 B
Groovy
22 lines
633 B
Groovy
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 {
|
|
checkout scmGit(
|
|
branches: [[name: '*/main']],
|
|
extensions: [],
|
|
userRemoteConfigs: [[url: 'https://git.wmi.amu.edu.pl/pms/ium-s301654']])
|
|
}
|
|
}
|
|
}
|
|
} |