Method: Stax::Cmd::Codebuild#start
- Defined in:
- lib/stax/mixin/codebuild.rb
#start ⇒ Object
121 122 123 124 125 126 127 128 129 130 131 |
# File 'lib/stax/mixin/codebuild.rb', line 121 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 |