ium_444498/Jenkinsfile
2022-03-26 11:53:50 +01:00

16 lines
297 B
Groovy

pipeline {
agent any
stages {
stage('Hello') {
steps {
echo 'Hello world!'
}
}
stage('Checkout') {
steps {
git 'https://git.wmi.amu.edu.pl/s444498/ium_444498.git'
}
}
}
}