go_cd_feed 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (91) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +8 -0
  3. data/.rvmrc +1 -0
  4. data/.zeroci.yml +1 -0
  5. data/Gemfile +4 -0
  6. data/Gemfile.lock +32 -0
  7. data/README.textile +36 -0
  8. data/Rakefile +39 -0
  9. data/bin/go_api_client +3 -0
  10. data/go_api_client.gemspec +27 -0
  11. data/lib/go_api_client.rb +60 -0
  12. data/lib/go_api_client/atom.rb +4 -0
  13. data/lib/go_api_client/atom/author.rb +42 -0
  14. data/lib/go_api_client/atom/entry.rb +34 -0
  15. data/lib/go_api_client/atom/feed.rb +44 -0
  16. data/lib/go_api_client/atom/feed_page.rb +49 -0
  17. data/lib/go_api_client/commit.rb +30 -0
  18. data/lib/go_api_client/helpers.rb +1 -0
  19. data/lib/go_api_client/helpers/simple_attribute_support.rb +11 -0
  20. data/lib/go_api_client/http_fetcher.rb +43 -0
  21. data/lib/go_api_client/job.rb +64 -0
  22. data/lib/go_api_client/pipeline.rb +49 -0
  23. data/lib/go_api_client/stage.rb +57 -0
  24. data/lib/go_api_client/user.rb +36 -0
  25. data/lib/go_api_client/version.rb +9 -0
  26. data/ssh_keys/git-ci.zeroci.com +27 -0
  27. data/ssh_keys/git-ci.zeroci.com.pub +1 -0
  28. data/ssh_keys/git-ssh +3 -0
  29. data/test/fixtures/building/job_1.xml +41 -0
  30. data/test/fixtures/building/job_2.xml +43 -0
  31. data/test/fixtures/building/job_3.xml +40 -0
  32. data/test/fixtures/building/job_4.xml +40 -0
  33. data/test/fixtures/building/pipeline_1.xml +45 -0
  34. data/test/fixtures/building/pipeline_2.xml +39 -0
  35. data/test/fixtures/building/pipeline_3.xml +71 -0
  36. data/test/fixtures/building/stages.xml +180 -0
  37. data/test/fixtures/building/stages_1.xml +16 -0
  38. data/test/fixtures/building/stages_2.xml +16 -0
  39. data/test/fixtures/building/stages_3.xml +16 -0
  40. data/test/fixtures/building/stages_4.xml +16 -0
  41. data/test/fixtures/job_1_console.log.txt +82 -0
  42. data/test/fixtures/job_2_console.log.txt +82 -0
  43. data/test/fixtures/jobs_1.xml +29 -0
  44. data/test/fixtures/jobs_2.xml +29 -0
  45. data/test/fixtures/jobs_with_no_properties.xml +42 -0
  46. data/test/fixtures/ordering/go/api/jobs/1.xml +29 -0
  47. data/test/fixtures/ordering/go/api/jobs/10.xml +31 -0
  48. data/test/fixtures/ordering/go/api/jobs/2.xml +29 -0
  49. data/test/fixtures/ordering/go/api/jobs/3.xml +29 -0
  50. data/test/fixtures/ordering/go/api/jobs/4.xml +29 -0
  51. data/test/fixtures/ordering/go/api/jobs/5.xml +29 -0
  52. data/test/fixtures/ordering/go/api/jobs/6.xml +29 -0
  53. data/test/fixtures/ordering/go/api/jobs/7.xml +31 -0
  54. data/test/fixtures/ordering/go/api/jobs/8.xml +31 -0
  55. data/test/fixtures/ordering/go/api/jobs/9.xml +31 -0
  56. data/test/fixtures/ordering/go/api/pipelines/defaultPipeline/1.xml +31 -0
  57. data/test/fixtures/ordering/go/api/pipelines/defaultPipeline/2.xml +26 -0
  58. data/test/fixtures/ordering/go/api/pipelines/defaultPipeline/3.xml +26 -0
  59. data/test/fixtures/ordering/go/api/pipelines/defaultPipeline/4.xml +27 -0
  60. data/test/fixtures/ordering/go/api/pipelines/defaultPipeline/5.xml +33 -0
  61. data/test/fixtures/ordering/go/api/pipelines/defaultPipeline/stages.xml +255 -0
  62. data/test/fixtures/ordering/go/api/stages/1.xml +14 -0
  63. data/test/fixtures/ordering/go/api/stages/10.xml +14 -0
  64. data/test/fixtures/ordering/go/api/stages/2.xml +14 -0
  65. data/test/fixtures/ordering/go/api/stages/3.xml +14 -0
  66. data/test/fixtures/ordering/go/api/stages/4.xml +14 -0
  67. data/test/fixtures/ordering/go/api/stages/5.xml +14 -0
  68. data/test/fixtures/ordering/go/api/stages/6.xml +14 -0
  69. data/test/fixtures/ordering/go/api/stages/7.xml +14 -0
  70. data/test/fixtures/ordering/go/api/stages/8.xml +14 -0
  71. data/test/fixtures/ordering/go/api/stages/9.xml +14 -0
  72. data/test/fixtures/pagination/stages.xml +636 -0
  73. data/test/fixtures/pagination/stages_before_7916973.xml +615 -0
  74. data/test/fixtures/pagination/stages_before_7959831.xml +615 -0
  75. data/test/fixtures/pipelines_1.xml +32 -0
  76. data/test/fixtures/stages.xml +63 -0
  77. data/test/fixtures/stages_1.xml +14 -0
  78. data/test/fixtures/stages_2.xml +14 -0
  79. data/test/fixtures/stages_empty.xml +9 -0
  80. data/test/go_api_client/atom/author_test.rb +27 -0
  81. data/test/go_api_client/atom/entry_test.rb +27 -0
  82. data/test/go_api_client/atom/feed_page_test.rb +41 -0
  83. data/test/go_api_client/atom/feed_test.rb +25 -0
  84. data/test/go_api_client/building_test.rb +38 -0
  85. data/test/go_api_client/commit_test.rb +38 -0
  86. data/test/go_api_client/job_test.rb +42 -0
  87. data/test/go_api_client/pipeline_test.rb +34 -0
  88. data/test/go_api_client/stage_test.rb +75 -0
  89. data/test/go_api_client/user_test.rb +27 -0
  90. data/test/test_helper.rb +31 -0
  91. metadata +272 -0
