ium_444498/Jenkinsfile

16 lines
297 B
Plaintext
Raw Normal View History

2022-03-21 11:28:45 +01:00
pipeline {
agent any
stages {
2022-03-26 11:42:48 +01:00
stage('Hello') {
2022-03-21 11:28:45 +01:00
steps {
echo 'Hello world!'
}
}
2022-03-26 11:42:48 +01:00
stage('Checkout') {
steps {
2022-03-26 11:47:48 +01:00
git 'https://git.wmi.amu.edu.pl/s444498/ium_444498.git'
2022-03-26 11:42:48 +01:00
}
}
2022-03-21 11:28:45 +01:00
}
2022-03-26 11:42:48 +01:00
}