Update to trex job to build from trex repo 78/3978/1
authorEd Warnicke <eaw@cisco.com>
Mon, 28 Nov 2016 14:44:14 +0000 (08:44 -0600)
committerEd Warnicke <eaw@cisco.com>
Mon, 28 Nov 2016 14:44:14 +0000 (08:44 -0600)
Change-Id: I2a619c74d1318447f6e64e0fbc6e9b46889b146d
Signed-off-by: Ed Warnicke <eaw@cisco.com>
jjb/trex/include-raw-trex-build.sh
jjb/trex/trex.yaml

index 24049ac..4fe22b5 100644 (file)
@@ -1,53 +1,26 @@
 #!/bin/bash -ex
 
-# emulate unique name for now
-GERRIT_NEWREV=hash`date +%s%N`
-WS=${PWD}/$GERRIT_NEWREV
-
-#  temporary don't fail
-set +e
-
-function clean_ws {
-    rm -rf "$WS"
-}
-trap clean_ws EXIT
-
-echo "$WS"
-clean_ws
-mkdir "$WS"
-cd "$WS"
-
-# cloning
-
-git clone https://github.com/cisco-system-traffic-generator/trex-core.git
-git clone https://github.com/cisco-system-traffic-generator/trex-doc.git
-ls -l
-
 # building core
 
-cd trex-core/linux_dpdk
+cd linux_dpdk
 ./b configure
 ./b build
 cd -
 
-cd trex-core/linux
+cd linux
 ./b configure
 ./b build
 cd -
 
-which asciidoc
-which sphinx-build
-which dblatex
-which python
-which python3
-which pip
-
 # building docs
+# Commented out to trex-docs is integrated into trex repo
 
-cd trex-doc
-./b configure
-./b build
-cd -
+#cd trex-doc
+#./b configure
+#./b build
+#cd -
 
-echo Done
+echo "*******************************************************************"
+echo "* TREX BUILD SUCCESSFULLY COMPLETED"
+echo "*******************************************************************"
 
index 21863c6..065f051 100644 (file)
@@ -2,6 +2,7 @@
     name: trex
     jobs:
         - 'trex-verify-{stream}-{os}'
+        - 'trex-merge-{stream}-{os}'
 
     project: 'trex'
     os:
     concurrent: true
 
     logrotate:
-      artifactDaysToKeep: '-1'
-      artifactNumToKeep: '-1'
-      daysToKeep: '30'
-      numToKeep: '100'
+        daysToKeep: '{build-days-to-keep}'
+        numToKeep: '{build-num-to-keep}'
+        artifactDaysToKeep: '{build-artifact-days-to-keep}'
+        artifactNumToKeep: '{build-artifact-num-to-keep}'
 
     parameters:
         - project-parameter:
             branch: '{branch}'
         - os-parameter:
             os: '{os}'
+
+    scm:
+        - gerrit-trigger-scm:
+            credentials-id: 'jenkins-gerrit-credentials'
+            refspec: '$GERRIT_REFSPEC'
+            choosing-strategy: 'gerrit'
+
+    wrappers:
+      - fdio-infra-wrappers:
+          build-timeout: '{build-timeout}'
+
+    triggers:
+        - gerrit-trigger-patch-submitted:
+            name: '{project}'
+            branch: '{branch}'
+
+    builders:
+        - shell:
+            !include-raw-escape: include-raw-trex-build.sh
+
+- job-template:
+    name: 'trex-merge-{stream}-{os}'
+
+    project-type: freestyle
+    node: 'verify-{os}'
+    concurrent: true
+
+    logrotate:
+        daysToKeep: '{build-days-to-keep}'
+        numToKeep: '{build-num-to-keep}'
+        artifactDaysToKeep: '{build-artifact-days-to-keep}'
+        artifactNumToKeep: '{build-artifact-num-to-keep}'
+
+    parameters:
+        - project-parameter:
+            project: '{project}'
+        - gerrit-parameter:
+            branch: '{branch}'
+        - os-parameter:
+            os: '{os}'
+
+    scm:
+        - gerrit-trigger-scm:
+            credentials-id: 'jenkins-gerrit-credentials'
+            refspec: '$GERRIT_REFSPEC'
+            choosing-strategy: 'gerrit'
+
     wrappers:
       - fdio-infra-wrappers:
           build-timeout: '{build-timeout}'
 
     triggers:
-        - timed: H */6 * * *
+        - gerrit-trigger-patch-merged:
+            name: '{project}'
+            branch: '{branch}'
 
     builders:
         - shell:
             !include-raw-escape: include-raw-trex-build.sh
 
-    description: "!!! Playground to verify that TRex and docs can be built. !!!\r\n\
-        \r\n\
-        TODO:\r\n\
-        1) merge doc and core repos\r\n\
-        2) replace pull from github by fd.io gerrit with triggering\r\n\
-        3) add a real regression\r\n\r\n"
+