Skip to content
Snippets Groups Projects
Commit 318d8240 authored by nimrod's avatar nimrod
Browse files

- Fetch Git submodules in Jenkins.

- User install pip (for caching purposes).
- Import to Ansible Galaxy on success.
- Commented out Molecule test (using Vagrant).
parent faa5e2b3
Branches
No related tags found
No related merge requests found
...@@ -3,8 +3,8 @@ pipeline { ...@@ -3,8 +3,8 @@ pipeline {
stages { stages {
stage('install') { stage('install') {
steps { steps {
sh 'virtualenv example' sh 'git submodule update --init'
sh '. example/bin/activate && pip install -r tests/requirements.txt' sh 'pip install -r tests/requirements.txt --user'
sh '. example/bin/activate && ansible-galaxy install git+file://$(pwd),$(git rev-parse --abbrev-ref HEAD) -p .molecule/roles' sh '. example/bin/activate && ansible-galaxy install git+file://$(pwd),$(git rev-parse --abbrev-ref HEAD) -p .molecule/roles'
sh '. example/bin/activate && molecule dependency' sh '. example/bin/activate && molecule dependency'
} }
...@@ -12,7 +12,13 @@ pipeline { ...@@ -12,7 +12,13 @@ pipeline {
stage('test') { stage('test') {
steps { steps {
sh '. example/bin/activate && pre-commit run --all-files' sh '. example/bin/activate && pre-commit run --all-files'
// sh 'molecule test --platform all'
} }
} }
} }
post {
success {
sh 'ansible-galaxy import -v'
}
}
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment