Moved location of pipelines and setup script
This commit is contained in:
@@ -0,0 +1,145 @@
|
||||
<?xml version='1.1' encoding='UTF-8'?>
|
||||
<flow-build plugin="[email protected]">
|
||||
<actions>
|
||||
<hudson.model.CauseAction>
|
||||
<causeBag class="linked-hash-map">
|
||||
<entry>
|
||||
<hudson.model.Cause_-UserIdCause>
|
||||
<userId>admin</userId>
|
||||
</hudson.model.Cause_-UserIdCause>
|
||||
<int>1</int>
|
||||
</entry>
|
||||
</causeBag>
|
||||
</hudson.model.CauseAction>
|
||||
<org.jenkinsci.plugins.workflow.libs.LibrariesAction plugin="[email protected]_9c54906d">
|
||||
<libraries/>
|
||||
</org.jenkinsci.plugins.workflow.libs.LibrariesAction>
|
||||
<org.jenkinsci.plugins.pipeline.modeldefinition.actions.ExecutionModelAction plugin="[email protected]_721309">
|
||||
<stagesUUID>3176a7fb-a491-49a0-baaa-4829a66f18d9</stagesUUID>
|
||||
<pipelineDefs>
|
||||
<org.jenkinsci.plugins.pipeline.modeldefinition.ast.ModelASTPipelineDef plugin="[email protected]_721309">
|
||||
<stages>
|
||||
<stages>
|
||||
<org.jenkinsci.plugins.pipeline.modeldefinition.ast.ModelASTStage>
|
||||
<name>Hello</name>
|
||||
<branches>
|
||||
<org.jenkinsci.plugins.pipeline.modeldefinition.ast.ModelASTBranch>
|
||||
<name>default</name>
|
||||
<steps>
|
||||
<org.jenkinsci.plugins.pipeline.modeldefinition.ast.ModelASTStep>
|
||||
<name>echo</name>
|
||||
<args class="org.jenkinsci.plugins.pipeline.modeldefinition.ast.ModelASTNamedArgumentList">
|
||||
<arguments class="linked-hash-map">
|
||||
<entry>
|
||||
<org.jenkinsci.plugins.pipeline.modeldefinition.ast.ModelASTKey>
|
||||
<key>message</key>
|
||||
</org.jenkinsci.plugins.pipeline.modeldefinition.ast.ModelASTKey>
|
||||
<org.jenkinsci.plugins.pipeline.modeldefinition.ast.ModelASTValue_-ConstantValue>
|
||||
<value class="string">Hello</value>
|
||||
</org.jenkinsci.plugins.pipeline.modeldefinition.ast.ModelASTValue_-ConstantValue>
|
||||
</entry>
|
||||
</arguments>
|
||||
</args>
|
||||
</org.jenkinsci.plugins.pipeline.modeldefinition.ast.ModelASTStep>
|
||||
<org.jenkinsci.plugins.pipeline.modeldefinition.ast.ModelASTStep>
|
||||
<name>sleep</name>
|
||||
<args class="org.jenkinsci.plugins.pipeline.modeldefinition.ast.ModelASTNamedArgumentList">
|
||||
<arguments class="linked-hash-map">
|
||||
<entry>
|
||||
<org.jenkinsci.plugins.pipeline.modeldefinition.ast.ModelASTKey>
|
||||
<key>time</key>
|
||||
</org.jenkinsci.plugins.pipeline.modeldefinition.ast.ModelASTKey>
|
||||
<org.jenkinsci.plugins.pipeline.modeldefinition.ast.ModelASTValue_-ConstantValue>
|
||||
<value class="int">80</value>
|
||||
</org.jenkinsci.plugins.pipeline.modeldefinition.ast.ModelASTValue_-ConstantValue>
|
||||
</entry>
|
||||
</arguments>
|
||||
</args>
|
||||
</org.jenkinsci.plugins.pipeline.modeldefinition.ast.ModelASTStep>
|
||||
<org.jenkinsci.plugins.pipeline.modeldefinition.ast.ModelASTStep>
|
||||
<name>echo</name>
|
||||
<args class="org.jenkinsci.plugins.pipeline.modeldefinition.ast.ModelASTNamedArgumentList">
|
||||
<arguments class="linked-hash-map">
|
||||
<entry>
|
||||
<org.jenkinsci.plugins.pipeline.modeldefinition.ast.ModelASTKey>
|
||||
<key>message</key>
|
||||
</org.jenkinsci.plugins.pipeline.modeldefinition.ast.ModelASTKey>
|
||||
<org.jenkinsci.plugins.pipeline.modeldefinition.ast.ModelASTValue_-ConstantValue>
|
||||
<value class="string">world</value>
|
||||
</org.jenkinsci.plugins.pipeline.modeldefinition.ast.ModelASTValue_-ConstantValue>
|
||||
</entry>
|
||||
</arguments>
|
||||
</args>
|
||||
</org.jenkinsci.plugins.pipeline.modeldefinition.ast.ModelASTStep>
|
||||
</steps>
|
||||
</org.jenkinsci.plugins.pipeline.modeldefinition.ast.ModelASTBranch>
|
||||
</branches>
|
||||
</org.jenkinsci.plugins.pipeline.modeldefinition.ast.ModelASTStage>
|
||||
</stages>
|
||||
<uuid>3176a7fb-a491-49a0-baaa-4829a66f18d9</uuid>
|
||||
</stages>
|
||||
<agent>
|
||||
<agentType>
|
||||
<key>any</key>
|
||||
</agentType>
|
||||
</agent>
|
||||
</org.jenkinsci.plugins.pipeline.modeldefinition.ast.ModelASTPipelineDef>
|
||||
</pipelineDefs>
|
||||
</org.jenkinsci.plugins.pipeline.modeldefinition.actions.ExecutionModelAction>
|
||||
</actions>
|
||||
<queueId>25</queueId>
|
||||
<timestamp>1659738962385</timestamp>
|
||||
<startTime>1659738962399</startTime>
|
||||
<result>SUCCESS</result>
|
||||
<duration>314185</duration>
|
||||
<charset>UTF-8</charset>
|
||||
<keepLog>false</keepLog>
|
||||
<execution class="org.jenkinsci.plugins.workflow.cps.CpsFlowExecution">
|
||||
<result>SUCCESS</result>
|
||||
<script>pipeline {
|
||||
agent any
|
||||
|
||||
stages {
|
||||
stage('Hello') {
|
||||
steps {
|
||||
echo 'Hello'
|
||||
sleep 80
|
||||
echo 'world'
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
<loadedScripts class="map"/>
|
||||
<durabilityHint>MAX_SURVIVABILITY</durabilityHint>
|
||||
<timings class="concurrent-hash-map">
|
||||
<entry>
|
||||
<string>flowNode</string>
|
||||
<long>416845129</long>
|
||||
</entry>
|
||||
<entry>
|
||||
<string>classLoad</string>
|
||||
<long>121342402</long>
|
||||
</entry>
|
||||
<entry>
|
||||
<string>run</string>
|
||||
<long>895619666</long>
|
||||
</entry>
|
||||
<entry>
|
||||
<string>parse</string>
|
||||
<long>12289229</long>
|
||||
</entry>
|
||||
<entry>
|
||||
<string>saveProgram</string>
|
||||
<long>178249778</long>
|
||||
</entry>
|
||||
</timings>
|
||||
<sandbox>true</sandbox>
|
||||
<iota>14</iota>
|
||||
<head>1:14</head>
|
||||
<done>true</done>
|
||||
<resumeBlocked>false</resumeBlocked>
|
||||
</execution>
|
||||
<completed>true</completed>
|
||||
<checkouts class="hudson.util.PersistedList"/>
|
||||
</flow-build>
|
||||
@@ -0,0 +1,21 @@
|
||||
Started by user [8mha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=[0mBegona Guereca
|
||||
[8mha:////4HTsYlfm8yzA10Ef1InFhY6wDKShISv2+989tkXDACMCAAAAoh+LCAAAAAAAAP9tjTEOwjAQBM8BClpKHuFItIiK1krDC0x8GCfWnbEdkooX8TX+gCESFVvtrLSa5wtWKcKBo5UdUu8otU4GP9jS5Mixv3geZcdn2TIl9igbHBs2eJyx4YwwR1SwULBGaj0nRzbDRnX6rmuvydanHMu2V1A5c4MHCFXMWcf8hSnC9jqYxPTz/BXAFEIGsfuclm8zQVqFvQAAAA==[0m[Pipeline] Start of Pipeline
|
||||
[8mha:////4H5s9Y19xkL2dUDNzO/+l2xHfqEtID+gVe/XH1A7EJBzAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycohUghExsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jduZBmjwAAAAA==[0m[Pipeline] node
|
||||
Still waiting to schedule task
|
||||
Waiting for next available executor
|
||||
Running on [8mha:////4AIjV8zxOhwEh8zECkJglj4JjKJpg9vR0QIy8O3BR1+WAAAAoR+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAz2EgZR/eT83ILSktQifY2k0sycEt3MPE19AHHxbH3KAAAA[0mJenkins in /var/jenkins_home/workspace/test_pipeline@2
|
||||
[8mha:////4I/cUPga8caY06bZpyrxZ/t2HhO12t4dn/zQlsAr7adIAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0gA0xsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jfoP95RwAAAAA==[0m[Pipeline] {
|
||||
[8mha:////4PdwHgvy7xLtbIjfVmcQJcTvK9hoFBN5c85nsNtWXAtjAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0gQkxsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jc09154wAAAAA==[0m[Pipeline] stage
|
||||
[8mha:////4HTJIxD4EQoodzcmhsi796Okta0O99UuIDkQiNkFA9aQAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0ggUxsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jek7ggRwAAAAA==[0m[Pipeline] { (Hello)
|
||||
[8mha:////4ITNj6wfQw+ViFoaCqyu/9RAYv/f6IZXCI3ggkR+C1nlAAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbaWGsbAmNJ0AWEZb8zwLrbuWJvJp3kLiJlZNMMm+a93rDOic4UbLcG+wdZu14DKOti0+U+lugiXu6ck2YKRguzSSpM+cFJRUDS1gDKwEbgzpQdmgLbIVXD9UGhba9lFS/o4DGdQM8gYlqLiqVL8wJdvexy4Q/z18BzLEA29ce4gfg7KmOvAAAAA==[0m[Pipeline] echo
|
||||
Hello
|
||||
[8mha:////4InD9eBN31pOgH/KrQV/kiftXi8xQC5gL3UMTSIfyaPvAAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbGRNjZUtoPAGyiLDkfxZYdytP5NW8g8RNrJxkknnTvNcb1jnBiZLl3mDvMGvHYxhtXXyi1N8CTdzTlWvCTMFwaSZJnTkvKKkYWMIaWAnYGNSBskNbYCu8eqg2KLTtpaT6HQU0rhvgCUxUc1GpfGFOsLuPXSb8ef4KYI4F2L72ED8v8DEJvAAAAA==[0m[Pipeline] sleep
|
||||
Sleeping for 1 min 20 sec
|
||||
[8mha:////4A2H2vdJz9M4j0fs/DEVLHICCQ3J3krO3NJ8wYGl+ZF5AAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbmRhjZUtoPAGyiLDkfxZYdytP5NW8g8RNrJxkknnTvNcb1jnBiZLl3mDvMGvHYxhtXXyi1N8CTdzTlWvCTMFwaSZJnTkvKKkYWMIaWAnYGNSBskNbYCu8eqg2KLTtpaT6HQU0rhvgCUxUc1GpfGFOsLuPXSb8ef4KYI4F2L72ED9uwSoQvAAAAA==[0m[Pipeline] echo
|
||||
world
|
||||
[8mha:////4PwaiMAZAwUq+PL2aE01tdFIg9bGXJlBI7MxswA0e1yvAAAAox+LCAAAAAAAAP9tjTESgjAQRT84FraWHiJoY+NY2WZoPEGEGAOZXUwWofJEXs07yMiMlb/67zXv9cYyRRw5OtVYaj2lyqsu9G56auDYXgMPquGLqpgSB6tKO5Rc29OMJYvFvCzHQmNlqQqcPDnBWjfmYYpgyBVniZM7aOS+vuOJTE9lMVG+MEZsbn2dmH6dvwGMXSfId1tBtv8AqUpLPL0AAAA=[0m[Pipeline] }
|
||||
[8mha:////4PuU9GydTCJRRa1O2LR8giOafLp5ZdXi+OQlWbryKjUTAAAAox+LCAAAAAAAAP9tjTESgjAQRT84FraWHiIMhZVjZZuh8QQRYgxkdjFZhMoTeTXvICMzVv7qv9e81xvrFHHk6FRrqfOUaq/6MLj5qZFjdw08qpYvqmZKHKyq7FhxY08LViwWy7IcK42NpTpw8uQEW92ahymCIVecJc7uoJH75o4nMj2XxUT5whSxuw1NYvp1/gYw9b0gL0tBtv8AozIimL0AAAA=[0m[Pipeline] // stage
|
||||
[8mha:////4GXRWBwXS8o5EY5LAUMrzGNBrI4RgRuusUhDJ5etH22TAAAAox+LCAAAAAAAAP9tjTEOwjAQBDdBFLSUPMIRiA5R0VppeIFJjHFi3QX7QlLxIr7GH4iIRMVWO9PM641lijhydKqx1HpKlVdd6N301MCxvQYeVMMXVTElDlaVdii5tqcZSxaLeVmOhcbKUhU4eXKCtW7MwxTBkCvOEid30Mh9fccTmZ7KYqJ8YYzY3Po6Mf06fwMYu06Qb3eCbP8B5XiFqL0AAAA=[0m[Pipeline] }
|
||||
[8mha:////4GXAOx4ZwYfHA9gt76GYJSGAkpNg3dCnsmfMKJYurI0FAAAAoh+LCAAAAAAAAP9tjbEOgjAURS8YB1dHP6LEMBon14bFL6hQa6F5D9uHMPlF/pr/IJHEyTvdc5bzemOdIo4cnWotdZ5S7VUfBjc/NXLsroFH1fJF1UyJg1WVHStu7GnBisViWZZjpbGxVAdOnpxgq1vzMEUw5IqzxNkdNHLf3PFEpueymChfmCJ2t6FJTL/O3wCmvhfk+1KQlR/2xIELvQAAAA==[0m[Pipeline] // node
|
||||
[8mha:////4MfhlFpsKKWk0c/A5r3WbWL4emAr9+j8R276zJxwMv81AAAAox+LCAAAAAAAAP9tjTEOwjAQBDdBFLSUPMIRiA5R0VppeIFJjHFi3QX7QlLxIr7GH4iIRMVWO9PM641lijhydKqx1HpKlVdd6N301MCxvQYeVMMXVTElDlaVdii5tqcZSxaLeVmOhcbKUhU4eXKCtW7MwxTBkCvOEid30Mh9fccTmZ7KYqJ8YYzY3Po6Mf06fwMYu06Qb/eCbPcBcCimzr0AAAA=[0m[Pipeline] End of Pipeline
|
||||
Finished: SUCCESS
|
||||
@@ -0,0 +1,8 @@
|
||||
913 3
|
||||
1325
|
||||
2536 7
|
||||
2542
|
||||
2842 8
|
||||
2868
|
||||
3167 9
|
||||
3173
|
||||
@@ -0,0 +1,16 @@
|
||||
<?xml version='1.1' encoding='UTF-8'?>
|
||||
<Tag plugin="[email protected]_3a_087b_4055b">
|
||||
<node class="cps.n.StepEndNode" plugin="[email protected]_ca_">
|
||||
<parentIds>
|
||||
<string>9</string>
|
||||
</parentIds>
|
||||
<id>10</id>
|
||||
<startId>6</startId>
|
||||
</node>
|
||||
<actions>
|
||||
<wf.a.BodyInvocationAction plugin="[email protected]_4f29881"/>
|
||||
<wf.a.TimingAction plugin="[email protected]_4f29881">
|
||||
<startTime>1659739276294</startTime>
|
||||
</wf.a.TimingAction>
|
||||
</actions>
|
||||
</Tag>
|
||||
@@ -0,0 +1,15 @@
|
||||
<?xml version='1.1' encoding='UTF-8'?>
|
||||
<Tag plugin="[email protected]_3a_087b_4055b">
|
||||
<node class="cps.n.StepEndNode" plugin="[email protected]_ca_">
|
||||
<parentIds>
|
||||
<string>10</string>
|
||||
</parentIds>
|
||||
<id>11</id>
|
||||
<startId>5</startId>
|
||||
</node>
|
||||
<actions>
|
||||
<wf.a.TimingAction plugin="[email protected]_4f29881">
|
||||
<startTime>1659739276355</startTime>
|
||||
</wf.a.TimingAction>
|
||||
</actions>
|
||||
</Tag>
|
||||
@@ -0,0 +1,16 @@
|
||||
<?xml version='1.1' encoding='UTF-8'?>
|
||||
<Tag plugin="[email protected]_3a_087b_4055b">
|
||||
<node class="cps.n.StepEndNode" plugin="[email protected]_ca_">
|
||||
<parentIds>
|
||||
<string>11</string>
|
||||
</parentIds>
|
||||
<id>12</id>
|
||||
<startId>4</startId>
|
||||
</node>
|
||||
<actions>
|
||||
<wf.a.BodyInvocationAction plugin="[email protected]_4f29881"/>
|
||||
<wf.a.TimingAction plugin="[email protected]_4f29881">
|
||||
<startTime>1659739276382</startTime>
|
||||
</wf.a.TimingAction>
|
||||
</actions>
|
||||
</Tag>
|
||||
@@ -0,0 +1,15 @@
|
||||
<?xml version='1.1' encoding='UTF-8'?>
|
||||
<Tag plugin="[email protected]_3a_087b_4055b">
|
||||
<node class="cps.n.StepEndNode" plugin="[email protected]_ca_">
|
||||
<parentIds>
|
||||
<string>12</string>
|
||||
</parentIds>
|
||||
<id>13</id>
|
||||
<startId>3</startId>
|
||||
</node>
|
||||
<actions>
|
||||
<wf.a.TimingAction plugin="[email protected]_4f29881">
|
||||
<startTime>1659739276462</startTime>
|
||||
</wf.a.TimingAction>
|
||||
</actions>
|
||||
</Tag>
|
||||
@@ -0,0 +1,21 @@
|
||||
<?xml version='1.1' encoding='UTF-8'?>
|
||||
<Tag plugin="[email protected]_3a_087b_4055b">
|
||||
<node class="org.jenkinsci.plugins.workflow.graph.FlowEndNode" plugin="[email protected]_4f29881">
|
||||
<parentIds>
|
||||
<string>13</string>
|
||||
</parentIds>
|
||||
<id>14</id>
|
||||
<startId>2</startId>
|
||||
<result>
|
||||
<name>SUCCESS</name>
|
||||
<ordinal>0</ordinal>
|
||||
<color>BLUE</color>
|
||||
<completeBuild>true</completeBuild>
|
||||
</result>
|
||||
</node>
|
||||
<actions>
|
||||
<wf.a.TimingAction plugin="[email protected]_4f29881">
|
||||
<startTime>1659739276508</startTime>
|
||||
</wf.a.TimingAction>
|
||||
</actions>
|
||||
</Tag>
|
||||
@@ -0,0 +1,12 @@
|
||||
<?xml version='1.1' encoding='UTF-8'?>
|
||||
<Tag plugin="[email protected]_3a_087b_4055b">
|
||||
<node class="org.jenkinsci.plugins.workflow.graph.FlowStartNode" plugin="[email protected]_4f29881">
|
||||
<parentIds/>
|
||||
<id>2</id>
|
||||
</node>
|
||||
<actions>
|
||||
<wf.a.TimingAction plugin="[email protected]_4f29881">
|
||||
<startTime>1659738962437</startTime>
|
||||
</wf.a.TimingAction>
|
||||
</actions>
|
||||
</Tag>
|
||||
@@ -0,0 +1,24 @@
|
||||
<?xml version='1.1' encoding='UTF-8'?>
|
||||
<Tag plugin="[email protected]_3a_087b_4055b">
|
||||
<node class="cps.n.StepStartNode" plugin="[email protected]_ca_">
|
||||
<parentIds>
|
||||
<string>2</string>
|
||||
</parentIds>
|
||||
<id>3</id>
|
||||
<descriptorId>org.jenkinsci.plugins.workflow.support.steps.ExecutorStep</descriptorId>
|
||||
</node>
|
||||
<actions>
|
||||
<s.a.LogStorageAction/>
|
||||
<wf.a.TimingAction plugin="[email protected]_4f29881">
|
||||
<startTime>1659738962635</startTime>
|
||||
</wf.a.TimingAction>
|
||||
<org.jenkinsci.plugins.workflow.support.steps.ExecutorStepExecution_-QueueItemActionImpl plugin="[email protected]_9244f8064">
|
||||
<id>26</id>
|
||||
</org.jenkinsci.plugins.workflow.support.steps.ExecutorStepExecution_-QueueItemActionImpl>
|
||||
<s.a.WorkspaceActionImpl>
|
||||
<node></node>
|
||||
<path>/var/jenkins_home/workspace/test_pipeline@2</path>
|
||||
<labels class="sorted-set"/>
|
||||
</s.a.WorkspaceActionImpl>
|
||||
</actions>
|
||||
</Tag>
|
||||
@@ -0,0 +1,16 @@
|
||||
<?xml version='1.1' encoding='UTF-8'?>
|
||||
<Tag plugin="[email protected]_3a_087b_4055b">
|
||||
<node class="cps.n.StepStartNode" plugin="[email protected]_ca_">
|
||||
<parentIds>
|
||||
<string>3</string>
|
||||
</parentIds>
|
||||
<id>4</id>
|
||||
<descriptorId>org.jenkinsci.plugins.workflow.support.steps.ExecutorStep</descriptorId>
|
||||
</node>
|
||||
<actions>
|
||||
<wf.a.BodyInvocationAction plugin="[email protected]_4f29881"/>
|
||||
<wf.a.TimingAction plugin="[email protected]_4f29881">
|
||||
<startTime>1659739195947</startTime>
|
||||
</wf.a.TimingAction>
|
||||
</actions>
|
||||
</Tag>
|
||||
@@ -0,0 +1,26 @@
|
||||
<?xml version='1.1' encoding='UTF-8'?>
|
||||
<Tag plugin="[email protected]_3a_087b_4055b">
|
||||
<node class="cps.n.StepStartNode" plugin="[email protected]_ca_">
|
||||
<parentIds>
|
||||
<string>4</string>
|
||||
</parentIds>
|
||||
<id>5</id>
|
||||
<descriptorId>org.jenkinsci.plugins.workflow.support.steps.StageStep</descriptorId>
|
||||
</node>
|
||||
<actions>
|
||||
<s.a.LogStorageAction/>
|
||||
<cps.a.ArgumentsActionImpl plugin="[email protected]_ca_">
|
||||
<arguments>
|
||||
<entry>
|
||||
<string>name</string>
|
||||
<string>Hello</string>
|
||||
</entry>
|
||||
</arguments>
|
||||
<sensitiveVariables/>
|
||||
<isUnmodifiedBySanitization>true</isUnmodifiedBySanitization>
|
||||
</cps.a.ArgumentsActionImpl>
|
||||
<wf.a.TimingAction plugin="[email protected]_4f29881">
|
||||
<startTime>1659739196039</startTime>
|
||||
</wf.a.TimingAction>
|
||||
</actions>
|
||||
</Tag>
|
||||
@@ -0,0 +1,19 @@
|
||||
<?xml version='1.1' encoding='UTF-8'?>
|
||||
<Tag plugin="[email protected]_3a_087b_4055b">
|
||||
<node class="cps.n.StepStartNode" plugin="[email protected]_ca_">
|
||||
<parentIds>
|
||||
<string>5</string>
|
||||
</parentIds>
|
||||
<id>6</id>
|
||||
<descriptorId>org.jenkinsci.plugins.workflow.support.steps.StageStep</descriptorId>
|
||||
</node>
|
||||
<actions>
|
||||
<wf.a.BodyInvocationAction plugin="[email protected]_4f29881"/>
|
||||
<wf.a.LabelAction plugin="[email protected]_4f29881">
|
||||
<displayName>Hello</displayName>
|
||||
</wf.a.LabelAction>
|
||||
<wf.a.TimingAction plugin="[email protected]_4f29881">
|
||||
<startTime>1659739196063</startTime>
|
||||
</wf.a.TimingAction>
|
||||
</actions>
|
||||
</Tag>
|
||||
@@ -0,0 +1,26 @@
|
||||
<?xml version='1.1' encoding='UTF-8'?>
|
||||
<Tag plugin="[email protected]_3a_087b_4055b">
|
||||
<node class="cps.n.StepAtomNode" plugin="[email protected]_ca_">
|
||||
<parentIds>
|
||||
<string>6</string>
|
||||
</parentIds>
|
||||
<id>7</id>
|
||||
<descriptorId>org.jenkinsci.plugins.workflow.steps.EchoStep</descriptorId>
|
||||
</node>
|
||||
<actions>
|
||||
<cps.a.ArgumentsActionImpl plugin="[email protected]_ca_">
|
||||
<arguments>
|
||||
<entry>
|
||||
<string>message</string>
|
||||
<string>Hello</string>
|
||||
</entry>
|
||||
</arguments>
|
||||
<sensitiveVariables/>
|
||||
<isUnmodifiedBySanitization>true</isUnmodifiedBySanitization>
|
||||
</cps.a.ArgumentsActionImpl>
|
||||
<wf.a.TimingAction plugin="[email protected]_4f29881">
|
||||
<startTime>1659739196166</startTime>
|
||||
</wf.a.TimingAction>
|
||||
<s.a.LogStorageAction/>
|
||||
</actions>
|
||||
</Tag>
|
||||
@@ -0,0 +1,26 @@
|
||||
<?xml version='1.1' encoding='UTF-8'?>
|
||||
<Tag plugin="[email protected]_3a_087b_4055b">
|
||||
<node class="cps.n.StepAtomNode" plugin="[email protected]_ca_">
|
||||
<parentIds>
|
||||
<string>7</string>
|
||||
</parentIds>
|
||||
<id>8</id>
|
||||
<descriptorId>org.jenkinsci.plugins.workflow.steps.SleepStep</descriptorId>
|
||||
</node>
|
||||
<actions>
|
||||
<cps.a.ArgumentsActionImpl plugin="[email protected]_ca_">
|
||||
<arguments>
|
||||
<entry>
|
||||
<string>time</string>
|
||||
<long>80</long>
|
||||
</entry>
|
||||
</arguments>
|
||||
<sensitiveVariables/>
|
||||
<isUnmodifiedBySanitization>true</isUnmodifiedBySanitization>
|
||||
</cps.a.ArgumentsActionImpl>
|
||||
<wf.a.TimingAction plugin="[email protected]_4f29881">
|
||||
<startTime>1659739196226</startTime>
|
||||
</wf.a.TimingAction>
|
||||
<s.a.LogStorageAction/>
|
||||
</actions>
|
||||
</Tag>
|
||||
@@ -0,0 +1,26 @@
|
||||
<?xml version='1.1' encoding='UTF-8'?>
|
||||
<Tag plugin="[email protected]_3a_087b_4055b">
|
||||
<node class="cps.n.StepAtomNode" plugin="[email protected]_ca_">
|
||||
<parentIds>
|
||||
<string>8</string>
|
||||
</parentIds>
|
||||
<id>9</id>
|
||||
<descriptorId>org.jenkinsci.plugins.workflow.steps.EchoStep</descriptorId>
|
||||
</node>
|
||||
<actions>
|
||||
<cps.a.ArgumentsActionImpl plugin="[email protected]_ca_">
|
||||
<arguments>
|
||||
<entry>
|
||||
<string>message</string>
|
||||
<string>world</string>
|
||||
</entry>
|
||||
</arguments>
|
||||
<sensitiveVariables/>
|
||||
<isUnmodifiedBySanitization>true</isUnmodifiedBySanitization>
|
||||
</cps.a.ArgumentsActionImpl>
|
||||
<wf.a.TimingAction plugin="[email protected]_4f29881">
|
||||
<startTime>1659739276268</startTime>
|
||||
</wf.a.TimingAction>
|
||||
<s.a.LogStorageAction/>
|
||||
</actions>
|
||||
</Tag>
|
||||
Reference in New Issue
Block a user