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,45 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+
3
+ <pipeline name="defaultPipeline" counter="1" label="1">
4
+ <link rel="self"
5
+ href="http://go-server.1.project:8153/go/api/pipelines/defaultPipeline/1.xml"/>
6
+ <id><![CDATA[urn:x-go.studios.thoughtworks.com:job-id:defaultPipeline:1]]></id>
7
+ <scheduleTime>2012-06-05T08:33:09Z</scheduleTime>
8
+ <materials>
9
+ <material
10
+ materialUri="http://go-server.1.project:8153/go/api/materials/1.xml"
11
+ type="GitMaterial"
12
+ url="git://go-saas-worker.1.project/ThoughtWorksInc/go-saas-rails"
13
+ branch="master">
14
+ <modifications>
15
+ <changeset
16
+ changesetUri="http://go-server.1.project:8153/go/api/materials/1/changeset/a84ffc0e58b7b2ba7d5b15abae70c2d921b835e6.xml">
17
+ <user><![CDATA[Manish Chakravarty
18
+ <manishchaks@gmail.com>]]></user>
19
+ <checkinTime>2012-06-04T10:57:09Z</checkinTime>
20
+ <revision><![CDATA[a84ffc0e58b7b2ba7d5b15abae70c2d921b835e6]]></revision>
21
+ <message><![CDATA[Revert "Added "HubRuby" gem for talking to
22
+ GitHub."
23
+
24
+ This reverts commit
25
+ 2b2e6ee3f28cf0f34241a8413c28180d8b74e14f.]]></message>
26
+ <file name="Gemfile" action="modified"/>
27
+ <file name="Gemfile.lock" action="modified"/>
28
+ <file name="vendor/cache/httparty-0.8.3.gem"
29
+ action="deleted"/>
30
+ <file name="vendor/cache/hubruby-0.1.1.gem"
31
+ action="deleted"/>
32
+ <file name="vendor/cache/multi_xml-0.5.1.gem"
33
+ action="deleted"/>
34
+ </changeset>
35
+ </modifications>
36
+ </material>
37
+ </materials>
38
+ <stages>
39
+ <stage
40
+ href="http://go-server.1.project:8153/go/api/stages/1.xml"/>
41
+ <stage
42
+ href="http://go-server.1.project:8153/go/api/stages/2.xml"/>
43
+ </stages>
44
+ <approvedBy><![CDATA[anonymous]]></approvedBy>
45
+ </pipeline>
@@ -0,0 +1,39 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+
3
+ <pipeline name="defaultPipeline" counter="2" label="2">
4
+ <link rel="self"
5
+ href="http://go-server.1.project:8153/go/api/pipelines/defaultPipeline/2.xml"/>
6
+ <id><![CDATA[urn:x-go.studios.thoughtworks.com:job-id:defaultPipeline:2]]></id>
7
+ <link rel="insertedAfter"
8
+ href="http://go-server.1.project:8153/go/api/pipelines/defaultPipeline/1.xml"/>
9
+ <scheduleTime>2012-06-05T10:02:10Z</scheduleTime>
10
+ <materials>
11
+ <material
12
+ materialUri="http://go-server.1.project:8153/go/api/materials/1.xml"
13
+ type="GitMaterial"
14
+ url="git://go-saas-worker.1.project/ThoughtWorksInc/go-saas-rails"
15
+ branch="master">
16
+ <modifications>
17
+ <changeset
18
+ changesetUri="http://go-server.1.project:8153/go/api/materials/1/changeset/f475d63c2e0f4db5c26e79541278afcb00d63cde.xml">
19
+ <user><![CDATA[Manish Chakravarty
20
+ <manishchaks@gmail.com>]]></user>
21
+ <checkinTime>2012-06-05T08:12:20Z</checkinTime>
22
+ <revision><![CDATA[f475d63c2e0f4db5c26e79541278afcb00d63cde]]></revision>
23
+ <message><![CDATA[Refactored code to ensure validity of
24
+ repository URL's. Wrote a test for
25
+ collaboration]]></message>
26
+ <file name="app/models/project.rb" action="modified"/>
27
+ <file name="spec/models/collaboration_spec.rb"
28
+ action="added"/>
29
+ <file name="spec/models/user_spec.rb" action="modified"/>
30
+ </changeset>
31
+ </modifications>
32
+ </material>
33
+ </materials>
34
+ <stages>
35
+ <stage
36
+ href="http://go-server.1.project:8153/go/api/stages/3.xml"/>
37
+ </stages>
38
+ <approvedBy><![CDATA[anonymous]]></approvedBy>
39
+ </pipeline>
@@ -0,0 +1,71 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+
3
+ <pipeline name="defaultPipeline" counter="3" label="3">
4
+ <link rel="self"
5
+ href="http://go-server.1.project:8153/go/api/pipelines/defaultPipeline/3.xml"/>
6
+ <id><![CDATA[urn:x-go.studios.thoughtworks.com:job-id:defaultPipeline:3]]></id>
7
+ <link rel="insertedAfter"
8
+ href="http://go-server.1.project:8153/go/api/pipelines/defaultPipeline/2.xml"/>
9
+ <scheduleTime>2012-06-05T14:39:27Z</scheduleTime>
10
+ <materials>
11
+ <material
12
+ materialUri="http://go-server.1.project:8153/go/api/materials/1.xml"
13
+ type="GitMaterial"
14
+ url="git://go-saas-worker.1.project/ThoughtWorksInc/go-saas-rails"
15
+ branch="master">
16
+ <modifications>
17
+ <changeset
18
+ changesetUri="http://go-server.1.project:8153/go/api/materials/1/changeset/dc8b3df12b16770dff48cea229559cc0ea40137f.xml">
19
+ <user><![CDATA[Manish Chakravarty
20
+ <manishchaks@gmail.com>]]></user>
21
+ <checkinTime>2012-06-05T12:02:18Z</checkinTime>
22
+ <revision><![CDATA[dc8b3df12b16770dff48cea229559cc0ea40137f]]></revision>
23
+ <message><![CDATA[Fixed a bug with detection if a github
24
+ repo is already present in the
25
+ system. Updated project_spec accordingly.]]></message>
26
+ <file name="app/models/project.rb" action="modified"/>
27
+ <file name="spec/models/project_spec.rb" action="modified"/>
28
+ </changeset>
29
+ <changeset
30
+ changesetUri="http://go-server.1.project:8153/go/api/materials/1/changeset/fc901bb18b34d42045ab21d56378fbe127437777.xml">
31
+ <user><![CDATA[Manish Chakravarty
32
+ <manishchaks@gmail.com>]]></user>
33
+ <checkinTime>2012-06-05T11:39:27Z</checkinTime>
34
+ <revision><![CDATA[fc901bb18b34d42045ab21d56378fbe127437777]]></revision>
35
+ <message><![CDATA[Added test to project spec to determine if
36
+ a github repository is already present in the
37
+ system. Code-cleanup of Project spec.]]></message>
38
+ <file name="spec/models/project_spec.rb" action="modified"/>
39
+ </changeset>
40
+ <changeset
41
+ changesetUri="http://go-server.1.project:8153/go/api/materials/1/changeset/9580a8f96cdc5add9ce5560a93a93ce575ddc0e5.xml">
42
+ <user><![CDATA[Manish Chakravarty
43
+ <manishchaks@gmail.com>]]></user>
44
+ <checkinTime>2012-06-05T11:38:04Z</checkinTime>
45
+ <revision><![CDATA[9580a8f96cdc5add9ce5560a93a93ce575ddc0e5]]></revision>
46
+ <message><![CDATA[Added a convenience method to figure out
47
+ if a given github repository is present as a project in our
48
+ system]]></message>
49
+ <file name="app/models/project.rb" action="modified"/>
50
+ </changeset>
51
+ <changeset
52
+ changesetUri="http://go-server.1.project:8153/go/api/materials/1/changeset/fe15104025eaed288eec088d8153e7b51242117d.xml">
53
+ <user><![CDATA[Manish Chakravarty
54
+ <manishchaks@gmail.com>]]></user>
55
+ <checkinTime>2012-06-05T10:09:51Z</checkinTime>
56
+ <revision><![CDATA[fe15104025eaed288eec088d8153e7b51242117d]]></revision>
57
+ <message><![CDATA[Refactored and cleaned up
58
+ DashBoardController and Project specs.]]></message>
59
+ <file name="spec/controllers/dashboard_controller_spec.rb"
60
+ action="modified"/>
61
+ <file name="spec/models/project_spec.rb" action="modified"/>
62
+ </changeset>
63
+ </modifications>
64
+ </material>
65
+ </materials>
66
+ <stages>
67
+ <stage
68
+ href="http://go-server.1.project:8153/go/api/stages/4.xml"/>
69
+ </stages>
70
+ <approvedBy><![CDATA[anonymous]]></approvedBy>
71
+ </pipeline>
@@ -0,0 +1,180 @@
1
+ <feed xmlns="http://www.w3.org/2005/Atom"
2
+ xmlns:go="http://www.thoughtworks-studios.com/ns/go">
3
+ <title><![CDATA[defaultPipeline]]></title>
4
+ <id>http://go-server.1.project:8153/go/api/pipelines/defaultPipeline/stages.xml</id>
5
+ <author>
6
+ <name>Go</name>
7
+ </author>
8
+ <updated>2012-06-05T14:40:29+00:00</updated>
9
+ <link rel="self"
10
+ href="http://go-server.1.project:8153/go/api/pipelines/defaultPipeline/stages.xml"/>
11
+
12
+ <entry>
13
+ <title><![CDATA[defaultPipeline(3) stage Units(1)
14
+ Passed]]></title>
15
+ <updated>2012-06-05T14:40:29+00:00</updated>
16
+ <id>http://go-server.1.project:8153/go/pipelines/defaultPipeline/3/Units/1</id>
17
+
18
+
19
+ <author>
20
+ <name><![CDATA[Manish Chakravarty
21
+ <manishchaks@gmail.com>]]></name>
22
+ </author>
23
+
24
+
25
+ <link title="Units Stage Detail"
26
+ href="http://go-server.1.project:8153/go/api/stages/4.xml"
27
+ rel="alternate" type="application/vnd.go+xml"/>
28
+ <link title="Units Stage Detail"
29
+ href="http://go-server.1.project:8153/go/pipelines/defaultPipeline/3/Units/1"
30
+ rel="alternate" type="text/html"/>
31
+
32
+ <link title="defaultPipeline Pipeline Detail"
33
+ href="http://go-server.1.project:8153/go/api/pipelines/defaultPipeline/3.xml"
34
+ rel="http://www.thoughtworks-studios.com/ns/relations/go/pipeline"
35
+ type="application/vnd.go+xml"/>
36
+ <link title="defaultPipeline Pipeline Detail"
37
+ href="http://go-server.1.project:8153/go/pipelines/defaultPipeline/3/Units/1/pipeline"
38
+ rel="http://www.thoughtworks-studios.com/ns/relations/go/pipeline"
39
+ type="text/html"/>
40
+
41
+
42
+
43
+ <category
44
+ scheme="http://www.thoughtworks-studios.com/ns/categories/go"
45
+ term="stage" label="Stage" />
46
+ <category
47
+ scheme="http://www.thoughtworks-studios.com/ns/categories/go"
48
+ term="completed" label="Completed" />
49
+ <category
50
+ scheme="http://www.thoughtworks-studios.com/ns/categories/go"
51
+ term="passed" label="Passed" />
52
+ </entry>
53
+
54
+ <entry>
55
+ <title><![CDATA[defaultPipeline(2) stage Units(1)
56
+ Failed]]></title>
57
+ <updated>2012-06-05T10:03:09+00:00</updated>
58
+ <id>http://go-server.1.project:8153/go/pipelines/defaultPipeline/2/Units/1</id>
59
+
60
+
61
+ <author>
62
+ <name><![CDATA[Manish Chakravarty
63
+ <manishchaks@gmail.com>]]></name>
64
+ </author>
65
+
66
+
67
+ <link title="Units Stage Detail"
68
+ href="http://go-server.1.project:8153/go/api/stages/3.xml"
69
+ rel="alternate" type="application/vnd.go+xml"/>
70
+ <link title="Units Stage Detail"
71
+ href="http://go-server.1.project:8153/go/pipelines/defaultPipeline/2/Units/1"
72
+ rel="alternate" type="text/html"/>
73
+
74
+ <link title="defaultPipeline Pipeline Detail"
75
+ href="http://go-server.1.project:8153/go/api/pipelines/defaultPipeline/2.xml"
76
+ rel="http://www.thoughtworks-studios.com/ns/relations/go/pipeline"
77
+ type="application/vnd.go+xml"/>
78
+ <link title="defaultPipeline Pipeline Detail"
79
+ href="http://go-server.1.project:8153/go/pipelines/defaultPipeline/2/Units/1/pipeline"
80
+ rel="http://www.thoughtworks-studios.com/ns/relations/go/pipeline"
81
+ type="text/html"/>
82
+
83
+
84
+
85
+ <category
86
+ scheme="http://www.thoughtworks-studios.com/ns/categories/go"
87
+ term="stage" label="Stage" />
88
+ <category
89
+ scheme="http://www.thoughtworks-studios.com/ns/categories/go"
90
+ term="completed" label="Completed" />
91
+ <category
92
+ scheme="http://www.thoughtworks-studios.com/ns/categories/go"
93
+ term="failed" label="Failed" />
94
+ </entry>
95
+
96
+ <entry>
97
+ <title><![CDATA[defaultPipeline(1) stage Functionals(1)
98
+ Passed]]></title>
99
+ <updated>2012-06-05T08:36:59+00:00</updated>
100
+ <id>http://go-server.1.project:8153/go/pipelines/defaultPipeline/1/Functionals/1</id>
101
+
102
+
103
+ <author>
104
+ <name><![CDATA[Manish Chakravarty
105
+ <manishchaks@gmail.com>]]></name>
106
+ </author>
107
+
108
+
109
+ <link title="Functionals Stage Detail"
110
+ href="http://go-server.1.project:8153/go/api/stages/2.xml"
111
+ rel="alternate" type="application/vnd.go+xml"/>
112
+ <link title="Functionals Stage Detail"
113
+ href="http://go-server.1.project:8153/go/pipelines/defaultPipeline/1/Functionals/1"
114
+ rel="alternate" type="text/html"/>
115
+
116
+ <link title="defaultPipeline Pipeline Detail"
117
+ href="http://go-server.1.project:8153/go/api/pipelines/defaultPipeline/1.xml"
118
+ rel="http://www.thoughtworks-studios.com/ns/relations/go/pipeline"
119
+ type="application/vnd.go+xml"/>
120
+ <link title="defaultPipeline Pipeline Detail"
121
+ href="http://go-server.1.project:8153/go/pipelines/defaultPipeline/1/Functionals/1/pipeline"
122
+ rel="http://www.thoughtworks-studios.com/ns/relations/go/pipeline"
123
+ type="text/html"/>
124
+
125
+
126
+
127
+ <category
128
+ scheme="http://www.thoughtworks-studios.com/ns/categories/go"
129
+ term="stage" label="Stage" />
130
+ <category
131
+ scheme="http://www.thoughtworks-studios.com/ns/categories/go"
132
+ term="completed" label="Completed" />
133
+ <category
134
+ scheme="http://www.thoughtworks-studios.com/ns/categories/go"
135
+ term="passed" label="Passed" />
136
+ </entry>
137
+
138
+ <entry>
139
+ <title><![CDATA[defaultPipeline(1) stage Units(1)
140
+ Passed]]></title>
141
+ <updated>2012-06-05T08:36:19+00:00</updated>
142
+ <id>http://go-server.1.project:8153/go/pipelines/defaultPipeline/1/Units/1</id>
143
+
144
+
145
+ <author>
146
+ <name><![CDATA[Manish Chakravarty
147
+ <manishchaks@gmail.com>]]></name>
148
+ </author>
149
+
150
+
151
+ <link title="Units Stage Detail"
152
+ href="http://go-server.1.project:8153/go/api/stages/1.xml"
153
+ rel="alternate" type="application/vnd.go+xml"/>
154
+ <link title="Units Stage Detail"
155
+ href="http://go-server.1.project:8153/go/pipelines/defaultPipeline/1/Units/1"
156
+ rel="alternate" type="text/html"/>
157
+
158
+ <link title="defaultPipeline Pipeline Detail"
159
+ href="http://go-server.1.project:8153/go/api/pipelines/defaultPipeline/1.xml"
160
+ rel="http://www.thoughtworks-studios.com/ns/relations/go/pipeline"
161
+ type="application/vnd.go+xml"/>
162
+ <link title="defaultPipeline Pipeline Detail"
163
+ href="http://go-server.1.project:8153/go/pipelines/defaultPipeline/1/Units/1/pipeline"
164
+ rel="http://www.thoughtworks-studios.com/ns/relations/go/pipeline"
165
+ type="text/html"/>
166
+
167
+
168
+
169
+ <category
170
+ scheme="http://www.thoughtworks-studios.com/ns/categories/go"
171
+ term="stage" label="Stage" />
172
+ <category
173
+ scheme="http://www.thoughtworks-studios.com/ns/categories/go"
174
+ term="completed" label="Completed" />
175
+ <category
176
+ scheme="http://www.thoughtworks-studios.com/ns/categories/go"
177
+ term="passed" label="Passed" />
178
+ </entry>
179
+
180
+ </feed>
@@ -0,0 +1,16 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+
3
+ <stage name="Units" counter="1">
4
+ <link rel="self"
5
+ href="http://go-server.1.project:8153/go/api/stages/1.xml"/>
6
+ <id><![CDATA[urn:x-go.studios.thoughtworks.com:stage-id:defaultPipeline:1:Units:1]]></id>
7
+ <pipeline name="defaultPipeline" counter="1" label="1"
8
+ href="http://go-server.1.project:8153/go/api/pipelines/defaultPipeline/1.xml"/>
9
+ <updated>2012-06-05T08:36:19Z</updated>
10
+ <result>Passed</result>
11
+ <state>Completed</state>
12
+ <approvedBy><![CDATA[anonymous]]></approvedBy>
13
+ <jobs>
14
+ <job href="http://go-server.1.project:8153/go/api/jobs/1.xml"/>
15
+ </jobs>
16
+ </stage>
@@ -0,0 +1,16 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+
3
+ <stage name="Functionals" counter="1">
4
+ <link rel="self"
5
+ href="http://go-server.1.project:8153/go/api/stages/2.xml"/>
6
+ <id><![CDATA[urn:x-go.studios.thoughtworks.com:stage-id:defaultPipeline:1:Functionals:1]]></id>
7
+ <pipeline name="defaultPipeline" counter="1" label="1"
8
+ href="http://go-server.1.project:8153/go/api/pipelines/defaultPipeline/1.xml"/>
9
+ <updated>2012-06-05T08:36:59Z</updated>
10
+ <result>Passed</result>
11
+ <state>Completed</state>
12
+ <approvedBy><![CDATA[changes]]></approvedBy>
13
+ <jobs>
14
+ <job href="http://go-server.1.project:8153/go/api/jobs/2.xml"/>
15
+ </jobs>
16
+ </stage>
@@ -0,0 +1,16 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+
3
+ <stage name="Units" counter="1">
4
+ <link rel="self"
5
+ href="http://go-server.1.project:8153/go/api/stages/3.xml"/>
6
+ <id><![CDATA[urn:x-go.studios.thoughtworks.com:stage-id:defaultPipeline:2:Units:1]]></id>
7
+ <pipeline name="defaultPipeline" counter="2" label="2"
8
+ href="http://go-server.1.project:8153/go/api/pipelines/defaultPipeline/2.xml"/>
9
+ <updated>2012-06-05T10:03:09Z</updated>
10
+ <result>Failed</result>
11
+ <state>Completed</state>
12
+ <approvedBy><![CDATA[anonymous]]></approvedBy>
13
+ <jobs>
14
+ <job href="http://go-server.1.project:8153/go/api/jobs/3.xml"/>
15
+ </jobs>
16
+ </stage>
@@ -0,0 +1,16 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+
3
+ <stage name="Units" counter="1">
4
+ <link rel="self"
5
+ href="http://go-server.1.project:8153/go/api/stages/4.xml"/>
6
+ <id><![CDATA[urn:x-go.studios.thoughtworks.com:stage-id:defaultPipeline:3:Units:1]]></id>
7
+ <pipeline name="defaultPipeline" counter="3" label="3"
8
+ href="http://go-server.1.project:8153/go/api/pipelines/defaultPipeline/3.xml"/>
9
+ <updated>2012-06-05T14:40:29Z</updated>
10
+ <result>Passed</result>
11
+ <state>Completed</state>
12
+ <approvedBy><![CDATA[anonymous]]></approvedBy>
13
+ <jobs>
14
+ <job href="http://go-server.1.project:8153/go/api/jobs/4.xml"/>
15
+ </jobs>
16
+ </stage>
@@ -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