Skip to content
Snippets Groups Projects
Select Git revision
  • 2dc8d94ccdcef9d076bafee912bacde1aa509507
  • master default
2 results

Jenkinsfile

Blame
  • Jenkinsfile 449 B
    pipeline {
        agent any
        stages {
            stage('install') {
                steps {
                    sh 'pip install -r tests/requirements.txt'
                    sh 'ansible-galaxy install git+file://$(pwd),$(git rev-parse --abbrev-ref HEAD) -p .molecule/roles'
                    sh 'molecule dependency'
                }
            }
            stage('test') {
                steps {
                    sh 'pre-commit run --all-files'
                }
            }
        }
    }