Compare commits
No commits in common. "c9-beta" and "c10s" have entirely different histories.
4
.gitignore
vendored
4
.gitignore
vendored
@ -1 +1,3 @@
|
|||||||
SOURCES/rachana-Version7.0.3.tar.gz
|
rachana-Version*/
|
||||||
|
/rachana-Version7.0.1.tar.gz
|
||||||
|
/rachana-Version7.0.3.tar.gz
|
||||||
|
@ -1 +0,0 @@
|
|||||||
46f88887a7599928adb428d3a46653ad2ea918f1 SOURCES/rachana-Version7.0.3.tar.gz
|
|
7
gating.yaml
Normal file
7
gating.yaml
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
--- !Policy
|
||||||
|
product_versions:
|
||||||
|
- rhel-9
|
||||||
|
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 (rachana-Version7.0.3.tar.gz) = fa9e2898975c35e1f0f8144870b9aada4d9a66e761b1a7ee80863075e46aa5dd22c4a413641aa5025b9bb75a829adfa1ae7031db2504872a7a9fadd2977f1fc6
|
45
tests/fonttest_playbook.yml
Normal file
45
tests/fonttest_playbook.yml
Normal file
@ -0,0 +1,45 @@
|
|||||||
|
- hosts: localhost
|
||||||
|
vars:
|
||||||
|
config:
|
||||||
|
fontname: smc-rachana
|
||||||
|
lang: ["ml"]
|
||||||
|
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