All Projects → wata727 → drunker

wata727 / drunker

Licence: MIT license
Distributed CLI runner on AWS CodeBuild

Programming Languages

ruby
36898 projects - #4 most used programming language

Projects that are alternatives of or similar to drunker

php.rb
[Retired] PHP.rb translates Ruby code into PHP code.
Stars: ✭ 86 (+290.91%)
Mutual labels:  rubygems
The-Ruby-Workshop
A New, Interactive Approach to Learning Ruby
Stars: ✭ 26 (+18.18%)
Mutual labels:  rubygems
harvesting
Ruby wrapper for the Harvest API v2
Stars: ✭ 24 (+9.09%)
Mutual labels:  rubygems
agency-jekyll-theme
Jekyll version of the newest Agency Bootstrap theme, plus new features: Google Analytics, Markdown support, custom pages, and more!
Stars: ✭ 222 (+909.09%)
Mutual labels:  rubygems
vital
Design Framework
Stars: ✭ 53 (+140.91%)
Mutual labels:  rubygems
tss-rb
A Ruby implementation of Threshold Secret Sharing (Shamir) as defined in IETF Internet-Draft draft-mcgrew-tss-03.txt
Stars: ✭ 22 (+0%)
Mutual labels:  rubygems
yavdb
Yet Another Vulnerability Database
Stars: ✭ 14 (-36.36%)
Mutual labels:  rubygems
rubysec.github.io
Current home of rubysec.com
Stars: ✭ 25 (+13.64%)
Mutual labels:  rubygems
microformats-ruby
Ruby gem that parse HTML containing microformats/microformats2 and returns Ruby objects, a Ruby hash or a JSON hash
Stars: ✭ 89 (+304.55%)
Mutual labels:  rubygems
material-sass
A rubygem of Material Design for Bootstrap 4
Stars: ✭ 55 (+150%)
Mutual labels:  rubygems
mercadopago
Gem to communicate with the MercadoPago API
Stars: ✭ 31 (+40.91%)
Mutual labels:  rubygems
waxseal
Big official brass stamp to make signing gems dead simple.
Stars: ✭ 21 (-4.55%)
Mutual labels:  rubygems
sxp.rb
A universal S-expression parser for Ruby.
Stars: ✭ 49 (+122.73%)
Mutual labels:  rubygems
sane patch
Making monkey patches sane again
Stars: ✭ 63 (+186.36%)
Mutual labels:  rubygems
vultr.rb
Ruby bindings for VULTR API v2.
Stars: ✭ 47 (+113.64%)
Mutual labels:  rubygems
bitcache
[Retired] Distributed, content-addressable storage system.
Stars: ✭ 30 (+36.36%)
Mutual labels:  rubygems
fcmpush
Firebase Cloud Messaging API wrapper for Ruby, suppot HTTP v1 API including access_token auto refresh feature.
Stars: ✭ 44 (+100%)
Mutual labels:  rubygems
sinator
Sinatra application generator
Stars: ✭ 19 (-13.64%)
Mutual labels:  rubygems
rails-mini-profiler
Performance profiling for Rails, made simple 🦔
Stars: ✭ 380 (+1627.27%)
Mutual labels:  rubygems
Amazon
Simple access to Amazon's web services.
Stars: ✭ 20 (-9.09%)
Mutual labels:  codebuild

Drunker

Build Status MIT License Gem Version

Distributed CLI runner on AWS CodeBuild. This is a wrapper for handling CodeBuild container more easily.

Installation

$ gem install drunker

Usage

All you need to use Drunker is the Docker image name of the container you want to use and the command you want to execute (Of course, AWS credentials is also necessary). For example, you can run RSpec on CodeBuild with the following command.

$ bundle install --path=vendor/bundle
$ drunker run --env=BUNDLE_PATH:vendor/bundle/ruby/2.4.0 --timeout=5 ruby:2.4.1 bundle exec rspec

First, specify the Docker image name, and then the command you want to execute. After that, Drunker archives files under the current directory and uploads it to S3 and creates a CodeBuild project and the required IAM role.

When preparation is completed, run builds, download artifacts from S3, and display it on your terminal. Resources created by Drunker are automatically deleted. Also, in this example, timeout and environment variables used inside containers are specified by options.

You can see execution result (e.g. STDOUT, STDERR and exit status) from output like the following.

