cscope/tests/tests.yml
Vladis Dronov 9ae0d6e181 Add self-tests and an OSCI harness
Resolves: RHEL-30639

Signed-off-by: Vladis Dronov <vdronov@redhat.com>
2024-04-01 13:03:52 +02:00

53 lines
913 B
YAML

---
- hosts: localhost
tags:
- classic
tasks:
- name: Add executor host
add_host:
name: executor
ansible_connection: local
ansible_host: 127.0.0.1
ansible_ssh_connection: local
- name: Install build requires
delegate_to: executor
shell: dnf -y install autoconf automake
- hosts: localhost
tags:
- classic
roles:
- role: standard-test-source
- hosts: localhost
tags:
- classic
tasks:
- name: Copy spec file to remote machine
copy:
src: "{{ playbook_dir }}/../cscope.spec"
dest: /tmp/cscope.spec
- name: Install build deps
shell: dnf -y build-dep /tmp/cscope.spec
- hosts: localhost
tags:
- classic
roles:
- role: standard-test-basic
tests:
- smoke
required_packages:
- autoconf
- automake
- pkgconf-pkg-config
- ncurses-devel
- flex
- bison
- m4
- gcc
- sed
- make