From 473297022c5d943e5a765c9f2a05f2893c53bbfc Mon Sep 17 00:00:00 2001 From: Parag Nemade Date: Thu, 30 Apr 2020 21:13:05 +0530 Subject: [PATCH] Added CI tests script Signed-off-by: Parag Nemade --- tests/smoke/runtest.sh | 10 ++++++++++ tests/tests.yml | 26 ++++++++++++++++++++++++++ 2 files changed, 36 insertions(+) create mode 100644 tests/smoke/runtest.sh create mode 100644 tests/tests.yml diff --git a/tests/smoke/runtest.sh b/tests/smoke/runtest.sh new file mode 100644 index 0000000..2718883 --- /dev/null +++ b/tests/smoke/runtest.sh @@ -0,0 +1,10 @@ +#!/bin/bash +cd ../source + +echo "---Start autogen.sh---" +NOCONFIGURE=1 ./autogen.sh +echo "---End autogen.sh---" +echo "--------------------" + +./configure --disable-static --with-gtk=3.0 +make check diff --git a/tests/tests.yml b/tests/tests.yml new file mode 100644 index 0000000..05b064e --- /dev/null +++ b/tests/tests.yml @@ -0,0 +1,26 @@ +--- +- hosts: localhost + tags: + - classic + roles: + - role: standard-test-source + +- hosts: localhost + tags: + - classic + roles: + - role: standard-test-basic + tests: + - smoke + required_packages: + - gcc + - make + - gnome-common + - autoconf + - automake + - gettext-devel + - ibus-devel + - gtk3-devel + - pkgconfig + - libtool + - m17n-lib-devel