19 lines
537 B
YAML
19 lines
537 B
YAML
|
---
|
||
|
- hosts: all
|
||
|
become: yes
|
||
|
tasks:
|
||
|
- command: ostree remote add --set=gpg-verify=false centos-atomic-continuous https://ci.centos.org/artifacts/sig-atomic/rdgo/centos-continuous/ostree/repo/
|
||
|
args:
|
||
|
creates: /etc/ostree/remotes.d/centos-atomic-continuous.conf
|
||
|
|
||
|
- command: docker inspect rpm-ostree-builder
|
||
|
failed_when: False
|
||
|
changed_when: False
|
||
|
register: inspect
|
||
|
|
||
|
- name: build buildimg
|
||
|
command: make buildimg
|
||
|
args:
|
||
|
chdir: sync/tests/vmcheck
|
||
|
when: inspect.rc != 0
|