From 0c345ec6b2db80b0517e4a63b8eb55333948fcbf Mon Sep 17 00:00:00 2001 From: Pavel Raiskup Date: Sun, 26 Oct 2014 19:50:49 +0100 Subject: controller: new perl wrapper Controller is able to read simple YAML configuration file with list of task to be performed in parallel (the task actually are run the testsuite remotely, commit results to DB, count statistics and upload results). * controller/bin/dtf-controller.in: New template for binary. * controller/libexec/dtf-commit-results.in: Copy whole result directory instead of 'dtf' subdir only. * controller/.gitignore: Ignore new binary. * controller/Makefile.am: Build dtf-commit-results. --- controller/Makefile.am | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'controller/Makefile.am') diff --git a/controller/Makefile.am b/controller/Makefile.am index 9fecd61..80ecb63 100644 --- a/controller/Makefile.am +++ b/controller/Makefile.am @@ -1,4 +1,7 @@ -bin_SCRIPTS = bin/dtf-run-remote bin/dtf-get-machine +bin_SCRIPTS = \ + bin/dtf-run-remote \ + bin/dtf-get-machine \ + bin/dtf-controller sysconf_DATA = etc/dtf.sh @@ -38,6 +41,9 @@ bin/dtf-run-remote: bin/dtf-run-remote.in .dep bin/dtf-get-machine: bin/dtf-get-machine.in .dep $(INSTANTIATE_SCRIPT) +bin/dtf-controller: bin/dtf-controller.in .dep + $(INSTANTIATE_SCRIPT) + etc/dtf.sh: etc/dtf.sh.in .dep $(INSTANTIATE) -- cgit