Skip to content

maximk/ling_builder

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

35 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

A rebar plugin for a Erlang on Xen Build Service

The plugin - ling_builder - adds a few commands to rebar that allow building Xen images using Erlang on Xen Build Service.

To use the plugin add the following dependency to your rebar.config:

{ling_builder,".*",
	{git,"git://github.com/maximk/ling_builder.git","master"}}

In addition a ling_builder_opts section should be present. It must contain the location of the build service and user credentials:

{ling_builder_opts,[{build_host,"build.erlangonxen.org:8080"},
	{username,"..."},
	{password,"..."}]

A few more options are recognized by the plugin:

{import,FilePattern}

The option imports the specified files into the image so that they are accessible to your application during runtime. Example: {import,"priv/*/*}.

{import_lib,Lib}

Instructs the build service to import an entire standard Erlang application and make it available during runtime. Example: {import_lib,crypto}.

{build_config,Cfg}

Selects the build configuration of the LING VM. Possible values are 'default', 'fastest', and 'debug'. The default value is 'fastest'.

Commands added by the plugin

rebar ling-build

Initiate the Xen ELF image build process.

rebar ling-image

Retrieve the generated image.

rebar ling-build-id

Retrieve the LING VM build identifier used for the last build. The identifier should be mentioned when reporting bugs.

rebar ling-build-image

The comand combines the effects of ling-build and ling-image commands. It iniates the build process, waits for completion, and retrieves the image.

rebar ling-build-ec2

Same as ling-build but requests generation of the Amazon Machine Image (AMI).

rebar ling-ec2-image

Retrieve ID of the generated AMI. Note that the generated AMI is hosted on Amazon S3 and is publicly accessible. To generate private AMIs see instructions in the blog post.

rebar ling-build-ec2-image

Combine effects of ling-build-ec2 and ling-ec2-image similarly to ling-build-image.

The plugin uses the public API for the Erlang on Xen Build Service.

About

A rebar plugin for working with Ling builld service

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages