Advertisement
Guest User

param_xml

a guest
Jul 6th, 2015
236
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.32 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <cruise xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="cruise-config.xsd" schemaVersion="75">
  3.   <server artifactsdir="artifacts" commandRepositoryLocation="default" serverId="9ba71800-737a-466e-a421-44d721de6746" />
  4.   <pipelines group="defaultGroup">
  5.     <pipeline name="pipeline1" labeltemplate="${material_name_1}" isLocked="false">
  6.       <params>
  7.         <param name="my_param">2</param>
  8.       </params>
  9.       <materials>
  10.         <git url="/Users/poojar/testRepos/gitRepo" dest="dest_dir" materialName="material_name_1" />
  11.         <git url="https://github.com/chopraapooja/git-spike" dest="abc" materialName="material_name_2" />
  12.         <pipeline pipelineName="simple" stageName="defaultStage" materialName="simple_material" />
  13.       </materials>
  14.       <stage name="up42_stage">
  15.         <jobs>
  16.           <job name="up42_job">
  17.             <tasks>
  18.               <exec command="ls" />
  19.             </tasks>
  20.           </job>
  21.         </jobs>
  22.       </stage>
  23.     </pipeline>
  24.     <pipeline name="pipeline2" labeltemplate="${material_name_1[:1]}${material_name_2[:10]}" isLocked="false">
  25.       <materials>
  26.         <git url="/Users/poojar/testRepos/gitRepo" dest="dest_dir" materialName="material_name_1" />
  27.         <git url="https://github.com/chopraapooja/git-spike" dest="abc" materialName="material_name_2" />
  28.       </materials>
  29.       <stage name="up42_stage">
  30.         <jobs>
  31.           <job name="up42_job">
  32.             <tasks>
  33.               <exec command="ls" />
  34.             </tasks>
  35.           </job>
  36.         </jobs>
  37.       </stage>
  38.     </pipeline>
  39.     <pipeline name="simple">
  40.       <params>
  41.         <param name="my_param">poojaguda</param>
  42.       </params>
  43.       <materials>
  44.         <git url="/Users/poojar/testRepos/gitRepo" />
  45.       </materials>
  46.       <stage name="defaultStage">
  47.         <jobs>
  48.           <job name="defaultJob">
  49.             <tasks>
  50.               <exec command="ls" />
  51.             </tasks>
  52.           </job>
  53.         </jobs>
  54.       </stage>
  55.     </pipeline>
  56.   </pipelines>
  57.   <agents>
  58.     <agent hostname="Godev2" ipaddress="10.4.0.148" uuid="f7ded767-a62d-4f95-9c29-3af9c951b813" isDisabled="true" />
  59.     <agent hostname="INpoojar.local" ipaddress="10.4.20.123" uuid="d432a7d2-3227-4430-a817-d743a912e237" />
  60.   </agents>
  61. </cruise>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement