Compare commits
2 Commits
6dbcf545e4
...
7350e8ca77
Author | SHA1 | Date | |
---|---|---|---|
|
7350e8ca77 | ||
|
884e9fffe7 |
6
gating.yaml
Executable file
6
gating.yaml
Executable file
@ -0,0 +1,6 @@
|
|||||||
|
--- !Policy
|
||||||
|
product_versions:
|
||||||
|
- rhel-*
|
||||||
|
decision_context: osci_compose_gate
|
||||||
|
rules:
|
||||||
|
- !PassingTestCaseRule {test_case_name: osci.brew-build.tier0.functional}
|
@ -3,7 +3,7 @@ ExcludeArch: %{ix86}
|
|||||||
|
|
||||||
Name: ocaml-libvirt
|
Name: ocaml-libvirt
|
||||||
Version: 0.6.1.7
|
Version: 0.6.1.7
|
||||||
Release: 10%{?dist}
|
Release: 11%{?dist}
|
||||||
Summary: OCaml binding for libvirt
|
Summary: OCaml binding for libvirt
|
||||||
License: LGPL-2.1-or-later
|
License: LGPL-2.1-or-later
|
||||||
|
|
||||||
@ -78,6 +78,9 @@ make install
|
|||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Wed Jun 19 2024 Richard W.M. Jones <rjones@redhat.com> - 0.6.1.7-11
|
||||||
|
- OCaml 5.2.0 ppc64le fix
|
||||||
|
|
||||||
* Wed May 29 2024 Richard W.M. Jones <rjones@redhat.com> - 0.6.1.7-10
|
* Wed May 29 2024 Richard W.M. Jones <rjones@redhat.com> - 0.6.1.7-10
|
||||||
- OCaml 5.2.0 for Fedora 41
|
- OCaml 5.2.0 for Fedora 41
|
||||||
|
|
||||||
|
8
tests/basic-test.sh
Executable file
8
tests/basic-test.sh
Executable file
@ -0,0 +1,8 @@
|
|||||||
|
#!/bin/bash -
|
||||||
|
set -e
|
||||||
|
set -x
|
||||||
|
|
||||||
|
# Compile trivial libvirt program.
|
||||||
|
echo 'print_endline Libvirt_version.version' > virttest.ml
|
||||||
|
ocamlfind ocamlopt -package libvirt virttest.ml -linkpkg -o virttest
|
||||||
|
./virttest
|
13
tests/tests.yml
Executable file
13
tests/tests.yml
Executable file
@ -0,0 +1,13 @@
|
|||||||
|
- hosts: localhost
|
||||||
|
roles:
|
||||||
|
- role: standard-test-basic
|
||||||
|
tags:
|
||||||
|
- classic
|
||||||
|
required_packages:
|
||||||
|
- ocaml
|
||||||
|
- ocaml-findlib
|
||||||
|
- ocaml-libvirt-devel
|
||||||
|
tests:
|
||||||
|
- simple:
|
||||||
|
dir: .
|
||||||
|
run: ./basic-test.sh
|
Loading…
Reference in New Issue
Block a user