Add CI tests

This commit is contained in:
Peng Wu 2021-06-25 13:56:34 +08:00
parent 71404fd99d
commit 482e1c55d0
2 changed files with 39 additions and 0 deletions

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 --with-dbm=BerkeleyDB --enable-libzhuyin
check_return_value $?
make
check_return_value $?
make check
exit $?

22
tests/tests.yml Normal file
View File

@ -0,0 +1,22 @@
- 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++
- autoconf
- automake
- libtool
- gettext-devel
- glib2-devel
- libdb-devel
tests:
- make-check:
dir: ./
run: bash ./make_check.sh ./source