openstack-helm-infra/playbooks/build-chart.yaml
Vladimir Kozhukalov 4aef6a6d7b Ensure python and pip installed for lint and build chart jobs
Change-Id: I7819d67894eff03e57fe1c22f02e167a6c63b346
2025-01-29 09:08:00 -06:00

33 lines
894 B
YAML

---
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
- hosts: all
roles:
- ensure-python
- ensure-pip
- name: ensure-helm
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 }}"
target: all
...