Compare commits

...

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

8 changed files with 63 additions and 4 deletions

2
.gitignore vendored
View File

@ -1 +1 @@
SOURCES/lohit-marathi-2.94.2.tar.gz
lohit-marathi-*.tar.gz

View File

@ -1 +0,0 @@
f5ddf3d95a9e4eed108caa7ee549b3d8a4c57891 SOURCES/lohit-marathi-2.94.2.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.94.2
Release: 5%{?dist}
Release: 7%{?dist}
Summary: Free truetype font for Marathi language
License: OFL
@ -49,6 +49,12 @@ install -Dm 0644 -p %{metainfo}.xml \
%{_datadir}/metainfo/%{metainfo}.xml
%changelog
* Mon Dec 02 2019 Vishal Vijayraghavan <vvijayra@redhat.com> - 2.94.2-7
- Resolves: #1682192 - Earlier build failed CI, version bump and trying once again
* Sun Nov 24 2019 Vishal Vijayraghavan <vvijayra@redhat.com> - 2.94.2-6
- Resolves: #1682192 - Added Tier-1 CI tests
* Tue Jun 19 2018 Miro Hrončok <mhroncok@redhat.com> - 2.94.2-5
- Rebuilt for Python 3.7
@ -71,7 +77,6 @@ install -Dm 0644 -p %{metainfo}.xml \
- Resolves: #1423906 - FTBFS in rawhide
- Migrated from fedorahosted.org to pagure.io.
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.94.0-8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild

1
sources Normal file
View File

@ -0,0 +1 @@
SHA512 (lohit-marathi-2.94.2.tar.gz) = 33eb034d693030436bbb0358f1590081609364083c66f9115c82e136dbfda4fee45bdfa072bf39e007c04fc294a7bf820d68b0411e2c8e7b14730c8ea39643b8

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-marathi
lang: ["bh","bho","hi","kok","mr","ne","sa","hne","mai","brx","sat","doi"]
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