Compare commits

...

No commits in common. "c8" and "c8s" have entirely different histories.
c8 ... c8s

8 changed files with 73 additions and 3 deletions

12
.gitignore vendored
View File

@ -1 +1,11 @@
SOURCES/lohit-assamese-2.91.5.tar.gz
lohit-assamese-2.4.3.tar.gz
/lohit-assamese-2.5.0.tar.gz
/lohit-assamese-2.5.1.tar.gz
/lohit-assamese-2.5.2.tar.gz
/lohit-assamese-2.5.3.tar.gz
/lohit-assamese-2.91.0.tar.gz
/lohit-assamese-2.91.1.tar.gz
/lohit-assamese-2.91.2.tar.gz
/lohit-assamese-2.91.3.tar.gz
/lohit-assamese-2.91.4.tar.gz
/lohit-assamese-2.91.5.tar.gz

View File

@ -1 +0,0 @@
3e33a738f092fbaf45c69fed9cf5fa6a55bf3178 SOURCES/lohit-assamese-2.91.5.tar.gz

6
gating.yaml Normal file
View 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}

View File

@ -4,7 +4,7 @@
Name: %{fontname}-fonts
Version: 2.91.5
Release: 3%{?dist}
Release: 5%{?dist}
Summary: Free Assamese font
Group: User Interface/X
@ -52,6 +52,12 @@ install -Dm 0644 -p %{metainfo}.xml \
%{_datadir}/metainfo/%{metainfo}.xml
%changelog
* Fri Nov 29 2019 Vishal Vijayraghavan <vvijayra@redhat.com> - 2.91.5-5
- Resolves: #1682185 - Updated gating.yaml
* Fri Nov 29 2019 Vishal Vijayraghavan <vvijayra@redhat.com> - 2.91.5-4
- Resolves: #1682185 - Added Tier-1 CI tests
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.91.5-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild

1
sources Normal file
View File

@ -0,0 +1 @@
SHA512 (lohit-assamese-2.91.5.tar.gz) = 51242749b90857f551fddb775b0f290dcc5fcb4c1a8c2f101f76c0df676ca98ada45a2046c5c184445f9feab5bcb481a241391b15f8aa11d064b39f3c8b52da3

2
tests/.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
artifacts/
fonttest/

View File

@ -0,0 +1,45 @@
- hosts: localhost
vars:
config:
fontname: lohit-assamese
lang: ["as","bn","mni"]
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
View File

@ -0,0 +1 @@
- import_playbook: fonttest_playbook.yml