windmill/playbooks/roles/test.prove/tasks/main.yaml

43 lines
1.2 KiB
YAML

# Copyright 2016 Red Hat, Inc.
#
# 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.
---
- name: Create required directories.
become: true
file:
group: root
owner: root
path: /opt/windmill/test.prove
state: directory
- name: Install dib-image-list.sh wrapper.
become: true
copy:
dest: /opt/windmill/test.prove
group: root
mode: 0755
owner: root
src: test_dib_image_list.sh
- name: Ensure ubuntu-bionic DIB image is built.
become: true
become_user: nodepool
delay: 10
register: task_result
retries: 360
shell: /opt/windmill/test.prove/test_dib_image_list.sh ubuntu-bionic ready
tags: skip_ansible_lint
until: task_result.rc == 0
delegate_to: "{{ item }}"
with_items: "{{ groups['nodepool-builder'] }}"