ium_444386/Jenkinsfile

12 lines
314 B
Plaintext
Raw Normal View History

2022-03-21 10:57:17 +01:00
pipeline {
agent any
stages {
stage('Stage 1') {
steps {
2022-03-21 21:55:23 +01:00
echo 'Hello world!!!'
checkout([$class: 'GitSCM', branches: [[name: '*/master']], extensions: [], userRemoteConfigs: [[url: 'https://git.wmi.amu.edu.pl/s444386/ium_444386']]])
2022-03-21 10:57:17 +01:00
}
}
}
}