Convert merge|verify|sonar job to regular jjb template
[releng/builder.git] / scripts / jjb-init-project.py
index 8b891f18d4bec1a124027eea816430e18a49d45f..b878f8e4be5a6d77b545bab7f47d598bdcb1c736 100644 (file)
@@ -57,9 +57,7 @@ if os.path.isfile(project_conf):
 if cfg.get("JOB_TEMPLATES"):
     templates = cfg.get("JOB_TEMPLATES")
 else:
-    templates = (
-        "verify,merge,"
-        "sonar")
+    templates = ("")
 
 ##################
 # Handle Streams #
@@ -156,12 +154,7 @@ if dependencies:
 # Handle ARCHIVE_ARTIFACTS #
 ############################
 
-always_archive = "**/target/surefire-reports/*-output.txt"
-
 archive_artifacts = cfg.get('ARCHIVE_ARTIFACTS', '')
-archive_artifacts = ("- archive-artifacts:\n"
-                     "            artifacts: '%s, %s'" %
-                     (always_archive, archive_artifacts))
 
 ##############################
 # Create configuration start #