Migrate yangide matrix-verify jobs to freestyle-verify jobs
[releng/builder.git] / scripts / jjb-init-project.py
index 2595e38594822b433aa5ed49a0ab80f151f28488..b878f8e4be5a6d77b545bab7f47d598bdcb1c736 100644 (file)
@@ -57,11 +57,7 @@ if os.path.isfile(project_conf):
 if cfg.get("JOB_TEMPLATES"):
     templates = cfg.get("JOB_TEMPLATES")
 else:
-    templates = (
-        "verify,merge,periodic,distribution,distribution-check,integration,"
-        "sonar")
-templates += ",clm"  # ensure we always create a clm job for all projects
-templates += ",validate-autorelease"  # Autorelease validate template
+    templates = ("")
 
 ##################
 # Handle Streams #
@@ -123,7 +119,6 @@ if cfg.get('MVN_GOALS'):
     mvn_goals = cfg.get('MVN_GOALS')
 else:
     mvn_goals = ("clean install "
-                 "-V "  # Show Maven / Java version before building
                  "-Dmaven.repo.local=/tmp/r "
                  "-Dorg.ops4j.pax.url.mvn.localRepository=/tmp/r ")
 
@@ -159,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 #