Difference between revisions of "Buildbot and EC2"

From CDOT Wiki
Jump to: navigation, search
(Releases)
 
(77 intermediate revisions by 3 users not shown)
Line 1: Line 1:
 +
Implements [[Sample Project| iSampleProject]]
 +
 
== Project Name ==
 
== Project Name ==
  
Line 14: Line 16:
  
 
== Project Contributor(s) ==
 
== Project Contributor(s) ==
 +
[[User:dominic|Dominic Baranski]]
  
== Project Details ==
+
[[User:Armenzg|Armen Zambrano]]
 
 
===      Release 0.1 ===
 
 
 
==== Goals ====
 
* Add in a new build step to Buildbot
 
* Allow Buildbot to connect with Amazon's EC2 service
 
 
 
==== Downloads ====
 
 
 
    [http://matrix.senecac.on.ca/~awdelyea/EC2_build_step_nokeys.py EC2_build_step_nokeys.py]
 
 
 
    Note: You will need to install the boto library located [http://boto.googlecode.com/files/boto-0.9a.tar.gz here].
 
 
 
 
 
==== About ====
 
 
 
Basically, this first version attempts to connect to an EC2 account, and then display the connection information to show that it has connected.
 
 
 
It uses a library called "boto", and this library is used to connect to all of [http://www.amazon.com/gp/browse.html?node=3435361 Amazon's Web Services]
 
  
To use this in a Buildbot configuration file, simply call the connect_to_ec2() function, which takes in as paramaters, an Amazon id key, and an Amazon secret key.
+
[[User:david.humphrey|Dave Humphrey]]
  
Example:
+
== Releases ==
<pre>
 
    connection = connect_to_ec2("73ghf9h38fh", "75vo87rVO*&V%O7o75v7i%i75I&5li7%i75")
 
</pre>
 
  
----
+
You can see more information about individual releases by following the links below.
  
===      Release 0.2 ===
+
* [[Buildbot and EC2/0.1]]
  
==== Goals ====
+
* [[Buildbot and EC2/0.2]]
  
* Start New Instances
+
* [[Buildbot and EC2/0.3]]
* Add new instances to build slave list
 
* Start a build on an EC2 instance build slave
 
  
==== Downloads ====
+
* [[Buildbot and EC2/0.4]]
  
==== About ====
+
* [[Buildbot and EC2/0.5]]
  
To use the EC2 service with Buildbot, there needs to be some way for Buildbot to dynamically generate a list of build slaves. These build slaves (or just slaves) are hosted as a virtual machine on the EC2 service.  
+
* [[Buildbot and EC2/0.6 | Buildbot and EC2/0.6/0.7]]
  
Probably the best way to do this is to extend the BuildSlave class, and make a new class called EC2BuildSlave.  
+
* [[Buildbot and Testing|Tangential Testing on Buildbot Release / 0.8]]
  
Theres a couple good reasons for extending this class. One big one I can think about is that the new class will have a different way of disconnecting, where it will have to send a command to the EC2 service to shut the instance down (thats if it's not being used by some other build master).
+
* [[Buildbot and EC2/0.9]]
 
 
Making this new slave class will also be a much neater way to implement this new functionality, instead of having functions just randomly and haphazardly placed all over.
 
 
 
Lots more research and code reviewing is still on the horizon for this project, but this release should be ready in a months time.
 
----
 
 
 
===      Release 0.3 ===
 
 
 
==== Goals ====
 
 
 
==== Downloads ====
 
 
 
==== About ====
 
  
 
== Tasks ==
 
== Tasks ==
  
 
<table style="width: 100%;" class="standard-table" cellborder=1 border=1 cellpadding=3 cellspacing=0>
 
<table style="width: 100%;" class="standard-table" cellborder=1 border=1 cellpadding=3 cellspacing=0>
     <th style="width: 15%;">Task</th>
+
     <th style=" width: 17%;"><br />'''''Task'''''<br /><br /></th>
     <th style="width: 45%>Details</th>
+
     <th style=" width: 35%;"><br />'''''Details'''''<br /><br /></th>
     <th style="width: 10%;">Priority</th>
+
     <th style=" width: 5%;"><br />'''''Priority'''''<br /><br /></th>
     <th style="width: 10%;">Contributors</th>
+
     <th style=" width: 10%;"><br />'''''Contributors'''''<br /><br /></th>
     <th style="width: 10%;">Status</th>
+
     <th style=" width: 15%;"><br />'''''Status'''''<br /><br /></th>
     <th style="width: 10%;">Link(s)</th>
+
    <th style=" width: 4%;"><br />'''''Target'''''<br /><br /></th>
 +
    <th style=" width: 4%;"><br />'''''Completed'''''<br /><br /></th>
 +
     <th style=" width: 10%;"><br />'''''Link'''''(s)<br /><br /></th>
  
 
     <tr>
 
     <tr>
         <td>Define new build step</td>
+
         <td>0.1 Release</td>
         <td>Add a new build step to the build master config file. The build step will be in an external file and imported into the build master config file.</td>
+
         <td>Covering the basics</td>
 +
        <td  style="background-color: red; text-align: center; font-weight: bold; font-size: bigger">High</td>
 +
        <td>[[User:Awdelyea|Adam Delyea]]</td>
 
         <td style="background-color: green; text-align: center; font-weight: bold; font-size: bigger">Done</td>
 
         <td style="background-color: green; text-align: center; font-weight: bold; font-size: bigger">Done</td>
        <td>Adam Delyea</td>
 
 
         <td>&nbsp;</td>
 
         <td>&nbsp;</td>
         <td>[http://buildbot.net/repos/release/docs/buildbot.html#Writing-New-BuildSteps Writing New Build Steps]</td>
+
         <td>&nbsp;</td>
 +
        <td>&nbsp;</td>
 
     </tr>
 
     </tr>
  
 
     <tr>
 
     <tr>
         <td>Connect To EC2 using Python</td>
+
         <td>0.2 Release</td>
         <td>Utilize the EC2 python library to connect to an account on the EC2 network. Once connected, display some information about the users account to prove it's actually connecting.</td>
+
         <td></td>
 +
        <td  style="background-color: red; text-align: center; font-weight: bold; font-size: bigger">High</td>
 +
        <td>[[User:Awdelyea|Adam Delyea]]</td>
 
         <td style="background-color: green; text-align: center; font-weight: bold; font-size: bigger">Done</td>
 
         <td style="background-color: green; text-align: center; font-weight: bold; font-size: bigger">Done</td>
        <td>Adam Delyea</td>
 
 
         <td>&nbsp;</td>
 
         <td>&nbsp;</td>
         <td><ul><li>[http://code.google.com/p/boto/ Boto Amazon Web Services Library in Python]</li><li>[http://jimmyg.org/2007/09/01/amazon-ec2-for-people-who-prefer-debian-and-python-over-fedora-and-java/ EC2 hearts Python]</li></ul></td>
+
         <td>&nbsp;</td>
 +
        <td>&nbsp;</td>
 
     </tr>
 
     </tr>
  
 
     <tr>
 
     <tr>
         <td>Start new instances</td>
+
         <td>0.3 Release</td>
         <td>Allow Buildbot to spawn an instance on demand. This could possibly be a function called right before the build slave list is populated, and would pass back an array of build slaves.</td>
+
         <td></td>
         <td style="background-color: orange; text-align: center; font-weight: bold; font-size: bigger">High</td>
+
         <td style="background-color: red; text-align: center; font-weight: bold; font-size: bigger">High</td>
         <td>Adam Delyea</td>
+
         <td>[[User:Awdelyea|Adam Delyea]]</td>
         <td>In Progress, On Track</td>
+
        <td style="background-color: green; text-align: center; font-weight: bold; font-size: bigger">Done</td>
 +
        <td>&nbsp;</td>
 +
         <td>&nbsp;</td>
 
         <td>&nbsp;</td>
 
         <td>&nbsp;</td>
 
     </tr>
 
     </tr>
  
 
     <tr>
 
     <tr>
         <td>Add new instances to build slave list</td>
+
         <td>0.4 Release</td>
         <td>Allow newly created EC2 instances to be added to the build slave list.</td>
+
         <td></td>
         <td style="background-color: orange; text-align: center; font-weight: bold; font-size: bigger">High</td>
+
         <td style="background-color: red; text-align: center; font-weight: bold; font-size: bigger">High</td>
         <td>Adam Delyea</td>
+
         <td>[[User:Awdelyea|Adam Delyea]]</td>
         <td>In Progress, On Track</td>
+
         <td style="background-color: green; text-align: center; font-weight: bold; font-size: bigger">Done</td>
 +
        <td>14/1/08</td>
 +
        <td>14/1/08</td>
 
         <td>&nbsp;</td>
 
         <td>&nbsp;</td>
 
     </tr>
 
     </tr>
  
 
     <tr>
 
     <tr>
         <td>Start a new build on an EC2 instance</td>
+
         <td>0.5 Release</td>
         <td>Allow Buildbot to successfully start a build using a build slave on an EC2 instance</td>
+
         <td></td>
         <td style="background-color: orange; text-align: center; font-weight: bold; font-size: bigger">High</td>
+
         <td style="background-color: red; text-align: center; font-weight: bold; font-size: bigger">High</td>
         <td>Adam Delyea</td>
+
         <td>[[User:Awdelyea|Adam Delyea]]</td>
         <td>In Progress, On Track</td>
+
         <td style="background-color: SkyBlue; text-align: center; font-weight: bold; font-size: bigger">In Progress</td>
 +
        <td>3/1/08</td>
 +
        <td>&nbsp;</td>
 
         <td>&nbsp;</td>
 
         <td>&nbsp;</td>
 
     </tr>
 
     </tr>
  
 
     <tr>
 
     <tr>
         <td>Load a script on startup in Linux</td>
+
         <td>Testing</td>
         <td>Make it possible to have a script load when Linux starts</td>
+
        <td>People needed to download the revisions and test them to make sure it works in different environments. Note, this will require you to have your own EC2 account. </td>
         <td style="background-color: lightblue; text-align: center; font-weight: bold; font-size: bigger">Low</td>
+
        <td  style="background-color: grey; text-align: center; font-weight: bold; font-size: bigger">Expired</td>
         <td style="background-color: gold; text-align: center; font-weight: bold; font-size: bigger">NEEDED! ***</td>
+
        <td style="background-color: gold; text-align: center; font-weight: bold; font-size: bigger">NEEDED! ***<br />[http://zenit.senecac.on.ca/wiki/index.php/User:dominic Dominic Baranski]</td>
         <td>Not Started</td>
+
        <td style="background-color: grey; text-align: center; font-weight: bold; font-size: bigger">Expired</td>
 +
        <td>&nbsp;</td>
 +
        <td>&nbsp;</td>
 +
        <td>&nbsp;</td>
 +
    </tr>
 +
 
 +
    <tr>
 +
        <td><del>Different Builds</del></td>
 +
         <td><del>Need different projects to try and build, to make sure it works to build projects other than Mozilla</del><br />This is no longer a priority. Building with Mozilla is the focus of this project. The EC2 functionality can be extracted and used to build any program / system.</td>
 +
         <td style="background-color: grey; text-align: center; font-weight: bold; font-size: bigger">Expired</td>
 +
         <td style="background-color: gold; text-align: center; font-weight: bold; font-size: bigger">NEEDED! ***<br />[http://zenit.senecac.on.ca/wiki/index.php/User:dominic Dominic Baranski]</td>
 +
        <td style="background-color: grey; text-align: center; font-weight: bold; font-size: bigger">Expired</td>
 +
        <td>&nbsp;</td>
 +
         <td>&nbsp;</td>
 
         <td>&nbsp;</td>
 
         <td>&nbsp;</td>
 
     </tr>
 
     </tr>
  
 
     <tr>
 
     <tr>
         <td>Testing</td>
+
         <td>Complete Documentation</td>
         <td>People needed to download the revisions and test them to make sure it works in different environments.</td>
+
         <td></td>
         <td style="background-color: lightblue; text-align: center; font-weight: bold; font-size: bigger">Low</td>
+
         <td style="background-color: orange; text-align: center; font-weight: bold; font-size: bigger">Medium</td>
         <td style="background-color: gold; text-align: center; font-weight: bold; font-size: bigger">NEEDED! ***</td>
+
        <td>[[User:Awdelyea|Adam Delyea]]</td>
         <td>Not Started</td>
+
         <td style="background-color: green; text-align: center; font-weight: bold; font-size: bigger">In Progress</td>
 +
         <td>&nbsp;</td>
 +
        <td>&nbsp;</td>
 
         <td>&nbsp;</td>
 
         <td>&nbsp;</td>
 
     </tr>
 
     </tr>
 
</table>
 
</table>
 
  
 
== Contributions ==
 
== Contributions ==
  
 
<br/>
 
<br/>
<div style="background-color: gold; text-align: center; font-weight: bold;">*** Would you like to contribute? Well here's an excellent opportunity for you to do just that! Feel free to e-mail me at <awdelyea@learn.senecac.on.ca></div>
+
<div style="background-color: gold; text-align: center;font-weight: bold;">&nbsp;<br />*** Would you like to contribute? Well here's an excellent opportunity for you to do just that! Feel free to e-mail me at <awdelyea@gmail.com><br />&nbsp;</div><br/>
 
 
  
 
== Project Resources ==
 
== Project Resources ==
Line 164: Line 155:
  
 
== Project News ==
 
== Project News ==
 +
 +
For a less formal, and more up-to-date view on whats happening, see the [http://www.awdelyea.wordpress.com BLOG].
  
 
2007-09-17: Project claimed!
 
2007-09-17: Project claimed!
Line 172: Line 165:
  
 
2007-10-12: Release v0.2 loosely defined. More detail to follow.
 
2007-10-12: Release v0.2 loosely defined. More detail to follow.
 +
 +
2007-11-17: Release v0.2 is complete and available for download: can start an instance and start an EC2BuildSlave
 +
 +
2007-11-21: Release v0.2.1 is complete and available for download: now to include variable EC2 users, and instances, and DNS'
 +
 +
2007-12-13: Release v0.3 is complete and available for download: easier to install and setup, can use to build projects now
 +
 +
2008-01-14: Release v0.4 Defined. In the process of getting accounts and machines for Try Server Farm.
 +
 +
'''''2008-02-01: Task List and Release News is being moved to individual Release Pages. See individual Releases for more information.'''''

Latest revision as of 11:23, 26 March 2008

Implements iSampleProject

Project Name

Buildbot and EC2

Project Description

The BuildBot is software for automatically building and testing other software. EC2 is Amazon's "Elastic Compute Cloud", a service that lets you run Virtual Machines on Amazon's computing grid using a web API. It would be awesome if BuildBot had an EC2 module, and could spawn Virtual Machines on-demand to perform tasks. Conveniently, BuildBot is written in Python, and there's a Python library for interfacing with EC2.

References: Amazon EC2 Basics For Python Programmers

Project Leader(s)

Adam Delyea

Project Contributor(s)

Dominic Baranski

Armen Zambrano

Dave Humphrey

Releases

You can see more information about individual releases by following the links below.

Tasks


Task


Details


Priority


Contributors


Status


Target


Completed


Link(s)

0.1 Release Covering the basics High Adam Delyea Done      
0.2 Release High Adam Delyea Done      
0.3 Release High Adam Delyea Done      
0.4 Release High Adam Delyea Done 14/1/08 14/1/08  
0.5 Release High Adam Delyea In Progress 3/1/08    
Testing People needed to download the revisions and test them to make sure it works in different environments. Note, this will require you to have your own EC2 account. Expired NEEDED! ***
Dominic Baranski
Expired      
Different Builds Need different projects to try and build, to make sure it works to build projects other than Mozilla
This is no longer a priority. Building with Mozilla is the focus of this project. The EC2 functionality can be extracted and used to build any program / system.
Expired NEEDED! ***
Dominic Baranski
Expired      
Complete Documentation Medium Adam Delyea In Progress      

Contributions


 
*** Would you like to contribute? Well here's an excellent opportunity for you to do just that! Feel free to e-mail me at <awdelyea@gmail.com>
 

Project Resources

Project News

For a less formal, and more up-to-date view on whats happening, see the BLOG.

2007-09-17: Project claimed!

2007-10-11: Found a python EC2 library that has all of the functions I will need for interacting with EC2. Just need to write a custom build step to run these library functions.

2007-10-12: Release v0.1 is complete and available for download.

2007-10-12: Release v0.2 loosely defined. More detail to follow.

2007-11-17: Release v0.2 is complete and available for download: can start an instance and start an EC2BuildSlave

2007-11-21: Release v0.2.1 is complete and available for download: now to include variable EC2 users, and instances, and DNS'

2007-12-13: Release v0.3 is complete and available for download: easier to install and setup, can use to build projects now

2008-01-14: Release v0.4 Defined. In the process of getting accounts and machines for Try Server Farm.

2008-02-01: Task List and Release News is being moved to individual Release Pages. See individual Releases for more information.