-------------------------------------------------------------------------------------------
BUILD_ID: drunker-executor-1494139943:10c9c785-bae0-4a2d-b5eb-927528943626
RESULT: SUCCESS
STDOUT: .....................................................................................................................................

Finished in 5.9 seconds (files took 0.17053 seconds to load)
133 examples, 0 failures

STDERR:
EXIT_STATUS: 0
-------------------------------------------------------------------------------------------

Parallel Build

The essence of Drunker is parallel build. For example, if you want to run RSpec in parallel, you can do it easily with the following command.

$ drunker run --concurrency=3 --file-pattern="spec/**/*_spec.rb" --env=BUNDLE_PATH:vendor/bundle/ruby/2.4.0 --timeout=5 ruby:2.4.1 bundle exec rspec FILES

FILES included in the execution command has a special meaning. This is interpolated into the list of filenames according to the number of parallels. For example, in this case, it will be the following command (filename changes for each build):

$ bundle exec rspec spec/aggregator_spec.rb spec/artifact_spec.rb ...

The target file is all files matching the glob pattern **/*. However, you can change this with --file-pattern option. You can see the execution result as the following:

-------------------------------------------------------------------------------------------
BUILD_ID: drunker-executor-1494140968:59c0b89f-099e-482c-8995-659f8b6b8523
RESULT: SUCCESS
STDOUT: ................

Finished in 0.12019 seconds (files took 0.14562 seconds to load)
16 examples, 0 failures

STDERR:
EXIT_STATUS: 0
-------------------------------------------------------------------------------------------


-------------------------------------------------------------------------------------------
BUILD_ID: drunker-executor-1494140968:f6cb0396-3005-44ca-8221-33b29cbbd309
RESULT: SUCCESS
STDOUT: ..........................................................................

Finished in 0.15774 seconds (files took 0.19026 seconds to load)
74 examples, 0 failures

STDERR:
EXIT_STATUS: 0
-------------------------------------------------------------------------------------------


-------------------------------------------------------------------------------------------
BUILD_ID: drunker-executor-1494140968:620c471e-19e7-48da-95e7-42cd66728455
RESULT: SUCCESS
STDOUT: ...........................................

Finished in 5.56 seconds (files took 0.14991 seconds to load)
43 examples, 0 failures

STDERR:
EXIT_STATUS: 0
-------------------------------------------------------------------------------------------

What is surprising is that do not require your local machine specs at all even if you increase the number of parallels. You can increase the number of parallels within the bounds of common sense.

Limitation

The number of parallelism of CodeBuild is determined by default. If the limit is reached, Drunker queues remaining builders.

INFO: Maximum number of concurrent running builds has been reached. it will retry later...
INFO: Waiting builder: 1/25, queues: 4
...

For details about limitation, please see here.

EC2 Container Registry

Do you want to use private images? You can also specify the image of EC2 Container Registry. Following example:

$ drunker run account-ID.dkr.ecr.us-east-1.amazonaws.com/your-Amazon-ECR-repo-name:latest ruby task.rb

For details, please see Amazon ECR Sample for AWS CodeBuild.

Available Options

Please show drunker help run

Usage:
  drunker run [IMAGE] [COMMAND]

Options:
  [--config=CONFIG]              # Location of config file
                                 # Default: .drunker.yml
  [--concurrency=N]              # Build concurrency
                                 # Default: 1
  [--compute-type=COMPUTE_TYPE]  # Container compute type
                                 # Default: small
                                 # Possible values: small, medium, large
  [--timeout=N]                  # Build timeout in minutes, should be between 5 and 480
                                 # Default: 60
  [--env=key:value]              # Environment variables in containers
  [--buildspec=BUILDSPEC]        # Location of custom buildspec
  [--file-pattern=FILE_PATTERN]  # FILES target file pattern, can use glob to specify, but files beginning with a dot are ignored.
                                 # Default: **/*
  [--aggregator=AGGREGATOR]      # Aggregator name. If you want to use custom aggregator, please install that beforehand.
  [--loglevel=LOGLEVEL]          # Output log level
                                 # Default: info
                                 # Possible values: debug, info, warn, error, fatal
  [--debug], [--no-debug]        # Enable debug mode. This mode does not delete the AWS resources created by Drunker
  [--access-key=ACCESS_KEY]      # AWS access key token used by Drunker
  [--secret-key=SECRET_KEY]      # AWS secret key token used by Drunker
  [--region=REGION]              # AWS region in which resources is created by Drunker
  [--profile-name=PROFILE_NAME]  # AWS shared credentials profile name used by Drunker

