added
Some checks failed
test_play/pipeline/head There was a failure building this commit

This commit is contained in:
2023-03-16 22:05:59 +01:00
parent d612cff49b
commit dd933115d8

9
Jenkinsfile vendored
View File

@@ -11,6 +11,13 @@ pipeline {
steps { steps {
ansiblePlaybook installation: 'ansible', playbook: 'test_play.yml' ansiblePlaybook installation: 'ansible', playbook: 'test_play.yml'
} }
} }
stage("run bash"){
steps {
bash '''#!/bin/bash
echo "hello world"
'''
}
}
} }
} }