Add a dummy job to verify checkins to the routing tree

Change-Id: I1c8faf984719f5843ee2194f0cd39b073bdeff3c
diff --git a/jjb/routing/routing-verify.sh b/jjb/routing/routing-verify.sh
new file mode 100644
index 0000000..5abdf30
--- /dev/null
+++ b/jjb/routing/routing-verify.sh
@@ -0,0 +1,6 @@
+#!/bin/bash
+
+# exit on errors
+set -eu -o pipefail
+
+true
diff --git a/jjb/routing/routing-verify.yaml b/jjb/routing/routing-verify.yaml
new file mode 100644
index 0000000..218855d
--- /dev/null
+++ b/jjb/routing/routing-verify.yaml
@@ -0,0 +1,111 @@
+---
+
+- routing_job_boiler_plate: &routing_job_boiler_plate
+    name: job-boiler-plate
+
+    project-type: freestyle
+    node: '{build-node}'
+
+    ######################
+    # Default parameters #
+    ######################
+
+    branch: master
+    submodule-recursive: true
+    git-url: '$GIT_URL/$GERRIT_PROJECT'
+
+    #####################
+    # Job Configuration #
+    #####################
+
+    properties:
+      - lf-infra-properties:
+          project: '{project}'
+          build-days-to-keep: '{build-days-to-keep}'
+      #- github:
+      #    url: '{git-url}/{github-org}/{project}'
+
+    parameters:
+      - lf-infra-parameters:
+          project: '{project}'
+          branch: '{stream}'
+          stream: '{stream}'
+          lftools-version: '{lftools-version}'
+
+    wrappers:
+      - lf-infra-wrappers:
+          build-timeout: '{build-timeout}'
+          jenkins-ssh-credential: '{jenkins-ssh-credential}'
+
+
+- routing_verify_boiler_plate: &routing_verify_boiler_plate
+    name: routing_verify_boiler_plate
+
+    concurrent: true
+
+    scm:
+      - lf-infra-gerrit-scm:
+          git-url: '{git-url}'
+          refspec: '$GERRIT_REFSPEC'
+          branch: '$GERRIT_BRANCH'
+          submodule-recursive: '{submodule-recursive}'
+          choosing-strategy: gerrit
+          jenkins-ssh-credential: '{jenkins-ssh-credential}'
+
+    triggers:
+      - gerrit:
+         #server-name: '{gerrit-server-name}'
+         server-name: 'ONOS Project Gerrit'
+         #trigger-on: '{obj:gerrit_verify_triggers}'
+         trigger-on:
+           - patchset-created-event:
+               exclude-drafts: true
+               exclude-trivial-rebase: false
+               exclude-no-code-change: true
+           - draft-published-event: true
+           - comment-added-contains-event:
+               comment-contains-value: '(?i)^.*recheck$'
+         projects:
+           - project-compare-type: PLAIN
+             project-pattern: '{project}'
+             branches:
+               - branch-compare-type: ANT
+                 branch-pattern: '**/{stream}'
+             #file-paths: '{obj:gerrit_trigger_file_paths}'
+
+
+- job-template:
+    #default name is global
+    name: '{project-name}-{stream}-routing-verify'
+
+    # Job template for Java verify jobs
+    #
+    # The purpose of this job templte is to run "maven clean install" for
+    # projects using this template.
+    #
+    # Required Variables:
+    #    branch:   git branch (eg. master)
+
+    <<: *routing_job_boiler_plate
+    # yamllint disable-line rule:key-duplicates
+    <<: *routing_verify_boiler_plate
+
+    builders:
+    #put shell scripts in file then make sure shell check is installed on verify vms
+      - shell: !include-raw-escape: routing-verify.sh
+
+- project:
+    name: routing
+    project-name: routing
+    project: routing
+
+    build-timeout: '30'
+    build-node: 'ubuntu16.04-basebuild-8c-15g'
+
+    stream:
+      - 'master'
+
+    jobs:
+      - '{project-name}-{stream}-routing-verify'
+
+