Compare commits

...

No commits in common. "5448d1b00ad427d043237ca5c6d8e78970ac2ec4" and "7f7428aace00694fa894f666bbc2f890d3a43f4c" have entirely different histories.

11 changed files with 45 additions and 2 deletions

2
.gitignore vendored
View File

@ -1 +1 @@
SOURCES/kyotocabinet-1.2.76.tar.gz
kyotocabinet-1.2.??.tar.gz

View File

@ -1 +0,0 @@
a4ec70d08ca6c8f510dbc329d5c27b55030d3521 SOURCES/kyotocabinet-1.2.76.tar.gz

7
gating.yaml Normal file
View File

@ -0,0 +1,7 @@
--- !Policy
product_versions:
- rhel-8
decision_context: osci_compose_gate
rules:
# this is the testcase identifier, which OSCI pipeline uses
- !PassingTestCaseRule {test_case_name: osci.brew-build.tier0.functional}

1
sources Normal file
View File

@ -0,0 +1 @@
SHA512 (kyotocabinet-1.2.76.tar.gz) = 278db7b327eb4c21bf0137d9aa14fb67d74d5ce7ed1cb29fc9120d157a60de165ec0cf842903eb7952e8f998045ae585b958977fa973ba0e0773381de71d9f6a

17
tests/make_check.sh Normal file
View File

@ -0,0 +1,17 @@
#!/bin/bash
set -x
check_return_value () {
if [ $1 != 0 ] ; then
exit $1
fi
}
cd $1
./configure --prefix=/usr --disable-opt --enable-lzo --enable-lzma
check_return_value $?
make
check_return_value $?
make check
exit $?

19
tests/tests.yml Normal file
View File

@ -0,0 +1,19 @@
- hosts: localhost
vars:
- artifacts: "{{ lookup('env', 'TEST_ARTIFACTS')|default('./artifacts', true) }}"
tags:
- classic
remote_user: root
roles:
- role: standard-test-source # to get the source tar ball to do “make check”
- role: standard-test-basic
required_packages:
- make
- gcc-c++
- zlib-devel
- lzo-devel
- xz-devel
tests:
- make-check:
dir: ./
run: bash ./make_check.sh ./source