Compare commits

...

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

6 changed files with 2 additions and 35 deletions

View File

@ -0,0 +1 @@
e1da34a323925e4d57bee299fc28c1c6372c9a45 SOURCES/unordered-containers-0.2.8.0.tar.gz

11
.gitignore vendored
View File

@ -1,10 +1 @@
/unordered-containers-0.1.4.3.tar.gz
/unordered-containers-0.1.4.6.tar.gz
/unordered-containers-0.2.1.0.tar.gz
/unordered-containers-0.2.2.1.tar.gz
/unordered-containers-0.2.3.0.tar.gz
/unordered-containers-0.2.4.0.tar.gz
/unordered-containers-0.2.5.1.tar.gz
/unordered-containers-0.2.7.1.tar.gz
/unordered-containers-0.2.7.2.tar.gz
/unordered-containers-0.2.8.0.tar.gz
SOURCES/unordered-containers-0.2.8.0.tar.gz

View File

@ -1,6 +0,0 @@
--- !Policy
product_versions:
- rhel-8
decision_context: osci_compose_gate
rules:
- !PassingTestCaseRule {test_case_name: osci.brew-build.tier0.functional}

View File

@ -1 +0,0 @@
SHA512 (unordered-containers-0.2.8.0.tar.gz) = 4cd717aee0519db84dd0f7ac6407df681a1340d7276f3546eb67072e85e464b1c58b427739d66bf28f1075fd8a52310a7637a8169608c2759694196319c36189

View File

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