7317bbbf50
Cukinia is a test framework designed to help Linux-based embedded systems developers run simple system-level validation tests on their firmware. It is designed to integrate well with embedded Linux systems generation tools, and can be run manually (providing a quick colourized summary to eye-catch regressions), or any of continuous available integration framework, by generating Junit-XML or CSV test reports. Signed-off-by: Jérôme Oufella <jerome.oufella@savoirfairelinux.com> Signed-off-by: Shyam Saini <shyam.saini@savoirfairelinux.com> Tested-by: Angelo Compagnucci <angelo@amarulasolutions.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
19 lines
596 B
Makefile
19 lines
596 B
Makefile
################################################################################
|
|
#
|
|
# cukinia
|
|
#
|
|
################################################################################
|
|
|
|
CUKINIA_VERSION = 0.5.1
|
|
CUKINIA_SITE = $(call github,savoirfairelinux,cukinia,v$(CUKINIA_VERSION))
|
|
CUKINIA_LICENSE = Apache-2.0 or GPL-3.0
|
|
CUKINIA_LICENSE_FILES = LICENSE LICENSE.GPLv3
|
|
|
|
define CUKINIA_INSTALL_TARGET_CMDS
|
|
$(INSTALL) -D -m 0755 $(@D)/cukinia $(TARGET_DIR)/usr/bin/cukinia
|
|
$(INSTALL) -D -m 0644 $(CUKINIA_PKGDIR)/cukinia.conf \
|
|
$(TARGET_DIR)/etc/cukinia/cukinia.conf
|
|
endef
|
|
|
|
$(eval $(generic-package))
|