mirror of
https://bitbucket.org/atlassian/dc-deployments-automation.git
synced 2025-12-13 08:23:06 -06:00
46 lines
1.4 KiB
Django/Jinja
46 lines
1.4 KiB
Django/Jinja
---
|
|
# This file was generated; to regnerated `cd` to `pipeline_generator`
|
|
# and run:
|
|
#
|
|
# make > ../bitbucket-pipelines.yml
|
|
|
|
image: debian:buster
|
|
options:
|
|
size: 2x
|
|
|
|
definitions:
|
|
services:
|
|
docker:
|
|
memory: 4096
|
|
|
|
pipelines:
|
|
default:
|
|
- step:
|
|
name: Pre Parallelization stage
|
|
script:
|
|
- echo "Running tests in {{ scenario_paths|length }} batches"
|
|
|
|
- step:
|
|
name: Check if the template is up-to-date
|
|
script:
|
|
- |
|
|
actual_scenario_count=$(find ./roles -type f -name "molecule.yml" -exec dirname {} ';' | wc -l | sed -e 's/^[[:space:]]*//')
|
|
grep "Running tests in ${actual_scenario_count} batches" bitbucket-pipelines.yml
|
|
GREP_RETURN_CODE=$?
|
|
if [[ $GREP_RETURN_CODE -ne 0 ]]; then
|
|
echo "Mismatch between expected and actual number [${actual_scenario_count}] of scenarios. Please look at https://bitbucket.org/atlassian/dc-deployments-automation/src/master/DEVELOPMENT.md for instructions on how to fix this error."
|
|
exit $GREP_RETURN_CODE
|
|
fi
|
|
|
|
- parallel:
|
|
{% for spath in scenario_paths -%}
|
|
- step:
|
|
name: {{ spath.parts[2] }}/{{ spath.parts[4] }}
|
|
services:
|
|
- docker
|
|
script:
|
|
- ./bin/install-ansible --dev
|
|
- cd roles/{{ spath.parts[2] }}
|
|
- pipenv run molecule test -s {{ spath.parts[4] }}
|
|
{% endfor %}
|