36 lines
850 B
YAML
36 lines
850 B
YAML
|
---
|
||
|
- hosts: localhost
|
||
|
tags: classic
|
||
|
tasks:
|
||
|
- name: Brew a warm one
|
||
|
shell: dnf config-manager --add-repo 'http://download.eng.bos.redhat.com/brewroot/repos/rhel-9.0.0-build/latest/x86_64/'
|
||
|
|
||
|
- hosts: localhost
|
||
|
tags: classic
|
||
|
tasks:
|
||
|
- name: Copy spec file to remote machine
|
||
|
copy:
|
||
|
src: "{{ playbook_dir }}/../libverto.spec"
|
||
|
dest: /tmp/libverto.spec
|
||
|
- name: Install build deps
|
||
|
shell: dnf -y --nogpgcheck build-dep /tmp/libverto.spec
|
||
|
|
||
|
- hosts: localhost
|
||
|
roles:
|
||
|
- role: standard-test-source
|
||
|
tags:
|
||
|
- always
|
||
|
- role: standard-test-basic
|
||
|
tags:
|
||
|
- atomic
|
||
|
- classic
|
||
|
required_packages:
|
||
|
- libverto
|
||
|
- libverto-devel
|
||
|
- libverto-glib-devel
|
||
|
- libverto-libevent-devel
|
||
|
- make
|
||
|
- rpm-build
|
||
|
tests:
|
||
|
- driver
|