Skip to content
Snippets Groups Projects
Commit 2dc8d94c authored by nimrod's avatar nimrod
Browse files

- Added declarative jenkinsfile.

parent 6785200a
No related branches found
No related tags found
No related merge requests found
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'
}
}
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment