Add RHEL gating test

(cherry picked from commit e00b4bbeaa7fe421331f0e52cdc6a10039f7c7b6)
This commit is contained in:
Richard W.M. Jones 2024-06-19 08:39:08 +01:00
parent e1e2e0989b
commit 2e4ce3e749
3 changed files with 27 additions and 0 deletions

6
gating.yaml Executable file
View File

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

8
tests/basic-test.sh Executable file
View File

@ -0,0 +1,8 @@
#!/bin/bash -
set -e
set -x
# Compile trivial calendar program.
echo 'CalendarLib.Calendar.Period.make 0 0 0 1 0 0' > caltest.ml
ocamlfind ocamlopt -package calendar caltest.ml -linkpkg -o caltest
./caltest

13
tests/tests.yml Executable file
View File

@ -0,0 +1,13 @@
- hosts: localhost
roles:
- role: standard-test-basic
tags:
- classic
required_packages:
- ocaml
- ocaml-findlib
- ocaml-calendar-devel
tests:
- simple:
dir: .
run: ./basic-test.sh