Files
zuul-jobs/roles/ensure-dstat-graph/tasks/main.yaml
James E. Blair 02a260d84d Disable recursive git clone for ensure-dstat-graph
This is not necessary, so disable it to avoid potential problems.

Change-Id: I5958b32f31e47d1ad77ff8187f22285ec6e24ec7
2025-07-09 09:40:03 -07:00

15 lines
357 B
YAML

- name: Check for cached dstat_graph
stat:
path: "{{ dstat_graph_cache_path }}"
register: dstat_cache
- name: Clone dstat_graph
when: >
not dstat_cache.stat.exists or
dstat_graph_cache_ignore
git:
repo: https://opendev.org/opendev/dstat_graph
dest: "{{ dstat_graph_download_path }}"
version: master
recursive: false