6da3f65ae2
The content of this branch was automatically imported from Fedora ELN with the following as its source: https://src.fedoraproject.org/rpms/acpica-tools#97b38e48de60dcda464ba13c4571a9669a887813
27 lines
607 B
YAML
27 lines
607 B
YAML
- hosts: localhost
|
|
vars:
|
|
- artifacts: "{{ lookup('env', 'TEST_ARTIFACTS')|default('./artifacts', true) }}"
|
|
tags:
|
|
- classic
|
|
roles:
|
|
- role: standard-test-basic
|
|
tests:
|
|
- acpixtract
|
|
required_packages:
|
|
- acpica-tools
|
|
remote_user: root
|
|
tasks:
|
|
- name: acpixtract
|
|
block:
|
|
- name: run acpixtract
|
|
shell: exec > /tmp/acpixtract.test.log 2>&1 && ./acpixtract/runtest.sh
|
|
|
|
always:
|
|
- name: pull out results
|
|
fetch:
|
|
dest: "{{ artifacts }}/"
|
|
src: "{{ item }}"
|
|
flat: yes
|
|
with_items:
|
|
- /tmp/acpixtract.test.log
|