Method: Stax::Cmd::Codebuild#start
- Defined in:
- lib/stax/mixin/codebuild.rb
#start ⇒ Object
109 110 111 112 113 114 115 116 117 118 119 |
# File 'lib/stax/mixin/codebuild.rb', line 109 def start project = [:project] || my.stack_project_names.first version = [:version] || Git.sha debug("Starting build for #{project} #{version}") build = Aws::Codebuild.start( project_name: project, source_version: version, ) puts build.id tail build.id end |