Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

78
votes
6answers
5k views

Setting up a deployment / build / CI cycle for PHP projects

I am a lone developer most of my time, working on a number of big, mainly PHP-based projects. I want to professionalize and automate how changes to the code base are handled, and create a Continuous ...
8
votes
2answers
601 views

Git log error in PhpUnderControl continuous integration set up

So I have set up the following for my PHP project: A Git repository with all the code. An instance of Cruisecontrol with PhpUnderControl running on top of it. I created a new project in the ...
8
votes
2answers
722 views

phing and phpUnderControl … working together

Has anyone got these to work together seemlessly? I have tried, had some success using the plugin at http://phing.info/trac/wiki/Users/Documentation/CruiseControl, but have failed to: Get the ...
5
votes
3answers
1k views

Phing, Xinc or phpUnderControl - which one will last?

I am still looking into which one of these tools I should use. When I was poking around I noticed none of them really have any new releases: Xinc Version 2.0.1 released 02/05/08 Phing Version 2.3.3 ...
4
votes
2answers
736 views

phpUnderControl and CodeBrowser

Does phpUnderControl have a built in code browser? If so, how do I change it to use PHP_CodeBrowser instead?
4
votes
1answer
512 views

How do you manage your build [using Phing] process?

I'm trying to use Phing to automate : running tests running DB migrations on each Developer machine [using dbdeply] deployment to production when needed I think it does make sense to add a build ...
3
votes
2answers
214 views

PHPUnit and C.R.A.P index

I am using php undercontrol and the code browser report some CRAP index error on every setter/getter i.e. code like this public function getFoo() { return $this->_foo; } The getter/setter ...
3
votes
3answers
828 views

phpUnderControl and PHPUnit always failing build with code 255

I have the following build.xml file setup in phpUnderControl. <target name="phpunit"> <exec executable="phpunit" dir="${basedir}/httpdocs" failonerror="on"> <arg ...
2
votes
8answers
4k views

How do I solve this error: “Class PHPUnit_Extensions_SeleniumTestCase could not be found”

I am trying to run a SeleniumTestCase with phpunit but I cannot get it to run with the phpunit.bat script. My goal is to use phpunit with Selenium RC in CruiseControl & phpUnderControl. This is ...
1
vote
1answer
56 views

phpUnderControl centralized for projects on different servers?

I didnt work with phpundercontrol yet and from what I read so far, I dont see whether you can use it to control/CI multiple projects that are "living" on different servers. Do I really have to run ...
1
vote
4answers
517 views

Code Coverage with PHPUnit

I am running into an issue while attempting to determine code coverage on our site. I have PHPUnit generating a html code coverage report while running our unit tests on our three apps. We have a ...
1
vote
1answer
724 views

How to call a custom ruleset.xml for php code sniffer

I'm trying to write an custom ruleset.xml for php code sniffer but calling it from the commandline without putting it in the default folder doesn't seem to work. Since the documentations seems to ...
1
vote
1answer
190 views

In PHPUnderControl, can I configure PHP_CodeSniffer to ignore specific directories?

I've recently been trying to set up PHPUnderControl, a Continuous Integration server based on CruisControl. Part of the checks I'd like to run is the PHP CodeSniffer (PHPCS) to detect "code smell". ...
1
vote
1answer
342 views

Using Selenium and phpUnderControl on a Linux headless box?

I am trying to integrate Selenium and phpUnderControl on a headless Linux box, but haven't found anything about it. I can run Selenium with Xvfb, and phpUnderControl is running OK. My question is: how ...
1
vote
0answers
366 views

WAMP phpundercontrol installation guide / tutorial

Our team just thinking to start using php unit test for our problem. I not able to find a complete tutorial or installation which is install phpundercontrol in WAMP environment, I have no any ...
1
vote
0answers
1k views

Cruisecontrol, build failed exec returned: 255 after compiled phpunit tests? [closed]

here is my build.xml code: <target name="checkout"> <exec executable="svn" dir="${basedir}/source"> <arg line="up" /> </exec> </target> <target ...
1
vote
2answers
263 views

Using Ant with PHPUnderControl Gives java.lang.NoClassDefFoundError

I've installed the latest CruiseControl and PHPUnderControl, and followed all the directions. I get stuck at running "../../apache-ant-1.7.0/bin/ant checkout" and get the output below. Searching for ...
0
votes
1answer
157 views

Building XHProf into CI (phpundercontrol) non-intrusively

I would love to build XHProf output and metrics into phpUnderControl. After doing a good amount of research, it seems the only path to XHProf is to actually change code to include and execute it. Does ...
0
votes
2answers
270 views

PHPUnit Problems When Installing phpUnderControl On Windows

having problems here getting phpUnderControl running on my Windows 7 machine, been searching all over the net for answers but documentation to many of the problems is just really bad... (a.) Cruise ...
0
votes
1answer
44 views

Trouble during phpUnderContol installation on Mac OS

I have downloaded last release of CruiseControl and phpUnderControl now I need to "connect them" how its given here http://phpundercontrol.org/documentation/installation.html But When I enter ...
0
votes
1answer
238 views

How can I enable “metrics” tab in phpUnderControl?

I downloaded the latest version of phpuc and ezc/Graph. I tested the example project for phpuc and whenever I view the metrics tab I keep getting a null pointer exception: ...
0
votes
1answer
121 views

CruiseControl access restriction: how?

I am currently testing CruiseControl + phpUnderControl for our PHP CI process and am stuck with a fairly simple question: is it possible to somehow restrict access to the web interface? I cannot ...
0
votes
1answer
187 views

Why to have “build/” folder with PHP project and phing

What is a benefit of having "build/" folder where all the sources will be placed and "built"? Maybe it's a silly question, but I'm trying to understand Continuous Integration with PHP. Any example of ...
0
votes
2answers
656 views

cruisecontrol phpunit creates no output

I cannot seem to figure out why the phpunit target does not output any test results even though I have tests in position. The problem I am finding is there is no indication as to what the problem is! ...
0
votes
1answer
548 views

PHP-CodeBrowser not following path in checkstyle.xml correctly

I've set up phpUnderControl and it's all working very well, except that for a few projects that I have aren't getting any output in the PHP-CodeBrowser tab. If I run the command manually I get: ...
0
votes
2answers
322 views

Is there a way to LOG RC Selenium test errors/failures into a database?

Im using phpunit & phpundercontrol to run the RC Selenium on every build.