ium_434695/Jenkinsfile
2021-03-28 21:02:12 +02:00

25 lines
694 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: Check out from version control') {
steps {
git credentialsId: 'f746c8e0-e974-4758-838d-1920a7b0e3dc', url: 'https://git.wmi.amu.edu.pl/s434695/ium_434695.git'
}
}
stage('sh: Shell Script') {
steps {
sh 'chmod +x skrypt.sh'
sh './skrypt.sh ${CUTOFF}'
}
}
}
}