Merge "shake-build: add shake_target variable"

This commit is contained in:
Zuul 2020-09-30 15:41:35 +00:00 committed by Gerrit Code Review
commit 5e5df2ae70
4 changed files with 11 additions and 1 deletions

View File

@ -7,6 +7,10 @@ Run the shake build system command.
The name of the report.
.. zuul:rolevar:: shake_target
The name of the target to build.
.. zuul:rolevar:: zuul_work_dir
:default: {{ zuul.project.src_dir }}

View File

@ -1,3 +1,4 @@
shake_report_name: "shake.html"
shake_target: ""
zuul_work_dir: "{{ zuul.project.src_dir }}"

View File

@ -1,6 +1,6 @@
- block:
- name: Run shake
command: "shake --report={{ report_location }}"
command: "shake --report={{ report_location }} {{ shake_target }}"
vars:
report_location: "{{ ansible_user_dir }}/zuul-output/logs/{{ shake_report_name }}"
args:

View File

@ -122,5 +122,10 @@
Run the shake build system command.
This job produces a shake.html report.
.. zuul:jobvar:: shake_target
The name of the target to build.
pre-run: playbooks/shake/pre.yaml
run: playbooks/shake/run.yaml