I would recommend to read this one for PHP in general: http://agile.dzone.com/news/continuous-integration-php And for CakePHP there are these 2 articles in Japanese that you can probably understand enough using the Translation feature in Chrome or google translation: http://www.ryuzee.com/contents/blog/3431 http://www.ryuzee.com/contents/blog/3473
Best, Chris On Tue, Sep 20, 2011 at 8:55 AM, mark_story <[email protected]> wrote: > I added a bit to the 2.0 docs on getting things integrated with > Jenkins. Hopefully it helps, but as you guessed most of the config can > be gathered from the build output. > > -Mark > > On Sep 18, 1:43 pm, "Meroe Kush" <[email protected]> wrote: > > Mark, > > > > Thanks. I was actually able to figure out what I needed from the console > > output onhttp://ci.cakephp.org > > > > I created some test cases and I'm good to go now with unit testing, code > > coverage, etc within Jenkins for Cakephp 2.x Thanks! > > > > Here is what I did: > > > > I created this in the Test/Case folder and it seems to work for testing > my > > app controllers. > > > > class AllControllerTest extends PHPUnit_Framework_TestSuite { > > > > public static function suite() { > > $suite = new CakeTestSuite('All Controller class tests'); > > > > $suite->addTestDirectory(APP_TEST_CASES . DS . > > 'Controller'); > > return $suite; > > } > > > > } > > > > From within jenkins I do: > > > > /opt/Cake/Console/cake testsuite app AllController --stderr --log-junit > > build/logs/junit.xml --coverage-clover build/logs/clover.xml > > > > > > > > > > > > > > > > -----Original Message----- > > From: [email protected] [mailto:[email protected]] On > Behalf > > > > Of mark_story > > Sent: Sunday, September 18, 2011 12:03 PM > > To: CakePHP > > Subject: Re:http://ci.cakephp.org/ > > > > Not yet, but I hope to get around to adding it as part of the 2.0 > > docs. The CakePHP configuration is stupid simple right now, and > > mainly consists of running the AllTests. > > > > -Mark > > > > On Sep 17, 3:21 pm, Meroe <[email protected]> wrote: > > > Any documentation on how you set up CI for cakephp using jenkins? > > > > -- > > Our newest site for the community: CakePHP Video Tutorialshttp:// > tv.cakephp.org > > Check out the new CakePHP Questions sitehttp://ask.cakephp.organd help > > others with their CakePHP related questions. > > > > To unsubscribe from this group, send email to > > [email protected] For more options, visit this group > athttp://groups.google.com/group/cake-php > > -- > Our newest site for the community: CakePHP Video Tutorials > http://tv.cakephp.org > Check out the new CakePHP Questions site http://ask.cakephp.org and help > others with their CakePHP related questions. > > > To unsubscribe from this group, send email to > [email protected] For more options, visit this group > at http://groups.google.com/group/cake-php > -- Our newest site for the community: CakePHP Video Tutorials http://tv.cakephp.org Check out the new CakePHP Questions site http://ask.cakephp.org and help others with their CakePHP related questions. To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/cake-php
