Compare commits

...

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

6 changed files with 24 additions and 2 deletions

View File

@ -1 +0,0 @@
bd7cd5c73360c2c15172d348e67ec65dde6fbf6a SOURCES/hspec-2.4.4.tar.gz

2
.gitignore vendored
View File

@ -1 +1 @@
SOURCES/hspec-2.4.4.tar.gz
/hspec-2.4.4.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 (hspec-2.4.4.tar.gz) = 9be1c1deee500d2eedde506fea9ef5cf15571aa20ef7b4b57c442892bca1f18349a80d2c7e0d268bc8ae989dc679f85ce17a7dba0f10fb7f920e13df9706bdf5

16
tests/tests.yml Normal file
View File

@ -0,0 +1,16 @@
---
- 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
...