phpUnderControl is a PHP centric add-on to the CruiseControl CI server
1
vote
1answer
69 views
CruiseControl / phpUnderControl Artifacts issues
I have set up Git and CruiseControl, and just finished getting phpUnderControl working (a nightmare in itself as it is missing packages and all sorts).
So I have all the plugins in it like phpunit ...
0
votes
0answers
71 views
phpUnderControl NullPointerException in Metrics-View
I'm implementing a CI solution for the company I'm working at and just installed the latest Version of CruiseControl with phpUnderControl on a Ubuntu 10.04 Server. So far it works fine with the ...
0
votes
1answer
60 views
How do I fix phpdoc creating unusable filenames
I'm on Ubuntu running CruiseControl with phpUnderControl and when phpdoc runs it creates filenames like: db_\ArticleCollections.html
And then when I click the link to show the file I get:
...
5
votes
2answers
968 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 ...
0
votes
1answer
294 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
612 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 ...
1
vote
1answer
93 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 ...
0
votes
1answer
64 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
406 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:
...
2
votes
5answers
1k 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 ...
5
votes
1answer
2k 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
182 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 ...
3
votes
4answers
2k 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
1answer
299 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
262 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 ...