a3a7c66ff3
Found some issues about `rally verify` recently, restore the gate to do some check. Change-Id: Ib7f0b098628ce4a5debc4100284dc99558da74a3
27 lines
792 B
YAML
27 lines
792 B
YAML
- hosts: controller
|
|
tasks:
|
|
- name: Copy the html report
|
|
synchronize:
|
|
src: '{{ zuul.project.src_dir }}/rally-verify'
|
|
dest: '{{ zuul.executor.log_root }}'
|
|
mode: pull
|
|
copy_links: true
|
|
verify_host: true
|
|
rsync_opts:
|
|
- --include=/**
|
|
- --include=*/
|
|
- --exclude=*
|
|
- --prune-empty-dirs
|
|
|
|
- name: Put index.html in the right place
|
|
synchronize:
|
|
src: '{{ zuul.project.src_dir }}/rally-verify/extra/index.html'
|
|
dest: '{{ zuul.executor.log_root }}/index.html'
|
|
mode: pull
|
|
copy_links: true
|
|
verify_host: true
|
|
rsync_opts:
|
|
- --include=/**
|
|
- --include=*/
|
|
- --exclude=*
|
|
- --prune-empty-dirs |