Compare commits
No commits in common. "c8" and "c8s" have entirely different histories.
12
.gitignore
vendored
12
.gitignore
vendored
@ -1 +1,11 @@
|
||||
SOURCES/liberation-fonts-2.00.3.tar.gz
|
||||
liberation-fonts-ttf-1.05.3.20100510.tar.gz
|
||||
liberation-fonts-ttf-1.06.0.20100721.tar.gz
|
||||
/liberation-fonts-1.06.0.20100721.tar.gz
|
||||
/liberation-fonts-1.07.0.tar.gz
|
||||
/liberation-fonts-1.07.1.tar.gz
|
||||
/liberation-fonts-1.07.2.tar.gz
|
||||
/liberation-fonts-2.00.0.tar.gz
|
||||
/liberation-fonts-2.00.1.tar.gz
|
||||
/liberation-fonts-1.07.3.tar.gz
|
||||
/liberation-fonts-1.07.4.tar.gz
|
||||
/liberation-fonts-2.00.3.tar.gz
|
||||
|
@ -1 +0,0 @@
|
||||
f76fbfb89e10a78cea76eed3a04d8994c211e5f9 SOURCES/liberation-fonts-2.00.3.tar.gz
|
6
gating.yaml
Normal file
6
gating.yaml
Normal file
@ -0,0 +1,6 @@
|
||||
--- !Policy
|
||||
product_versions:
|
||||
- rhel-8
|
||||
decision_context: osci_compose_gate
|
||||
rules:
|
||||
- !PassingTestCaseRule {test_case_name: osci.brew-build.tier0.functional}
|
1
sources
Normal file
1
sources
Normal file
@ -0,0 +1 @@
|
||||
SHA512 (liberation-fonts-2.00.3.tar.gz) = eb66631cebef69631995b17254c86416c1d90fad4fb6f0f790cb37bddf2ff66d3452b7c5751e70a5030feb4c46254ede3c8de821b543940d190c252c2f18901f
|
2
tests/.gitignore
vendored
Normal file
2
tests/.gitignore
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
artifacts/
|
||||
fonttest/
|
45
tests/fonttest_playbook.yml
Normal file
45
tests/fonttest_playbook.yml
Normal file
@ -0,0 +1,45 @@
|
||||
- hosts: localhost
|
||||
vars:
|
||||
config:
|
||||
fontname: liberation
|
||||
lang: ["en","az-az","de","el","he"]
|
||||
testgiturl: https://pagure.io/font_ci_testing.git
|
||||
testgitclonepath: fonttest
|
||||
testfilename: fonttest.py
|
||||
testfilepath: /usr/local/bin
|
||||
logfilepath: /tmp/test.log
|
||||
artifacts: "{{ lookup('env', 'TEST_ARTIFACTS')|default('./artifacts', true) }}"
|
||||
|
||||
tags:
|
||||
- classic
|
||||
|
||||
remote_user: root
|
||||
|
||||
tasks:
|
||||
- name: Install required package
|
||||
dnf:
|
||||
name:
|
||||
- git
|
||||
- "{{ config.fontname }}-fonts"
|
||||
- python3
|
||||
- fontconfig
|
||||
|
||||
- name: git clone the tests
|
||||
git:
|
||||
repo: "{{ config.testgiturl }}"
|
||||
dest: "{{ config.testgitclonepath }}"
|
||||
force: yes
|
||||
|
||||
- name: Test Execution
|
||||
block:
|
||||
- name: Execute the tests
|
||||
command: python3 {{ config.testgitclonepath }}/tests/{{ config.testfilename }} "{{ config }}"
|
||||
|
||||
always:
|
||||
- name: Pull out the artifacts
|
||||
fetch:
|
||||
dest: "{{ config.artifacts }}/"
|
||||
src: "{{ item }}"
|
||||
flat: yes
|
||||
with_items:
|
||||
- "{{ config.logfilepath }}"
|
1
tests/tests.yml
Normal file
1
tests/tests.yml
Normal file
@ -0,0 +1 @@
|
||||
- import_playbook: fonttest_playbook.yml
|
Loading…
Reference in New Issue
Block a user