Compare commits
No commits in common. "c8" and "c8s" have entirely different histories.
3
.gitignore
vendored
3
.gitignore
vendored
@ -1 +1,2 @@
|
||||
SOURCES/libdatrie-0.2.9.tar.xz
|
||||
/libdatrie-0.2.8.tar.xz
|
||||
/libdatrie-0.2.9.tar.xz
|
||||
|
@ -1 +0,0 @@
|
||||
d1e14729d950a0a2a484d768cf9eeebaa20f998e SOURCES/libdatrie-0.2.9.tar.xz
|
7
gating.yaml
Normal file
7
gating.yaml
Normal 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
1
sources
Normal file
@ -0,0 +1 @@
|
||||
SHA512 (libdatrie-0.2.9.tar.xz) = eb5645a0c87ef35200feee78ddebe8a347f216c52b671b7544231e89c92a9887930a32ab747e9b68a6931cffa77f4b81f96096b1dcad1d2fd4085bf16a2547e4
|
18
tests/make_check.sh
Normal file
18
tests/make_check.sh
Normal file
@ -0,0 +1,18 @@
|
||||
#!/bin/bash
|
||||
|
||||
set -x
|
||||
|
||||
check_return_value () {
|
||||
if [ $1 != 0 ] ; then
|
||||
exit $1
|
||||
fi
|
||||
}
|
||||
|
||||
cd $1
|
||||
autoreconf -f -i -v
|
||||
./configure --prefix=/usr
|
||||
check_return_value $?
|
||||
make
|
||||
check_return_value $?
|
||||
make check
|
||||
exit $?
|
20
tests/tests.yml
Normal file
20
tests/tests.yml
Normal file
@ -0,0 +1,20 @@
|
||||
- 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
|
||||
- autoconf
|
||||
- automake
|
||||
- libtool
|
||||
- doxygen
|
||||
tests:
|
||||
- make-check:
|
||||
dir: ./
|
||||
run: bash ./make_check.sh ./source
|
Loading…
Reference in New Issue
Block a user