@@ -0,0 +1,82 @@
1
+
2
+ [cruise] Start to prepare defaultPipeline/1/Units/1/Test on ira.corporate.thoughtworks.com [/Users/saas/go-agent-12.1.0] at Tue Feb 21 15:42:06 GMT+05:30 2012
3
+
4
+ [cruise] Start updating files at revision f38508a26e1dc27737eb760e39a6aa8220f8b8c6 from git@github.com:oogabooga/zinger.git
5
+ Cloning into '/Users/saas/go-agent-12.1.0/pipelines/defaultPipeline'...
6
+ HEAD is now at f38508a first commit
7
+
8
+ [cruise] Start to build defaultPipeline/1/Units/1/Test on ira.corporate.thoughtworks.com [/Users/saas/go-agent-12.1.0] at Tue Feb 21 15:42:15 GMT+05:30 2012
9
+
10
+ [cruise] Current job status: passed.
11
+
12
+ [cruise] Start to execute task: <exec command="bundle" >
13
+ <arg>install</arg>
14
+ <arg>--local</arg>
15
+ </exec>.
16
+ [cruise] setting environment variable 'CRUISE_SERVER_URL' to value 'https://localhost:8154/go' (Deprecated. Use 'GO_SERVER_URL' instead.)
17
+ [cruise] setting environment variable 'GO_SERVER_URL' to value 'https://localhost:8154/go'
18
+ [cruise] setting environment variable 'GO_PIPELINE_NAME' to value 'defaultPipeline'
19
+ [cruise] setting environment variable 'GO_PIPELINE_COUNTER' to value '1'
20
+ [cruise] setting environment variable 'GO_PIPELINE_LABEL' to value '1'
21
+ [cruise] setting environment variable 'GO_STAGE_NAME' to value 'Units'
22
+ [cruise] setting environment variable 'GO_STAGE_COUNTER' to value '1'
23
+ [cruise] setting environment variable 'GO_JOB_NAME' to value 'Test'
24
+ [cruise] setting environment variable 'CRUISE_PIPELINE_NAME' to value 'defaultPipeline' (Deprecated. Use 'GO_PIPELINE_NAME' instead.)
25
+ [cruise] setting environment variable 'CRUISE_PIPELINE_COUNTER' to value '1' (Deprecated. Use 'GO_PIPELINE_COUNTER' instead.)
26
+ [cruise] setting environment variable 'CRUISE_PIPELINE_LABEL' to value '1' (Deprecated. Use 'GO_PIPELINE_LABEL' instead.)
27
+ [cruise] setting environment variable 'CRUISE_STAGE_NAME' to value 'Units' (Deprecated. Use 'GO_STAGE_NAME' instead.)
28
+ [cruise] setting environment variable 'CRUISE_STAGE_COUNTER' to value '1' (Deprecated. Use 'GO_STAGE_COUNTER' instead.)
29
+ [cruise] setting environment variable 'CRUISE_JOB_NAME' to value 'Test' (Deprecated. Use 'GO_JOB_NAME' instead.)
30
+ [cruise] setting environment variable 'GO_REVISION' to value 'f38508a26e1dc27737eb760e39a6aa8220f8b8c6'
31
+ [cruise] setting environment variable 'GO_TO_REVISION' to value 'f38508a26e1dc27737eb760e39a6aa8220f8b8c6'
32
+ [cruise] setting environment variable 'GO_FROM_REVISION' to value 'f38508a26e1dc27737eb760e39a6aa8220f8b8c6'
33
+ [cruise] setting environment variable 'CRUISE_REVISION' to value 'f38508a26e1dc27737eb760e39a6aa8220f8b8c6' (Deprecated. Use 'GO_REVISION' instead.)
34
+ Could not locate Gemfile
35
+
36
+ [cruise] Start to create properties defaultPipeline/1/Units/1/Test on ira.corporate.thoughtworks.com [/Users/saas/go-agent-12.1.0] at Tue Feb 21 15:42:16 GMT+05:30 2012
37
+
38
+ [cruise] Start to upload defaultPipeline/1/Units/1/Test on ira.corporate.thoughtworks.com [/Users/saas/go-agent-12.1.0] at Tue Feb 21 15:42:16 GMT+05:30 2012
39
+
40
+ [cruise] Job completed defaultPipeline/1/Units/1/Test on ira.corporate.thoughtworks.com [/Users/saas/go-agent-12.1.0] at Tue Feb 21 15:42:16 GMT+05:30 2012
41
+
42
+ [cruise] Start to prepare defaultPipeline/1/Units/1/Test on ira.corporate.thoughtworks.com [/Users/go/go-agent-12.1.0] at Thu Feb 23 17:16:37 GMT+05:30 2012
43
+
44
+ [cruise] Start updating files at revision 9f77888d7a594699894a17f4d61fc9dfac3cfb74 from git@github.com:oogabooga/zinger.git
45
+ HEAD is now at 9f77888 Update README
46
+
47
+ [cruise] Start to build defaultPipeline/1/Units/1/Test on ira.corporate.thoughtworks.com [/Users/go/go-agent-12.1.0] at Thu Feb 23 17:16:41 GMT+05:30 2012
48
+
49
+ [cruise] Current job status: passed.
50
+
51
+ [cruise] Start to execute task: <exec command="bundle" >
52
+ <arg>install</arg>
53
+ <arg>--local</arg>
54
+ </exec>.
55
+ [cruise] setting environment variable 'CRUISE_SERVER_URL' to value 'https://localhost:8154/go' (Deprecated. Use 'GO_SERVER_URL' instead.)
56
+ [cruise] setting environment variable 'GO_SERVER_URL' to value 'https://localhost:8154/go'
57
+ [cruise] setting environment variable 'GO_PIPELINE_NAME' to value 'defaultPipeline'
58
+ [cruise] setting environment variable 'GO_PIPELINE_COUNTER' to value '1'
59
+ [cruise] setting environment variable 'GO_PIPELINE_LABEL' to value '1'
60
+ [cruise] setting environment variable 'GO_STAGE_NAME' to value 'Units'
61
+ [cruise] setting environment variable 'GO_STAGE_COUNTER' to value '1'
62
+ [cruise] setting environment variable 'GO_JOB_NAME' to value 'Test'
63
+ [cruise] setting environment variable 'CRUISE_PIPELINE_NAME' to value 'defaultPipeline' (Deprecated. Use 'GO_PIPELINE_NAME' instead.)
64
+ [cruise] setting environment variable 'CRUISE_PIPELINE_COUNTER' to value '1' (Deprecated. Use 'GO_PIPELINE_COUNTER' instead.)
65
+ [cruise] setting environment variable 'CRUISE_PIPELINE_LABEL' to value '1' (Deprecated. Use 'GO_PIPELINE_LABEL' instead.)
66
+ [cruise] setting environment variable 'CRUISE_STAGE_NAME' to value 'Units' (Deprecated. Use 'GO_STAGE_NAME' instead.)
67
+ [cruise] setting environment variable 'CRUISE_STAGE_COUNTER' to value '1' (Deprecated. Use 'GO_STAGE_COUNTER' instead.)
68
+ [cruise] setting environment variable 'CRUISE_JOB_NAME' to value 'Test' (Deprecated. Use 'GO_JOB_NAME' instead.)
69
+ [cruise] setting environment variable 'GO_REVISION' to value '9f77888d7a594699894a17f4d61fc9dfac3cfb74'
70
+ [cruise] setting environment variable 'GO_TO_REVISION' to value '9f77888d7a594699894a17f4d61fc9dfac3cfb74'
71
+ [cruise] setting environment variable 'GO_FROM_REVISION' to value '9f77888d7a594699894a17f4d61fc9dfac3cfb74'
72
+ [cruise] setting environment variable 'CRUISE_REVISION' to value '9f77888d7a594699894a17f4d61fc9dfac3cfb74' (Deprecated. Use 'GO_REVISION' instead.)
73
+ Error happened while attempting to execute 'bundle install --local'.
74
+ Please make sure [bundle] can be executed on this agent.
75
+
76
+ [Debug Information] Environment variable PATH: /usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin
77
+
78
+ [cruise] Start to create properties defaultPipeline/1/Units/1/Test on ira.corporate.thoughtworks.com [/Users/go/go-agent-12.1.0] at Thu Feb 23 17:16:41 GMT+05:30 2012
79
+
80
+ [cruise] Start to upload defaultPipeline/1/Units/1/Test on ira.corporate.thoughtworks.com [/Users/go/go-agent-12.1.0] at Thu Feb 23 17:16:41 GMT+05:30 2012
81
+
82
+ [cruise] Job completed defaultPipeline/1/Units/1/Test on ira.corporate.thoughtworks.com [/Users/go/go-agent-12.1.0] at Thu Feb 23 17:16:41 GMT+05:30 2012
@@ -0,0 +1,29 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+
3
+ <job name="Test">
4
+ <link rel="self" href="http://localhost:8153/go/api/jobs/1.xml"/>
5
+ <id><![CDATA[urn:x-go.studios.thoughtworks.com:job-id:defaultPipeline:1:Units:1:Test]]></id>
6
+ <pipeline name="defaultPipeline" counter="1" label="1"/>
7
+ <stage name="Units" counter="1" href="http://localhost:8153/go/api/stages/1.xml"/>
8
+ <result>Failed</result>
9
+ <state>Completed</state>
10
+ <properties>
11
+ <property name="cruise_agent"><![CDATA[ira.corporate.thoughtworks.com]]></property>
12
+ <property name="cruise_job_duration"><![CDATA[900]]></property>
13
+ <property name="cruise_job_id"><![CDATA[1]]></property>
14
+ <property name="cruise_job_result"><![CDATA[Failed]]></property>
15
+ <property name="cruise_pipeline_counter"><![CDATA[1]]></property>
16
+ <property name="cruise_pipeline_label"><![CDATA[1]]></property>
17
+ <property name="cruise_stage_counter"><![CDATA[1]]></property>
18
+ <property name="cruise_timestamp_01_scheduled"><![CDATA[2012-02-23T17:16:15+05:30]]></property>
19
+ <property name="cruise_timestamp_02_assigned"><![CDATA[2012-02-23T17:16:27+05:30]]></property>
20
+ <property name="cruise_timestamp_03_preparing"><![CDATA[2012-02-23T17:16:37+05:30]]></property>
21
+ <property name="cruise_timestamp_04_building"><![CDATA[2012-02-23T17:16:41+05:30]]></property>
22
+ <property name="cruise_timestamp_05_completing"><![CDATA[2012-02-23T17:16:42+05:30]]></property>
23
+ <property name="cruise_timestamp_06_completed"><![CDATA[2012-02-23T17:16:45+05:30]]></property>
24
+ </properties>
25
+ <agent uuid="c62d482a-791d-4fa4-adc3-a0808a73dd3c"/>
26
+ <artifacts baseUri="http://localhost:8153/go/files/defaultPipeline/1/Units/1/Test" pathFromArtifactRoot="pipelines/defaultPipeline/1/Units/1/Test"/>
27
+ <resources/>
28
+ <environmentvariables/>
29
+ </job>
@@ -0,0 +1,29 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+
3
+ <job name="Test">
4
+ <link rel="self" href="http://localhost:8153/go/api/jobs/2.xml"/>
5
+ <id><![CDATA[urn:x-go.studios.thoughtworks.com:job-id:defaultPipeline:1:Acceptance:1:Test]]></id>
6
+ <pipeline name="defaultPipeline" counter="1" label="1"/>
7
+ <stage name="Acceptance" counter="1" href="http://localhost:8153/go/api/stages/2.xml"/>
8
+ <result>Failed</result>
9
+ <state>Completed</state>
10
+ <properties>
11
+ <property name="cruise_agent"><![CDATA[ira.corporate.thoughtworks.com]]></property>
12
+ <property name="cruise_job_duration"><![CDATA[0]]></property>
13
+ <property name="cruise_job_id"><![CDATA[2]]></property>
14
+ <property name="cruise_job_result"><![CDATA[Failed]]></property>
15
+ <property name="cruise_pipeline_counter"><![CDATA[1]]></property>
16
+ <property name="cruise_pipeline_label"><![CDATA[1]]></property>
17
+ <property name="cruise_stage_counter"><![CDATA[1]]></property>
18
+ <property name="cruise_timestamp_01_scheduled"><![CDATA[2012-02-23T17:19:09+05:30]]></property>
19
+ <property name="cruise_timestamp_02_assigned"><![CDATA[2012-02-23T17:19:17+05:30]]></property>
20
+ <property name="cruise_timestamp_03_preparing"><![CDATA[2012-02-23T17:19:27+05:30]]></property>
21
+ <property name="cruise_timestamp_04_building"><![CDATA[2012-02-23T17:19:31+05:30]]></property>
22
+ <property name="cruise_timestamp_05_completing"><![CDATA[2012-02-23T17:19:31+05:30]]></property>
23
+ <property name="cruise_timestamp_06_completed"><![CDATA[2012-02-23T17:19:31+05:30]]></property>
24
+ </properties>
25
+ <agent uuid="c62d482a-791d-4fa4-adc3-a0808a73dd3c"/>
26
+ <artifacts baseUri="http://localhost:8153/go/files/defaultPipeline/1/Acceptance/1/Test" pathFromArtifactRoot="pipelines/defaultPipeline/1/Acceptance/1/Test"/>
27
+ <resources/>
28
+ <environmentvariables/>
29
+ </job>
@@ -0,0 +1,42 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <job name="Test">
3
+ <link rel="self"
4
+ href="http://go-server.1.project:8153/go/api/jobs/1.xml"/>
5
+ <id><![CDATA[urn:x-go.studios.thoughtworks.com:job-id:defaultPipeline:1:Units:1:Test]]></id>
6
+ <pipeline name="defaultPipeline" counter="1" label="1"/>
7
+ <stage name="Units" counter="1"
8
+ href="http://go-server.1.project:8153/go/api/stages/1.xml"/>
9
+ <result>Failed</result>
10
+ <state>Completed</state>
11
+ <properties>
12
+ <property
13
+ name="cruise_agent"><![CDATA[go-agent-01.1.project]]></property>
14
+ <property name="cruise_job_duration"><![CDATA[80]]></property>
15
+ <property name="cruise_job_id"><![CDATA[1]]></property>
16
+ <property name="cruise_job_result"><![CDATA[Failed]]></property>
17
+ <property name="cruise_pipeline_counter"><![CDATA[1]]></property>
18
+ <property name="cruise_pipeline_label"><![CDATA[1]]></property>
19
+ <property name="cruise_stage_counter"><![CDATA[1]]></property>
20
+ <!--
21
+ <property
22
+ name="cruise_timestamp_01_scheduled"><![CDATA[2012-06-05T08:33:09Z]]></property>
23
+ <property
24
+ name="cruise_timestamp_02_assigned"><![CDATA[2012-06-05T08:34:51Z]]></property>
25
+ <property
26
+ name="cruise_timestamp_03_preparing"><![CDATA[2012-06-05T08:34:56Z]]></property>
27
+ <property
28
+ name="cruise_timestamp_04_building"><![CDATA[2012-06-05T08:34:58Z]]></property>
29
+ <property
30
+ name="cruise_timestamp_05_completing"><![CDATA[2012-06-05T08:36:19Z]]></property>
31
+ <property
32
+ name="cruise_timestamp_06_completed"><![CDATA[2012-06-05T08:36:19Z]]></property>
33
+ -->
34
+ </properties>
35
+ <agent uuid="0a0b859f-406d-4d22-9f7f-6f71d9b45a77"/>
36
+ <artifacts
37
+ baseUri="http://go-server.1.project:8153/go/files/defaultPipeline/1/Units/1/Test"
38
+ pathFromArtifactRoot="pipelines/defaultPipeline/1/Units/1/Test"/>
39
+ <resources/>
40
+ <environmentvariables/>
41
+ </job>
42
+
@@ -0,0 +1,29 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+
3
+ <job name="Test">
4
+ <link rel="self" href="http://go-server.2.project:8153/go/api/jobs/1.xml"/>
5
+ <id><![CDATA[urn:x-go.studios.thoughtworks.com:job-id:defaultPipeline:1:Units:1:Test]]></id>
6
+ <pipeline name="defaultPipeline" counter="1" label="1"/>
7
+ <stage name="Units" counter="1" href="http://go-server.2.project:8153/go/api/stages/1.xml"/>
8
+ <result>Passed</result>
9
+ <state>Completed</state>
10
+ <properties>
11
+ <property name="cruise_agent"><![CDATA[go-agent-01.2.project]]></property>
12
+ <property name="cruise_job_duration"><![CDATA[49]]></property>
13
+ <property name="cruise_job_id"><![CDATA[1]]></property>
14
+ <property name="cruise_job_result"><![CDATA[Passed]]></property>
15
+ <property name="cruise_pipeline_counter"><![CDATA[1]]></property>
16
+ <property name="cruise_pipeline_label"><![CDATA[1]]></property>
17
+ <property name="cruise_stage_counter"><![CDATA[1]]></property>
18
+ <property name="cruise_timestamp_01_scheduled"><![CDATA[2012-10-17T09:46:08Z]]></property>
19
+ <property name="cruise_timestamp_02_assigned"><![CDATA[2012-10-17T09:46:16Z]]></property>
20
+ <property name="cruise_timestamp_03_preparing"><![CDATA[2012-10-17T09:46:26Z]]></property>
21
+ <property name="cruise_timestamp_04_building"><![CDATA[2012-10-17T09:46:30Z]]></property>
22
+ <property name="cruise_timestamp_05_completing"><![CDATA[2012-10-17T09:47:19Z]]></property>
23
+ <property name="cruise_timestamp_06_completed"><![CDATA[2012-10-17T09:47:19Z]]></property>
24
+ </properties>
25
+ <agent uuid="8511cc52-9d29-4dba-9f9f-4ae6de1019f2"/>
26
+ <artifacts baseUri="http://go-server.2.project:8153/go/files/defaultPipeline/1/Units/1/Test" pathFromArtifactRoot="pipelines/defaultPipeline/1/Units/1/Test"/>
27
+ <resources/>
28
+ <environmentvariables/>
29
+ </job>
@@ -0,0 +1,31 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+
3
+ <job name="PostBuild">
4
+ <link rel="self" href="http://go-server.2.project:8153/go/api/jobs/10.xml"/>
5
+ <id><![CDATA[urn:x-go.studios.thoughtworks.com:job-id:defaultPipeline:5:PostBuild:1:PostBuild]]></id>
6
+ <pipeline name="defaultPipeline" counter="5" label="5"/>
7
+ <stage name="PostBuild" counter="1" href="http://go-server.2.project:8153/go/api/stages/10.xml"/>
8
+ <result>Passed</result>
9
+ <state>Completed</state>
10
+ <properties>
11
+ <property name="cruise_agent"><![CDATA[go-agent-01.2.project]]></property>
12
+ <property name="cruise_job_duration"><![CDATA[7]]></property>
13
+ <property name="cruise_job_id"><![CDATA[10]]></property>
14
+ <property name="cruise_job_result"><![CDATA[Passed]]></property>
15
+ <property name="cruise_pipeline_counter"><![CDATA[5]]></property>
16
+ <property name="cruise_pipeline_label"><![CDATA[5]]></property>
17
+ <property name="cruise_stage_counter"><![CDATA[1]]></property>
18
+ <property name="cruise_timestamp_01_scheduled"><![CDATA[2012-10-29T08:08:43Z]]></property>
19
+ <property name="cruise_timestamp_02_assigned"><![CDATA[2012-10-29T08:08:53Z]]></property>
20
+ <property name="cruise_timestamp_03_preparing"><![CDATA[2012-10-29T08:09:03Z]]></property>
21
+ <property name="cruise_timestamp_04_building"><![CDATA[2012-10-29T08:09:04Z]]></property>
22
+ <property name="cruise_timestamp_05_completing"><![CDATA[2012-10-29T08:09:11Z]]></property>
23
+ <property name="cruise_timestamp_06_completed"><![CDATA[2012-10-29T08:09:11Z]]></property>
24
+ </properties>
25
+ <agent uuid="8511cc52-9d29-4dba-9f9f-4ae6de1019f2"/>
26
+ <artifacts baseUri="http://go-server.2.project:8153/go/files/defaultPipeline/5/PostBuild/1/PostBuild" pathFromArtifactRoot="pipelines/defaultPipeline/5/PostBuild/1/PostBuild"/>
27
+ <resources/>
28
+ <environmentvariables>
29
+ <variable name="PATH"><![CDATA[/opt/local/ruby/1.9.2-p290/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/root/bin]]></variable>
30
+ </environmentvariables>
31
+ </job>
@@ -0,0 +1,29 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+
3
+ <job name="PostBuild">
4
+ <link rel="self" href="http://go-server.2.project:8153/go/api/jobs/2.xml"/>
5
+ <id><![CDATA[urn:x-go.studios.thoughtworks.com:job-id:defaultPipeline:1:PostBuild:1:PostBuild]]></id>
6
+ <pipeline name="defaultPipeline" counter="1" label="1"/>
7
+ <stage name="PostBuild" counter="1" href="http://go-server.2.project:8153/go/api/stages/2.xml"/>
8
+ <result>Passed</result>
9
+ <state>Completed</state>
10
+ <properties>
11
+ <property name="cruise_agent"><![CDATA[go-agent-01.2.project]]></property>
12
+ <property name="cruise_job_duration"><![CDATA[7]]></property>
13
+ <property name="cruise_job_id"><![CDATA[2]]></property>
14
+ <property name="cruise_job_result"><![CDATA[Passed]]></property>
15
+ <property name="cruise_pipeline_counter"><![CDATA[1]]></property>
16
+ <property name="cruise_pipeline_label"><![CDATA[1]]></property>
17
+ <property name="cruise_stage_counter"><![CDATA[1]]></property>
18
+ <property name="cruise_timestamp_01_scheduled"><![CDATA[2012-10-17T09:47:19Z]]></property>
19
+ <property name="cruise_timestamp_02_assigned"><![CDATA[2012-10-17T09:47:29Z]]></property>
20
+ <property name="cruise_timestamp_03_preparing"><![CDATA[2012-10-17T09:47:39Z]]></property>
21
+ <property name="cruise_timestamp_04_building"><![CDATA[2012-10-17T09:47:40Z]]></property>
22
+ <property name="cruise_timestamp_05_completing"><![CDATA[2012-10-17T09:47:47Z]]></property>
23
+ <property name="cruise_timestamp_06_completed"><![CDATA[2012-10-17T09:47:47Z]]></property>
24
+ </properties>
25
+ <agent uuid="8511cc52-9d29-4dba-9f9f-4ae6de1019f2"/>
26
+ <artifacts baseUri="http://go-server.2.project:8153/go/files/defaultPipeline/1/PostBuild/1/PostBuild" pathFromArtifactRoot="pipelines/defaultPipeline/1/PostBuild/1/PostBuild"/>
27
+ <resources/>
28
+ <environmentvariables/>
29
+ </job>
@@ -0,0 +1,29 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+
3
+ <job name="Test">
4
+ <link rel="self" href="http://go-server.2.project:8153/go/api/jobs/3.xml"/>
5
+ <id><![CDATA[urn:x-go.studios.thoughtworks.com:job-id:defaultPipeline:2:Units:1:Test]]></id>
6
+ <pipeline name="defaultPipeline" counter="2" label="2"/>
7
+ <stage name="Units" counter="1" href="http://go-server.2.project:8153/go/api/stages/3.xml"/>
8
+ <result>Passed</result>
9
+ <state>Completed</state>
10
+ <properties>
11
+ <property name="cruise_agent"><![CDATA[go-agent-01.2.project]]></property>
12
+ <property name="cruise_job_duration"><![CDATA[18]]></property>
13
+ <property name="cruise_job_id"><![CDATA[3]]></property>
14
+ <property name="cruise_job_result"><![CDATA[Passed]]></property>
15
+ <property name="cruise_pipeline_counter"><![CDATA[2]]></property>
16
+ <property name="cruise_pipeline_label"><![CDATA[2]]></property>
17
+ <property name="cruise_stage_counter"><![CDATA[1]]></property>
18
+ <property name="cruise_timestamp_01_scheduled"><![CDATA[2012-10-19T15:18:09Z]]></property>
19
+ <property name="cruise_timestamp_02_assigned"><![CDATA[2012-10-19T15:18:21Z]]></property>
20
+ <property name="cruise_timestamp_03_preparing"><![CDATA[2012-10-19T15:18:31Z]]></property>
21
+ <property name="cruise_timestamp_04_building"><![CDATA[2012-10-19T15:18:31Z]]></property>
22
+ <property name="cruise_timestamp_05_completing"><![CDATA[2012-10-19T15:18:50Z]]></property>
23
+ <property name="cruise_timestamp_06_completed"><![CDATA[2012-10-19T15:18:50Z]]></property>
24
+ </properties>
25
+ <agent uuid="8511cc52-9d29-4dba-9f9f-4ae6de1019f2"/>
26
+ <artifacts baseUri="http://go-server.2.project:8153/go/files/defaultPipeline/2/Units/1/Test" pathFromArtifactRoot="pipelines/defaultPipeline/2/Units/1/Test"/>
27
+ <resources/>
28
+ <environmentvariables/>
29
+ </job>
@@ -0,0 +1,29 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+
3
+ <job name="PostBuild">
4
+ <link rel="self" href="http://go-server.2.project:8153/go/api/jobs/4.xml"/>
5
+ <id><![CDATA[urn:x-go.studios.thoughtworks.com:job-id:defaultPipeline:2:PostBuild:1:PostBuild]]></id>
6
+ <pipeline name="defaultPipeline" counter="2" label="2"/>
7
+ <stage name="PostBuild" counter="1" href="http://go-server.2.project:8153/go/api/stages/4.xml"/>
8
+ <result>Passed</result>
9
+ <state>Completed</state>
10
+ <properties>
11
+ <property name="cruise_agent"><![CDATA[go-agent-01.2.project]]></property>
12
+ <property name="cruise_job_duration"><![CDATA[7]]></property>
13
+ <property name="cruise_job_id"><![CDATA[4]]></property>
14
+ <property name="cruise_job_result"><![CDATA[Passed]]></property>
15
+ <property name="cruise_pipeline_counter"><![CDATA[2]]></property>
16
+ <property name="cruise_pipeline_label"><![CDATA[2]]></property>
17
+ <property name="cruise_stage_counter"><![CDATA[1]]></property>
18
+ <property name="cruise_timestamp_01_scheduled"><![CDATA[2012-10-19T15:18:50Z]]></property>
19
+ <property name="cruise_timestamp_02_assigned"><![CDATA[2012-10-19T15:19:00Z]]></property>
20
+ <property name="cruise_timestamp_03_preparing"><![CDATA[2012-10-19T15:19:10Z]]></property>
21
+ <property name="cruise_timestamp_04_building"><![CDATA[2012-10-19T15:19:11Z]]></property>
22
+ <property name="cruise_timestamp_05_completing"><![CDATA[2012-10-19T15:19:18Z]]></property>
23
+ <property name="cruise_timestamp_06_completed"><![CDATA[2012-10-19T15:19:18Z]]></property>
24
+ </properties>
25
+ <agent uuid="8511cc52-9d29-4dba-9f9f-4ae6de1019f2"/>
26
+ <artifacts baseUri="http://go-server.2.project:8153/go/files/defaultPipeline/2/PostBuild/1/PostBuild" pathFromArtifactRoot="pipelines/defaultPipeline/2/PostBuild/1/PostBuild"/>
27
+ <resources/>
28
+ <environmentvariables/>
29
+ </job>
@@ -0,0 +1,29 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+
3
+ <job name="Test">
4
+ <link rel="self" href="http://go-server.2.project:8153/go/api/jobs/5.xml"/>
5
+ <id><![CDATA[urn:x-go.studios.thoughtworks.com:job-id:defaultPipeline:3:Units:1:Test]]></id>
6
+ <pipeline name="defaultPipeline" counter="3" label="3"/>
7
+ <stage name="Units" counter="1" href="http://go-server.2.project:8153/go/api/stages/5.xml"/>
8
+ <result>Passed</result>
9
+ <state>Completed</state>
10
+ <properties>
11
+ <property name="cruise_agent"><![CDATA[go-agent-01.2.project]]></property>
12
+ <property name="cruise_job_duration"><![CDATA[18]]></property>
13
+ <property name="cruise_job_id"><![CDATA[5]]></property>
14
+ <property name="cruise_job_result"><![CDATA[Passed]]></property>
15
+ <property name="cruise_pipeline_counter"><![CDATA[3]]></property>
16
+ <property name="cruise_pipeline_label"><![CDATA[3]]></property>
17
+ <property name="cruise_stage_counter"><![CDATA[1]]></property>
18
+ <property name="cruise_timestamp_01_scheduled"><![CDATA[2012-10-23T08:46:07Z]]></property>
19
+ <property name="cruise_timestamp_02_assigned"><![CDATA[2012-10-23T08:46:13Z]]></property>
20
+ <property name="cruise_timestamp_03_preparing"><![CDATA[2012-10-23T08:46:23Z]]></property>
21
+ <property name="cruise_timestamp_04_building"><![CDATA[2012-10-23T08:46:24Z]]></property>
22
+ <property name="cruise_timestamp_05_completing"><![CDATA[2012-10-23T08:46:42Z]]></property>
23
+ <property name="cruise_timestamp_06_completed"><![CDATA[2012-10-23T08:46:42Z]]></property>
24
+ </properties>
25
+ <agent uuid="8511cc52-9d29-4dba-9f9f-4ae6de1019f2"/>
26
+ <artifacts baseUri="http://go-server.2.project:8153/go/files/defaultPipeline/3/Units/1/Test" pathFromArtifactRoot="pipelines/defaultPipeline/3/Units/1/Test"/>
27
+ <resources/>
28
+ <environmentvariables/>
29
+ </job>
@@ -0,0 +1,29 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+
3
+ <job name="PostBuild">
4
+ <link rel="self" href="http://go-server.2.project:8153/go/api/jobs/6.xml"/>
5
+ <id><![CDATA[urn:x-go.studios.thoughtworks.com:job-id:defaultPipeline:3:PostBuild:1:PostBuild]]></id>
6
+ <pipeline name="defaultPipeline" counter="3" label="3"/>
7
+ <stage name="PostBuild" counter="1" href="http://go-server.2.project:8153/go/api/stages/6.xml"/>
8
+ <result>Passed</result>
9
+ <state>Completed</state>
10
+ <properties>
11
+ <property name="cruise_agent"><![CDATA[go-agent-01.2.project]]></property>
12
+ <property name="cruise_job_duration"><![CDATA[7]]></property>
13
+ <property name="cruise_job_id"><![CDATA[6]]></property>
14
+ <property name="cruise_job_result"><![CDATA[Passed]]></property>
15
+ <property name="cruise_pipeline_counter"><![CDATA[3]]></property>
16
+ <property name="cruise_pipeline_label"><![CDATA[3]]></property>
17
+ <property name="cruise_stage_counter"><![CDATA[1]]></property>
18
+ <property name="cruise_timestamp_01_scheduled"><![CDATA[2012-10-23T08:46:42Z]]></property>
19
+ <property name="cruise_timestamp_02_assigned"><![CDATA[2012-10-23T08:46:53Z]]></property>
20
+ <property name="cruise_timestamp_03_preparing"><![CDATA[2012-10-23T08:47:03Z]]></property>
21
+ <property name="cruise_timestamp_04_building"><![CDATA[2012-10-23T08:47:03Z]]></property>
22
+ <property name="cruise_timestamp_05_completing"><![CDATA[2012-10-23T08:47:11Z]]></property>
23
+ <property name="cruise_timestamp_06_completed"><![CDATA[2012-10-23T08:47:11Z]]></property>
24
+ </properties>
25
+ <agent uuid="8511cc52-9d29-4dba-9f9f-4ae6de1019f2"/>
26
+ <artifacts baseUri="http://go-server.2.project:8153/go/files/defaultPipeline/3/PostBuild/1/PostBuild" pathFromArtifactRoot="pipelines/defaultPipeline/3/PostBuild/1/PostBuild"/>
27
+ <resources/>
28
+ <environmentvariables/>
29
+ </job>
@@ -0,0 +1,31 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+
3
+ <job name="Test">
4
+ <link rel="self" href="http://go-server.2.project:8153/go/api/jobs/7.xml"/>
5
+ <id><![CDATA[urn:x-go.studios.thoughtworks.com:job-id:defaultPipeline:4:Units:1:Test]]></id>
6
+ <pipeline name="defaultPipeline" counter="4" label="4"/>
7
+ <stage name="Units" counter="1" href="http://go-server.2.project:8153/go/api/stages/7.xml"/>
8
+ <result>Passed</result>
9
+ <state>Completed</state>
10
+ <properties>
11
+ <property name="cruise_agent"><![CDATA[go-agent-01.2.project]]></property>
12
+ <property name="cruise_job_duration"><![CDATA[20]]></property>
13
+ <property name="cruise_job_id"><![CDATA[7]]></property>
14
+ <property name="cruise_job_result"><![CDATA[Passed]]></property>
15
+ <property name="cruise_pipeline_counter"><![CDATA[4]]></property>
16
+ <property name="cruise_pipeline_label"><![CDATA[4]]></property>
17
+ <property name="cruise_stage_counter"><![CDATA[1]]></property>
18
+ <property name="cruise_timestamp_01_scheduled"><![CDATA[2012-10-26T05:52:10Z]]></property>
19
+ <property name="cruise_timestamp_02_assigned"><![CDATA[2012-10-26T05:52:20Z]]></property>
20
+ <property name="cruise_timestamp_03_preparing"><![CDATA[2012-10-26T05:52:30Z]]></property>
21
+ <property name="cruise_timestamp_04_building"><![CDATA[2012-10-26T05:52:31Z]]></property>
22
+ <property name="cruise_timestamp_05_completing"><![CDATA[2012-10-26T05:52:51Z]]></property>
23
+ <property name="cruise_timestamp_06_completed"><![CDATA[2012-10-26T05:52:51Z]]></property>
24
+ </properties>
25
+ <agent uuid="8511cc52-9d29-4dba-9f9f-4ae6de1019f2"/>
26
+ <artifacts baseUri="http://go-server.2.project:8153/go/files/defaultPipeline/4/Units/1/Test" pathFromArtifactRoot="pipelines/defaultPipeline/4/Units/1/Test"/>
27
+ <resources/>
28
+ <environmentvariables>
29
+ <variable name="PATH"><![CDATA[/opt/local/ruby/1.9.2-p290/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/root/bin]]></variable>
30
+ </environmentvariables>
31
+ </job>
@@ -0,0 +1,31 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+
3
+ <job name="PostBuild">
4
+ <link rel="self" href="http://go-server.2.project:8153/go/api/jobs/8.xml"/>
5
+ <id><![CDATA[urn:x-go.studios.thoughtworks.com:job-id:defaultPipeline:4:PostBuild:1:PostBuild]]></id>
6
+ <pipeline name="defaultPipeline" counter="4" label="4"/>
7
+ <stage name="PostBuild" counter="1" href="http://go-server.2.project:8153/go/api/stages/8.xml"/>
8
+ <result>Passed</result>
9
+ <state>Completed</state>
10
+ <properties>
11
+ <property name="cruise_agent"><![CDATA[go-agent-01.2.project]]></property>
12
+ <property name="cruise_job_duration"><![CDATA[7]]></property>
13
+ <property name="cruise_job_id"><![CDATA[8]]></property>
14
+ <property name="cruise_job_result"><![CDATA[Passed]]></property>
15
+ <property name="cruise_pipeline_counter"><![CDATA[4]]></property>
16
+ <property name="cruise_pipeline_label"><![CDATA[4]]></property>
17
+ <property name="cruise_stage_counter"><![CDATA[1]]></property>
18
+ <property name="cruise_timestamp_01_scheduled"><![CDATA[2012-10-26T05:52:51Z]]></property>
19
+ <property name="cruise_timestamp_02_assigned"><![CDATA[2012-10-26T05:53:01Z]]></property>
20
+ <property name="cruise_timestamp_03_preparing"><![CDATA[2012-10-26T05:53:11Z]]></property>
21
+ <property name="cruise_timestamp_04_building"><![CDATA[2012-10-26T05:53:12Z]]></property>
22
+ <property name="cruise_timestamp_05_completing"><![CDATA[2012-10-26T05:53:19Z]]></property>
23
+ <property name="cruise_timestamp_06_completed"><![CDATA[2012-10-26T05:53:19Z]]></property>
24
+ </properties>
25
+ <agent uuid="8511cc52-9d29-4dba-9f9f-4ae6de1019f2"/>
26
+ <artifacts baseUri="http://go-server.2.project:8153/go/files/defaultPipeline/4/PostBuild/1/PostBuild" pathFromArtifactRoot="pipelines/defaultPipeline/4/PostBuild/1/PostBuild"/>
27
+ <resources/>
28
+ <environmentvariables>
29
+ <variable name="PATH"><![CDATA[/opt/local/ruby/1.9.2-p290/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/root/bin]]></variable>
30
+ </environmentvariables>
31
+ </job>