Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Continuous Integration Tooling running on AppEngine

Are there any Continuous Integration tools that will run on Google App Engine?

like image 462
Ben Doerr Avatar asked Dec 11 '09 19:12

Ben Doerr


2 Answers

I don't think so. The Google App Engine secure sandbox environment doesn't seem compatible with the requirements of all CI engine I know (writing to the file system is a basic need of any engine to checkout sources, to compile them, to log during tests, to build reports, etc).

As I said in a comment, Amazon EC2 is appropriate for running a CI engine and I know many enterprise using it for this purpose. You should really look into this direction.

like image 124
Pascal Thivent Avatar answered Nov 11 '22 08:11

Pascal Thivent


Recently, Cloudbees bring this fonctionnality :

Google App Engine users can now run Jenkins continuous integration in the cloud by signing up at appengine.cloudbees.com. Jenkins will monitor your projects’ source code for any changes, run the necessary builds and tests, and notify your team of any problems - or automatically deploy the application to Google App Engine if everything looks good.

like image 37
Baptiste LH Avatar answered Nov 11 '22 06:11

Baptiste LH