vx-router 0.2.0.pre28

Sign up to get free protection for your applications and to get access to all the features.
Files changed (45) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +7 -0
  3. data/.rspec +3 -0
  4. data/Gemfile +9 -0
  5. data/LICENSE.txt +276 -0
  6. data/Rakefile +46 -0
  7. data/bin/vx-router +5 -0
  8. data/fixtures/jobs_publisher +13 -0
  9. data/fixtures/travis.yml +5 -0
  10. data/lib/vx/router.rb +158 -0
  11. data/lib/vx/router/build.rb +80 -0
  12. data/lib/vx/router/cli.rb +53 -0
  13. data/lib/vx/router/configuration.rb +27 -0
  14. data/lib/vx/router/consumers/build_logs_consumer.rb +13 -0
  15. data/lib/vx/router/consumers/build_status_consumer.rb +13 -0
  16. data/lib/vx/router/consumers/builds_consumer.rb +27 -0
  17. data/lib/vx/router/consumers/job_status_consumer.rb +13 -0
  18. data/lib/vx/router/consumers/jobs_consumer.rb +13 -0
  19. data/lib/vx/router/ext/array.rb +5 -0
  20. data/lib/vx/router/ext/string.rb +9 -0
  21. data/lib/vx/router/helper/config.rb +11 -0
  22. data/lib/vx/router/helper/logger.rb +11 -0
  23. data/lib/vx/router/helper/trace_sh_command.rb +12 -0
  24. data/lib/vx/router/initializers/amqp.rb +3 -0
  25. data/lib/vx/router/script_builder.rb +98 -0
  26. data/lib/vx/router/script_builder/databases.rb +28 -0
  27. data/lib/vx/router/script_builder/env.rb +21 -0
  28. data/lib/vx/router/script_builder/prepare.rb +58 -0
  29. data/lib/vx/router/script_builder/ruby.rb +68 -0
  30. data/lib/vx/router/script_builder/script.rb +22 -0
  31. data/lib/vx/router/script_builder/webdav_cache.rb +80 -0
  32. data/lib/vx/router/version.rb +5 -0
  33. data/spec/lib/build_spec.rb +123 -0
  34. data/spec/lib/configuration_spec.rb +23 -0
  35. data/spec/lib/router_spec.rb +80 -0
  36. data/spec/lib/script_builder/prepare_spec.rb +44 -0
  37. data/spec/lib/script_builder/webdav_cache_spec.rb +80 -0
  38. data/spec/lib/script_builder_spec.rb +36 -0
  39. data/spec/spec_helper.rb +17 -0
  40. data/spec/support/create.rb +40 -0
  41. data/spec/support/fixture.rb +7 -0
  42. data/spec/support/last_build_log_message.rb +3 -0
  43. data/spec/support/shared_examples/update_build_status_message.rb +5 -0
  44. data/vx-router.gemspec +32 -0
  45. metadata +225 -0
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 887839d7568444b556a955b09350999d6c0c0e9b
4
+ data.tar.gz: b22d88c00ab5d2406d1bd05a0c01701278575241
5
+ SHA512:
6
+ metadata.gz: 18c726988032edca6c2698927cce4ae7dd8b663fdc62bc1af59a635a9db17629af8968047aa35f7c6839f5e26b915a4dfa9958625ef4756eb12b03412028b006
7
+ data.tar.gz: 255c467e274d1b332ee856e051d36dd61d242e9f55b2612edb91e82cfa36b0a32d7f80ca31287d3b187a927a5da605f541b0a2624752103d7cdb8f2e7da3896f
@@ -0,0 +1,7 @@
1
+ fixtures/repo
2
+ .test
3
+ .vagrant
4
+ .bundle
5
+ pkg/
6
+ fixtures/repo
7
+ Gemfile.lock
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ -f d
2
+ --color
3
+ --order=rand
data/Gemfile ADDED
@@ -0,0 +1,9 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in vx-router.gemspec
4
+ gemspec
5
+
6
+ gem 'vx-common', path: File.expand_path("../../common", __FILE__)
7
+ gem 'vx-message', path: File.expand_path("../../message", __FILE__)
8
+ gem 'vx-build_configuration', path: File.expand_path("../../build_configuration", __FILE__)
9
+
@@ -0,0 +1,276 @@
1
+ Copyright (c) 2013 Dmitry Galinsky
2
+
3
+ The GNU General Public License, Version 2, June 1991 (GPLv2)
4
+ ============================================================
5
+
6
+ > Copyright (C) 1989, 1991 Free Software Foundation, Inc.
7
+ > 59 Temple Place, Suite 330
8
+ > Boston, MA 02111-1307 USA
9
+
10
+ Everyone is permitted to copy and distribute verbatim copies of this license
11
+ document, but changing it is not allowed.
12
+
13
+
14
+ Preamble
15
+ --------
16
+
17
+ The licenses for most software are designed to take away your freedom to share
18
+ and change it. By contrast, the GNU General Public License is intended to
19
+ guarantee your freedom to share and change free software--to make sure the
20
+ software is free for all its users. This General Public License applies to most
21
+ of the Free Software Foundation's software and to any other program whose
22
+ authors commit to using it. (Some other Free Software Foundation software is
23
+ covered by the GNU Library General Public License instead.) You can apply it to
24
+ your programs, too.
25
+
26
+ When we speak of free software, we are referring to freedom, not price. Our
27
+ General Public Licenses are designed to make sure that you have the freedom to
28
+ distribute copies of free software (and charge for this service if you wish),
29
+ that you receive source code or can get it if you want it, that you can change
30
+ the software or use pieces of it in new free programs; and that you know you can
31
+ do these things.
32
+
33
+ To protect your rights, we need to make restrictions that forbid anyone to deny
34
+ you these rights or to ask you to surrender the rights. These restrictions
35
+ translate to certain responsibilities for you if you distribute copies of the
36
+ software, or if you modify it.
37
+
38
+ For example, if you distribute copies of such a program, whether gratis or for a
39
+ fee, you must give the recipients all the rights that you have. You must make
40
+ sure that they, too, receive or can get the source code. And you must show them
41
+ these terms so they know their rights.
42
+
43
+ We protect your rights with two steps: (1) copyright the software, and (2) offer
44
+ you this license which gives you legal permission to copy, distribute and/or
45
+ modify the software.
46
+
47
+ Also, for each author's protection and ours, we want to make certain that
48
+ everyone understands that there is no warranty for this free software. If the
49
+ software is modified by someone else and passed on, we want its recipients to
50
+ know that what they have is not the original, so that any problems introduced by
51
+ others will not reflect on the original authors' reputations.
52
+
53
+ Finally, any free program is threatened constantly by software patents. We wish
54
+ to avoid the danger that redistributors of a free program will individually
55
+ obtain patent licenses, in effect making the program proprietary. To prevent
56
+ this, we have made it clear that any patent must be licensed for everyone's free
57
+ use or not licensed at all.
58
+
59
+ The precise terms and conditions for copying, distribution and modification
60
+ follow.
61
+
62
+
63
+ Terms And Conditions For Copying, Distribution And Modification
64
+ ---------------------------------------------------------------
65
+ 0. This License applies to any program or other work which contains a notice
66
+ placed by the copyright holder saying it may be distributed under the terms
67
+ of this General Public License. The "Program", below, refers to any such
68
+ program or work, and a "work based on the Program" means either the Program
69
+ or any derivative work under copyright law: that is to say, a work
70
+ containing the Program or a portion of it, either verbatim or with
71
+ modifications and/or translated into another language. (Hereinafter,
72
+ translation is included without limitation in the term "modification".)
73
+ Each licensee is addressed as "you".
74
+
75
+ Activities other than copying, distribution and modification are not
76
+ covered by this License; they are outside its scope. The act of running the
77
+ Program is not restricted, and the output from the Program is covered only
78
+ if its contents constitute a work based on the Program (independent of
79
+ having been made by running the Program). Whether that is true depends on
80
+ what the Program does.
81
+
82
+ 1. You may copy and distribute verbatim copies of the Program's source code as
83
+ you receive it, in any medium, provided that you conspicuously and
84
+ appropriately publish on each copy an appropriate copyright notice and
85
+ disclaimer of warranty; keep intact all the notices that refer to this
86
+ License and to the absence of any warranty; and give any other recipients
87
+ of the Program a copy of this License along with the Program.
88
+
89
+ You may charge a fee for the physical act of transferring a copy, and you
90
+ may at your option offer warranty protection in exchange for a fee.
91
+
92
+ 2. You may modify your copy or copies of the Program or any portion of it,
93
+ thus forming a work based on the Program, and copy and distribute such
94
+ modifications or work under the terms of Section 1 above, provided that you
95
+ also meet all of these conditions:
96
+
97
+ a) You must cause the modified files to carry prominent notices stating
98
+ that you changed the files and the date of any change.
99
+
100
+ b) You must cause any work that you distribute or publish, that in whole
101
+ or in part contains or is derived from the Program or any part thereof,
102
+ to be licensed as a whole at no charge to all third parties under the
103
+ terms of this License.
104
+
105
+ c) If the modified program normally reads commands interactively when run,
106
+ you must cause it, when started running for such interactive use in the
107
+ most ordinary way, to print or display an announcement including an
108
+ appropriate copyright notice and a notice that there is no warranty (or
109
+ else, saying that you provide a warranty) and that users may
110
+ redistribute the program under these conditions, and telling the user
111
+ how to view a copy of this License. (Exception: if the Program itself
112
+ is interactive but does not normally print such an announcement, your
113
+ work based on the Program is not required to print an announcement.)
114
+
115
+ These requirements apply to the modified work as a whole. If identifiable
116
+ sections of that work are not derived from the Program, and can be
117
+ reasonably considered independent and separate works in themselves, then
118
+ this License, and its terms, do not apply to those sections when you
119
+ distribute them as separate works. But when you distribute the same
120
+ sections as part of a whole which is a work based on the Program, the
121
+ distribution of the whole must be on the terms of this License, whose
122
+ permissions for other licensees extend to the entire whole, and thus to
123
+ each and every part regardless of who wrote it.
124
+
125
+ Thus, it is not the intent of this section to claim rights or contest your
126
+ rights to work written entirely by you; rather, the intent is to exercise
127
+ the right to control the distribution of derivative or collective works
128
+ based on the Program.
129
+
130
+ In addition, mere aggregation of another work not based on the Program with
131
+ the Program (or with a work based on the Program) on a volume of a storage
132
+ or distribution medium does not bring the other work under the scope of
133
+ this License.
134
+
135
+ 3. You may copy and distribute the Program (or a work based on it, under
136
+ Section 2) in object code or executable form under the terms of Sections 1
137
+ and 2 above provided that you also do one of the following:
138
+
139
+ a) Accompany it with the complete corresponding machine-readable source
140
+ code, which must be distributed under the terms of Sections 1 and 2
141
+ above on a medium customarily used for software interchange; or,
142
+
143
+ b) Accompany it with a written offer, valid for at least three years, to
144
+ give any third party, for a charge no more than your cost of physically
145
+ performing source distribution, a complete machine-readable copy of the
146
+ corresponding source code, to be distributed under the terms of
147
+ Sections 1 and 2 above on a medium customarily used for software
148
+ interchange; or,
149
+
150
+ c) Accompany it with the information you received as to the offer to
151
+ distribute corresponding source code. (This alternative is allowed only
152
+ for noncommercial distribution and only if you received the program in
153
+ object code or executable form with such an offer, in accord with
154
+ Subsection b above.)
155
+
156
+ The source code for a work means the preferred form of the work for making
157
+ modifications to it. For an executable work, complete source code means all
158
+ the source code for all modules it contains, plus any associated interface
159
+ definition files, plus the scripts used to control compilation and
160
+ installation of the executable. However, as a special exception, the source
161
+ code distributed need not include anything that is normally distributed (in
162
+ either source or binary form) with the major components (compiler, kernel,
163
+ and so on) of the operating system on which the executable runs, unless
164
+ that component itself accompanies the executable.
165
+
166
+ If distribution of executable or object code is made by offering access to
167
+ copy from a designated place, then offering equivalent access to copy the
168
+ source code from the same place counts as distribution of the source code,
169
+ even though third parties are not compelled to copy the source along with
170
+ the object code.
171
+
172
+ 4. You may not copy, modify, sublicense, or distribute the Program except as
173
+ expressly provided under this License. Any attempt otherwise to copy,
174
+ modify, sublicense or distribute the Program is void, and will
175
+ automatically terminate your rights under this License. However, parties
176
+ who have received copies, or rights, from you under this License will not
177
+ have their licenses terminated so long as such parties remain in full
178
+ compliance.
179
+
180
+ 5. You are not required to accept this License, since you have not signed it.
181
+ However, nothing else grants you permission to modify or distribute the
182
+ Program or its derivative works. These actions are prohibited by law if you
183
+ do not accept this License. Therefore, by modifying or distributing the
184
+ Program (or any work based on the Program), you indicate your acceptance of
185
+ this License to do so, and all its terms and conditions for copying,
186
+ distributing or modifying the Program or works based on it.
187
+
188
+ 6. Each time you redistribute the Program (or any work based on the Program),
189
+ the recipient automatically receives a license from the original licensor
190
+ to copy, distribute or modify the Program subject to these terms and
191
+ conditions. You may not impose any further restrictions on the recipients'
192
+ exercise of the rights granted herein. You are not responsible for
193
+ enforcing compliance by third parties to this License.
194
+
195
+ 7. If, as a consequence of a court judgment or allegation of patent
196
+ infringement or for any other reason (not limited to patent issues),
197
+ conditions are imposed on you (whether by court order, agreement or
198
+ otherwise) that contradict the conditions of this License, they do not
199
+ excuse you from the conditions of this License. If you cannot distribute so
200
+ as to satisfy simultaneously your obligations under this License and any
201
+ other pertinent obligations, then as a consequence you may not distribute
202
+ the Program at all. For example, if a patent license would not permit
203
+ royalty-free redistribution of the Program by all those who receive copies
204
+ directly or indirectly through you, then the only way you could satisfy
205
+ both it and this License would be to refrain entirely from distribution of
206
+ the Program.
207
+
208
+ If any portion of this section is held invalid or unenforceable under any
209
+ particular circumstance, the balance of the section is intended to apply
210
+ and the section as a whole is intended to apply in other circumstances.
211
+
212
+ It is not the purpose of this section to induce you to infringe any patents
213
+ or other property right claims or to contest validity of any such claims;
214
+ this section has the sole purpose of protecting the integrity of the free
215
+ software distribution system, which is implemented by public license
216
+ practices. Many people have made generous contributions to the wide range
217
+ of software distributed through that system in reliance on consistent
218
+ application of that system; it is up to the author/donor to decide if he or
219
+ she is willing to distribute software through any other system and a
220
+ licensee cannot impose that choice.
221
+
222
+ This section is intended to make thoroughly clear what is believed to be a
223
+ consequence of the rest of this License.
224
+
225
+ 8. If the distribution and/or use of the Program is restricted in certain
226
+ countries either by patents or by copyrighted interfaces, the original
227
+ copyright holder who places the Program under this License may add an
228
+ explicit geographical distribution limitation excluding those countries, so
229
+ that distribution is permitted only in or among countries not thus excluded.
230
+ In such case, this License incorporates the limitation as if written in
231
+ the body of this License.
232
+
233
+ 9. The Free Software Foundation may publish revised and/or new versions of the
234
+ General Public License from time to time. Such new versions will be similar
235
+ in spirit to the present version, but may differ in detail to address new
236
+ problems or concerns.
237
+
238
+ Each version is given a distinguishing version number. If the Program
239
+ specifies a version number of this License which applies to it and "any
240
+ later version", you have the option of following the terms and conditions
241
+ either of that version or of any later version published by the Free
242
+ Software Foundation. If the Program does not specify a version number of
243
+ this License, you may choose any version ever published by the Free
244
+ Software Foundation.
245
+
246
+ 10. If you wish to incorporate parts of the Program into other free programs
247
+ whose distribution conditions are different, write to the author to ask for
248
+ permission. For software which is copyrighted by the Free Software
249
+ Foundation, write to the Free Software Foundation; we sometimes make
250
+ exceptions for this. Our decision will be guided by the two goals of
251
+ preserving the free status of all derivatives of our free software and of
252
+ promoting the sharing and reuse of software generally.
253
+
254
+
255
+ No Warranty
256
+ -----------
257
+
258
+ 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR
259
+ THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
260
+ OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
261
+ PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
262
+ OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
263
+ MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO
264
+ THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM
265
+ PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR
266
+ CORRECTION.
267
+
268
+ 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL
269
+ ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE
270
+ THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
271
+ GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
272
+ USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
273
+ DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
274
+ PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
275
+ EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
276
+ SUCH DAMAGES.
@@ -0,0 +1,46 @@
1
+ require 'rubygems'
2
+ require 'bundler'
3
+ Bundler.require
4
+ require 'rspec/core/rake_task'
5
+ require "bundler/gem_tasks"
6
+
7
+ RSpec::Core::RakeTask.new(:spec)
8
+
9
+ desc "download test repo and run spec"
10
+ task :default => ["test:create_repo", :spec]
11
+
12
+ namespace :test do
13
+ desc "download test repo"
14
+ task :create_repo do
15
+ dir = "fixtures/repo"
16
+ unless File.directory? dir
17
+ cmd = "git clone https://github.com/evrone/ci-worker-test-repo.git fixtures/repo"
18
+ puts cmd
19
+ system cmd
20
+ end
21
+ end
22
+ end
23
+
24
+ desc "run travis build"
25
+ task :travis => :default
26
+
27
+ namespace :print do
28
+ task :script do
29
+ require 'vx/message/testing'
30
+ require File.expand_path("../spec/support/fixture", __FILE__)
31
+ require File.expand_path("../spec/support/create", __FILE__)
32
+
33
+ build = create :build
34
+ configuration = create :configuration
35
+
36
+ script_builder = Vx::Router::ScriptBuilder.new(build, configuration)
37
+
38
+ puts "\n#===> BEGIN BEFORE SCRIPT"
39
+ puts script_builder.to_before_script
40
+ puts "#===> END BEFORE SCRIPT\n"
41
+
42
+ puts "\n#===> BEGIN SCRIPT\n"
43
+ puts script_builder.to_script
44
+ puts "#===> END SCRIPT\n\n"
45
+ end
46
+ end
@@ -0,0 +1,5 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require File.expand_path("../../lib/vx/router", __FILE__)
4
+
5
+ Vx::Router::CLI.new.run
@@ -0,0 +1,13 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require File.expand_path("../../lib/vx/router", __FILE__)
4
+
5
+ require 'vx/message/testing'
6
+
7
+ include Vx
8
+ Router::CLI.new
9
+
10
+ num = ENV['NUM'] || 1
11
+ num.to_i.times do
12
+ Router::BuildsConsumer.publish Message::PerformBuild.test_message
13
+ end
@@ -0,0 +1,5 @@
1
+ rvm:
2
+ - 2.0.0
3
+ before_script:
4
+ - "echo before_script"
5
+ script: "RAILS_ENV=test ls -1 && echo DONE!"
@@ -0,0 +1,158 @@
1
+ require 'rubygems'
2
+ require 'pathname'
3
+ require 'fileutils'
4
+ require 'thread'
5
+
6
+ require 'vx/common/error_notifier'
7
+ require 'vx/build_configuration'
8
+
9
+ require File.expand_path("../..", __FILE__) + "/vx/router/ext/string.rb"
10
+ require File.expand_path("../..", __FILE__) + "/vx/router/ext/array.rb"
11
+
12
+ module Vx
13
+ class Router
14
+
15
+ autoload :Configuration, File.expand_path("../router/configuration", __FILE__)
16
+ autoload :Build, File.expand_path("../router/build", __FILE__)
17
+ autoload :ScriptBuilder, File.expand_path("../router/script_builder", __FILE__)
18
+ autoload :CLI, File.expand_path("../router/cli", __FILE__)
19
+
20
+ autoload :BuildLogsConsumer, File.expand_path("../router/consumers/build_logs_consumer", __FILE__)
21
+ autoload :BuildStatusConsumer, File.expand_path("../router/consumers/build_status_consumer", __FILE__)
22
+ autoload :BuildsConsumer, File.expand_path("../router/consumers/builds_consumer", __FILE__)
23
+ autoload :JobsConsumer, File.expand_path("../router/consumers/jobs_consumer", __FILE__)
24
+ autoload :JobStatusConsumer, File.expand_path("../router/consumers/job_status_consumer", __FILE__)
25
+
26
+ module Helper
27
+ autoload :Config, File.expand_path("../router/helper/config", __FILE__)
28
+ autoload :Logger, File.expand_path("../router/helper/logger", __FILE__)
29
+ autoload :TraceShCommand, File.expand_path("../router/helper/trace_sh_command", __FILE__)
30
+ end
31
+
32
+ @@root = Pathname.new File.expand_path('../../..', __FILE__)
33
+ @@config_mutex = Mutex.new
34
+
35
+ class << self
36
+ def root
37
+ @@root
38
+ end
39
+
40
+ def logger
41
+ config.logger
42
+ end
43
+
44
+ def configure
45
+ yield config
46
+ config
47
+ end
48
+
49
+ def config
50
+ @config ||= begin
51
+ @@config_mutex.synchronize do
52
+ Configuration.new
53
+ end
54
+ end
55
+ end
56
+
57
+ def reset_config!
58
+ @config = nil
59
+ end
60
+
61
+ def initialize!
62
+ root.join("lib/vx/router/initializers").children.each do |e|
63
+ require e
64
+ end
65
+ end
66
+ end
67
+
68
+ include Helper::Logger
69
+ include Helper::Config
70
+
71
+ attr_reader :build, :configuration
72
+
73
+ def initialize(build)
74
+ @build = build
75
+ @configuration = nil
76
+ end
77
+
78
+ def perform
79
+ log_build do
80
+ update_build_status do
81
+ load_configuration &&
82
+ create_and_delivery_build_matrix
83
+ end
84
+ end
85
+ build.release
86
+ end
87
+
88
+ def create_and_delivery_build_matrix
89
+ matrix = BuildConfiguration::Matrix.new configuration
90
+ build.jobs_count = matrix.configurations.size
91
+
92
+ matrix.configurations.each_with_index do |c, idx|
93
+ number = idx + 1
94
+ message = build.to_perform_job_message c, number
95
+ logger.info "delivery job #{message.id}.#{number} #{c.to_matrix_s}"
96
+ JobsConsumer.publish message
97
+
98
+ publish_job_status_message build, c, number
99
+ end
100
+
101
+ true
102
+ end
103
+
104
+ def load_configuration
105
+ @configuration = BuildConfiguration.from_yaml build.message.travis
106
+ @configuration
107
+ end
108
+
109
+ def log_build
110
+ logger.tagged("build #{build.message.id}") do
111
+ logger.info "starting build"
112
+ rs = yield
113
+ logger.info "done build"
114
+ rs
115
+ end
116
+ end
117
+
118
+ def update_build_status
119
+ publish_build_status_message Build::STARTED
120
+ rs = false
121
+ begin
122
+ rs = yield
123
+ rescue Exception => e
124
+ logger.error("ERROR: #{e.inspect}\n BACKTRACE:\n#{e.backtrace.map{|i| " #{i}" }.join("\n")}")
125
+ Common::ErrorNotifier.notify(e)
126
+ end
127
+
128
+ if rs
129
+ publish_build_status_message Build::FINISHED
130
+ else
131
+ publish_build_status_message Build::FAILED
132
+ end
133
+ rs
134
+ end
135
+
136
+ private
137
+
138
+ def publish_build_status_message(status)
139
+ message = build.to_build_status_message(status)
140
+ logger.info "delivered build status #{message.inspect}"
141
+ BuildStatusConsumer.publish message
142
+ end
143
+
144
+ def publish_job_status_message(build, travis, job_number)
145
+ message = Message::JobStatus.new(
146
+ build_id: build.message.id,
147
+ job_id: job_number,
148
+ status: Build::INITIALIED,
149
+ tm: Time.now.to_i,
150
+ matrix: travis.matrix_keys
151
+ )
152
+ logger.info "delivery job status #{message.inspect}"
153
+ JobStatusConsumer.publish message
154
+ end
155
+
156
+ end
157
+ end
158
+