Class: Buildbox::Runner
- Inherits:
-
Object
- Object
- Buildbox::Runner
- Includes:
- Celluloid, Celluloid::Logger
- Defined in:
- lib/buildbox/runner.rb
Instance Attribute Summary collapse
-
#build ⇒ Object
readonly
Returns the value of attribute build.
Instance Method Summary collapse
-
#initialize(build) ⇒ Runner
constructor
A new instance of Runner.
- #start ⇒ Object
Constructor Details
#initialize(build) ⇒ Runner
Returns a new instance of Runner.
12 13 14 |
# File 'lib/buildbox/runner.rb', line 12 def initialize(build) @build = build end |
Instance Attribute Details
#build ⇒ Object (readonly)
Returns the value of attribute build.
10 11 12 |
# File 'lib/buildbox/runner.rb', line 10 def build @build end |
Instance Method Details
#start ⇒ Object
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 |
# File 'lib/buildbox/runner.rb', line 16 def start info "Starting to build #{@build.namespace}/#{@build.id} starting..." FileUtils.mkdir_p(directory_path) File.open(script_path, 'w+') { |file| file.write(@build.script) } File.chmod(0777, script_path) info "Running script: #{script_path}" @build.started_at = Time.now.utc build.output = "" result = Command.run(script_path, :environment => @build.env, :directory => directory_path) do |chunk| build.output << chunk end build.output = result.output build.exit_status = result.exit_status File.delete(script_path) @build.finished_at = Time.now.utc info "#{@build.namespace} ##{@build.id} finished with exit status #{result.exit_status}" end |