re-import sources as agreed with the maintainer
This commit is contained in:
parent
124d6401ed
commit
c8a9668d46
1
.gitignore
vendored
1
.gitignore
vendored
@ -1 +1,2 @@
|
|||||||
|
/libdatrie-0.2.8.tar.xz
|
||||||
/libdatrie-0.2.9.tar.xz
|
/libdatrie-0.2.9.tar.xz
|
||||||
|
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