91b4cb6f55
Signed-off-by: Parag Nemade <pnemade@fedoraproject.org>
34 lines
548 B
YAML
34 lines
548 B
YAML
---
|
|
- hosts: localhost
|
|
tags:
|
|
- classic
|
|
roles:
|
|
- role: standard-test-source
|
|
tasks:
|
|
- name: Enable EPEL repository for ragel
|
|
ansible.builtin.dnf:
|
|
name: ragel
|
|
enablerepo: epel
|
|
state: present
|
|
ignore_errors: True
|
|
|
|
- hosts: localhost
|
|
tags:
|
|
- classic
|
|
roles:
|
|
- role: standard-test-basic
|
|
tests:
|
|
- smoke
|
|
required_packages:
|
|
- autoconf
|
|
- automake
|
|
- m4
|
|
- gcc-c++
|
|
- make
|
|
- python3-devel
|
|
- ragel
|
|
- libtool
|
|
- gtk-doc
|
|
- cairo-devel
|
|
- fontconfig-devel
|