diff --git a/playbooks/build-chart.yaml b/playbooks/build-chart.yaml index 929703f73e..b96814ccb7 100644 --- a/playbooks/build-chart.yaml +++ b/playbooks/build-chart.yaml @@ -17,6 +17,12 @@ helm_version: "3.16.4" tasks: + - name: Install reno + pip: + name: reno>=4.1.0 + extra_args: "--ignore-installed" + become: yes + - name: make all make: chdir: "{{ zuul.project.src_dir }}" diff --git a/playbooks/lint.yml b/playbooks/lint.yml index 104ddf6478..2661388b6b 100644 --- a/playbooks/lint.yml +++ b/playbooks/lint.yml @@ -26,6 +26,12 @@ work_dir: "{{ zuul.project.src_dir }}/{{ zuul_osh_infra_relative_path | default('') }}" tasks: + - name: Install reno + pip: + name: reno>=4.1.0 + extra_args: "--ignore-installed" + become: yes + - name: make all make: chdir: "{{ zuul.project.src_dir }}"