From 09810638b616af044c675601fa2dcf83ad4b3fdd Mon Sep 17 00:00:00 2001 From: Adam Samalik Date: Fri, 28 Jul 2023 14:33:29 +0200 Subject: [PATCH] re-import sources as agreed with the maintainer --- .gitignore | 10 ++++++++++ gating.yaml | 6 ++++++ tests/tests.yml | 18 ++++++++++++++++++ 3 files changed, 34 insertions(+) create mode 100644 gating.yaml create mode 100644 tests/tests.yml diff --git a/.gitignore b/.gitignore index ff07241..b6dec0f 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,11 @@ +HTTP-4000.0.9.tar.gz +/HTTP-4000.1.0.tar.gz +/HTTP-4000.1.1.tar.gz +/HTTP-4000.1.2.tar.gz +/HTTP-4000.2.2.tar.gz +/HTTP-4000.2.8.tar.gz +/HTTP-4000.2.10.tar.gz +/HTTP-4000.2.20.tar.gz +/HTTP-4000.3.3.tar.gz +/HTTP-4000.3.5.tar.gz /HTTP-4000.3.9.tar.gz diff --git a/gating.yaml b/gating.yaml new file mode 100644 index 0000000..6985029 --- /dev/null +++ b/gating.yaml @@ -0,0 +1,6 @@ +--- !Policy +product_versions: + - rhel-8 +decision_context: osci_compose_gate +rules: + - !PassingTestCaseRule {test_case_name: osci.brew-build.tier0.functional} diff --git a/tests/tests.yml b/tests/tests.yml new file mode 100644 index 0000000..27792e3 --- /dev/null +++ b/tests/tests.yml @@ -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 +...