Run a command on CodeBuild

Configuration

By default, it loads .drunker.yml. In the configuration file, many options can be written in advance. Following example:

concurrency: 10
compute_type: medium
timeout: 5
file_pattern: spec/**/*_spec.rb
environment_variables:
  RAILS_ENV: test
  SECRET_KEY_BASE: super secret
aws_credentials:
  access_key: AWS_ACCESS_KEY_ID
  secret_key: AWS_SECRET_ACCESS_KEY
  region: us-east-1

If you want to create a configuration file with a different name, specify the file name with --config option.

$ drunker run --config=.custom_drunker.yml ruby:2.4.1 bundle exec rspec

Credentials

Drunker supports various credential providers. It is used with the following priority:

  • Specified shared credentials
  • Static credentials
  • Environment credentials
  • Default shared credentials

Static Credentials

If you have access key and secret key, you can specify these credentials.

$ drunker run --access-key=AWS_ACCESS_KEY_ID --secret-key=AWS_SECRET_ACCESS_KEY --region=us-east-1 owner_name/image_name ruby task.rb
aws_credentials:
  access_key: AWS_ACCESS_KEY_ID
  secret_key: AWS_SECRET_ACCESS_KEY
  region: us-east-1

Shared Credentials

If you have shared credentials, you can specify credentials profile name. However Drunker supports only ~/.aws/credentials as shared credentials location.

$ drunker run --profile-name=PROFILE_NAME --region=us-east-1 owner_name/image_name ruby task.rb
aws_credentials:
  profile_name: PROFILE_NAME
  region: us-east-1

Customize Build Specification

Do you want to customize the build specification more? You can change the buildspec.yml that is used by Drunker. The default buildspec.yml is here. For example, if you want to run bundle install in the install phase, create the custom_buildspec.yml like the following.

version: 0.1
phases:
  install:
    commands:
      - bundle install
  build:
    commands:
      - <%= commands.join(" ") %> 1> <%= stdout %> 2> <%= stderr %>; echo $? > <%= exit_status %>
artifacts:
  files:
    - <%= stdout %>
    - <%= stderr %>
    - <%= exit_status %>

Actual commands and output files are interpolated by ERB. Please see here for how to write buildspec.yml. After that, specify the file path with the --buildspec option.

$ drunker run --buildspec=custom_buildspec.yml owner_name/image_name ruby task.rb

Also, you can specify it in the configuration file.

buildspec: custom_buildspec.yml

In configuration file, you can also be described inline style.

buildspec:
  version: 0.1
  phases:
    install:
      commands:
        - bundle install
    build:
      commands:
        - <%= commands.join(" ") %> 1> <%= stdout %> 2> <%= stderr %>; echo $? > <%= exit_status %>
  artifacts:
    files:
      - <%= stdout %>
      - <%= stderr %>
      - <%= exit_status %>

Customize Output

Do you want to customize the output format? You can customize output format, exit code by creating Gem called aggregator. The specifications that the aggregator must satisfy are the following five.

  • The name of Gem must be drunker-aggregator-#{name}.
  • Create lib/drunker-aggregator-#{name}.rb, and require Drunker::Aggregator::#{name} class
  • Drunker::Aggregator::#{name} must inherit Drunker::Aggregator::Base
  • Implement run and exit_status methods to receive array of Drunker::Artifact::Layer
  • Return a number in exit_status method

Drunker::Artifact::Layer has outputs and build ID for each build. Please see the implementation for details.

For example, this aggregator can aggregate for PHPMD XML format report.

Development

After checking out the repo, run bin/setup to install dependencies. Then, run rake spec to run the tests. You can also run bin/console for an interactive prompt that will allow you to experiment.

To install this gem onto your local machine, run bundle exec rake install. To release a new version, update the version number in version.rb, and then run bundle exec rake release, which will create a git tag for the version, push git commits and tags, and push the .gem file to rubygems.org.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/wata727/drunker. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.

License

The gem is available as open source under the terms of the MIT License.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].