67046f993e
The content of this branch was automatically imported from Fedora ELN with the following as its source: https://src.fedoraproject.org/rpms/lldb#2dde36ca67a5249132a21f77da0b2b0ae26d4b27
26 lines
629 B
YAML
26 lines
629 B
YAML
- hosts: localhost
|
|
pre_tasks:
|
|
# We want to be able to check that the sub-package dependencies are correct.
|
|
# The CI system installs all sub-packages, so we remove them so we can
|
|
# test them individually.
|
|
- name: Remove RPMS installed by CI
|
|
package:
|
|
name:
|
|
- python2-lldb
|
|
- lldb
|
|
- lldb-devel
|
|
state: absent
|
|
tags: classic
|
|
roles:
|
|
- role: standard-test-basic
|
|
tags:
|
|
- classic
|
|
required_packages:
|
|
- gcc-c++
|
|
- lldb
|
|
tests:
|
|
# rhbz#1567262
|
|
- python-embedded-interpreter:
|
|
dir: python-embedded-interpreter
|
|
run: ./runtest.sh
|