17 lines
393 B
Groovy
17 lines
393 B
Groovy
pipeline {
|
|
agent any
|
|
stages {
|
|
stage ("SCM checkout") {
|
|
steps {
|
|
git "https://gitea.schlaubistechtalk.de/JonnyBravo/test_play.git"
|
|
|
|
}
|
|
}
|
|
stage(" execute Ansible") {
|
|
steps {
|
|
ansiblePlaybook installation: 'ansible', playbook: 'test_play.yml'
|
|
}
|
|
}
|
|
}
|
|
}
|