X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=scripts%2Fjjb-init-project.py;h=b878f8e4be5a6d77b545bab7f47d598bdcb1c736;hb=52531a89be8661dee7ecc0289afed7c5fe51ade9;hp=2595e38594822b433aa5ed49a0ab80f151f28488;hpb=1114f8438f0925d7d586ceb8e5f9b4e55b9f2363;p=releng%2Fbuilder.git diff --git a/scripts/jjb-init-project.py b/scripts/jjb-init-project.py index 2595e3859..b878f8e4b 100644 --- a/scripts/jjb-init-project.py +++ b/scripts/jjb-init-project.py @@ -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 #