[CORD-3256] Generate TT/TP community test job.

jjb/voltha-test/voltha.yaml
jjb/voltha-test/voltha-nightly-jobs.yaml
----------------------------------------
  - First attempt at cloning a voltha pipeline job from DT to TT.
  - Add a few placeholders for future work to split yaml configs
    into a more modular setup.

Makefile
config.mk
makefiles/lint/groovy.mk
makefiles/lint/yaml.mk
makefiles/virtualenv.mk
------------------------
  - Copy in makefile libraries from repo::voltha-docs.
  - lint/yaml and lint/groovy.

Misc / Fixes
------------
  - Fixed colorization in tree output.
  - Comment out jjb import in requirements.txt, Makefile still configured to use an older version.
  - Move README.md outside jjb/ lf-env scripts blindly grep for error patterns beneath jjb/

Change-Id: I36e304f6ca9d54dc26fa5d36b17373cbb00f5afd
diff --git a/jjb/pipeline/voltha/makefile b/jjb/pipeline/voltha/makefile
new file mode 100644
index 0000000..a3cb9b0
--- /dev/null
+++ b/jjb/pipeline/voltha/makefile
@@ -0,0 +1,14 @@
+# -*- makefile -*-
+
+version += master
+version += voltha-2.11
+version += voltha-2.8
+version += playground
+
+all: $(version)
+
+$(version):
+	mkdir -p $(version)
+	rsync -rv --checksum master/. $@/.
+
+# [EOF]