You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
228 B

3 years ago
  1. pipeline {
  2. agent {label 'linux'}
  3. stages {
  4. stage('Hello') {
  5. steps {
  6. sh '''
  7. ansible --version
  8. ansible-playbook --version
  9. ansible-galaxy --version
  10. '''
  11. }
  12. }
  13. }
  14. }