Compare commits

..

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

6 changed files with 38 additions and 2 deletions

View File

@ -1 +0,0 @@
6761c53b379c8dcb04573a071e5d54e9355bb6e7 SOURCES/resourcet-1.1.10.tar.gz

14
.gitignore vendored
View File

@ -1 +1,13 @@
SOURCES/resourcet-1.1.10.tar.gz
/resourcet-0.3.1.tar.gz
/resourcet-0.3.2.tar.gz
/resourcet-0.3.2.1.tar.gz
/resourcet-0.3.2.2.tar.gz
/resourcet-0.4.0.2.tar.gz
/resourcet-0.4.5.tar.gz
/resourcet-0.4.6.tar.gz
/resourcet-0.4.10.2.tar.gz
/resourcet-1.1.4.1.tar.gz
/resourcet-1.1.7.4.tar.gz
/resourcet-1.1.9.tar.gz
/resourcet-1.1.10.tar.gz
/unliftio-core-0.1.1.0.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}

1
sources Normal file
View File

@ -0,0 +1 @@
SHA512 (resourcet-1.1.10.tar.gz) = 41d0f3733856b756d4e82ff7682c2d4a0feae4fa6904e5097c69bc0e19e815b64c57d7bb459ef16c13c5e834be666b55f96e5d15cec49073aa1a0e2651f04705

18
tests/tests.yml Normal file
View File

@ -0,0 +1,18 @@
---
- hosts: localhost
tags:
- classic
roles:
- role: standard-test-basic
vars:
- pkg: "{{playbook_dir|dirname|basename}}"
- develpkg: "{{pkg}}-devel"
- pkgname: "{{pkg|regex_replace('^ghc-(.*)$', '\\1')}}"
required_packages:
- "{{develpkg}}"
tests:
- ghc:
run: echo 'main = return ()' > test.hs; ghc -package {{pkgname}} test.hs; ./test
- revdeps:
run: revdeps=$(dnf -q repoquery --qf "%{name}" --whatrequires={{develpkg}}); if [ -z "${revdeps}" ]; then echo "No valid dependents"; exit 1; else dnf -y install ${revdeps}; fi
...