Commit graph

699 commits

Author SHA1 Message Date
Dan Cryer c63bbea999 Updating phpci.yml to allow the current level of PHPMD errors, but no more than that. 2014-04-25 11:29:00 +00:00
Dan Cryer 66bfcea8ed Migrating PHPMD to use XML report format and add a UI plugin to display warning information. See #305 2014-04-25 11:28:27 +00:00
Dan Cryer 71d86bd346 Making new manual builds use the active user's email as the committer address 2014-04-25 11:26:33 +00:00
Dan Cryer 0512d3b5f8 UI improvements for the Build view screen 2014-04-25 11:25:46 +00:00
Dan Cryer 4363cb1966 Adding the ability to run projects with no build configuration. Runs what plugins it can automatically. Closes #235 2014-04-25 10:17:39 +01:00
Dan Cryer 70b47152cb Merge branch 'master' of github.com:Block8/PHPCI 2014-04-24 16:25:31 +01:00
Dan Cryer 8685f2ac36 Adding per-page titles throughout PHPCI, fixes #371 2014-04-24 16:25:24 +01:00
Dan Cryer 5929480f36 Merge pull request #348 from NamelessCoder/patch-4
Cross-platform safe copy in Plugin.CopyBuild
2014-04-23 14:31:27 +01:00
Dan Cryer 92a1a608d7 Merge pull request #343 from elkangaroo/fix-graph-labels
fix #335: unify (loc / quality trend) graph labels
2014-04-23 14:00:01 +01:00
Claus Due 5cb37f3291 Cross-platform safe copy in Plugin.CopyBuild
Rather than using `xargs` which behaves differently on BSD and Linux, it's safer to use the straight `cp`. We lose the output of which files were copied - but I'd be more than happy to add this as a separate command to list which files were copied and which were ignored.
2014-04-18 15:46:46 +02:00
Alexander Wenzel 00d779286c fix #335: unify (loc / quality trend) graph labels 2014-04-16 19:22:04 +02:00
Dan Cryer 4ab390d950 Removing top level build directory, as it is not used. 2014-04-16 16:38:40 +00:00
Dan Cryer aa02b5be31 Updating RemoteGitBuild to support a Git SSH wrapper. See #114 2014-04-16 16:38:19 +00:00
Dan Cryer 3b5c0ef220 Merge branch 'master' of github.com:Block8/PHPCI 2014-04-16 16:45:22 +01:00
Dan Cryer 1c4eebc401 Fixing redirect to install.php 2014-04-16 16:45:14 +01:00
Dan Cryer a693d5fa85 Update README.md 2014-04-16 14:46:15 +01:00
Dan Cryer 54aed93d9b Inlining the validateSession functionality in Application, fixes #312 2014-04-16 12:37:32 +01:00
Dan Cryer 1d92b5e890 Updating PHPMD to enforce rules being an array. Fixes #319 2014-04-16 12:30:03 +01:00
Dan Cryer 4b2815a76f Fixing previous commit >_> 2014-04-16 12:05:45 +01:00
Dan Cryer d1548a8cad Fixing previous commit >_> 2014-04-16 12:05:00 +01:00
Dan Cryer a097e5d1ae Adding post install script 2014-04-16 11:03:40 +00:00
Dan Cryer e085978800 Adding basic git plugin 2014-04-16 10:14:19 +00:00
Dan Cryer 55975a8026 Fixing issues when adding a gitlab project 2014-04-16 10:14:06 +00:00
Dan Cryer 8c8433afe8 Updating PHPSpec plugin to work with v2. Fixes #339 2014-04-16 10:23:04 +01:00
Dan Cryer e6d0cee4bd Adding guard around ssh-keygen in project controller, hopefully fixes #340 2014-04-16 09:15:39 +00:00
Dan Cryer d374c16161 Updating composer.lock to reflect new dependency versions 2014-04-16 09:54:09 +01:00
Dan Cryer ed38dbd523 Updating dependencies - Fixes #320, thanks @GrahamCampbell 2014-04-16 09:48:39 +01:00
Dan Cryer 249acaeb28 Merge pull request #342 from corpsee/database-yml
Added database-based yml build config #2
2014-04-16 09:44:13 +01:00
Dan Cryer ba595f7e5f Merge pull request #341 from Block8/dc/installer-fixes
Fixes to improve installation
2014-04-16 09:29:27 +01:00
Dan Cryer 5eee1d6704 Fixes for feedback in #341. 2014-04-16 09:29:01 +01:00
Dan Cryer f8feb7de56 Merge pull request #344 from elkangaroo/fix-graph-flicker
fix #334: fix flickering of quality trend graph
2014-04-16 09:18:43 +01:00
Dan Cryer 79b4449794 Merge branch 'master' of github.com:Block8/PHPCI 2014-04-16 09:05:57 +01:00
Dan Cryer 775e8d7493 Adding global try/catch in Builder, in hope of fixing forever-hanging. Closes #354, Closes #304 2014-04-16 09:05:48 +01:00
Dan Cryer 98aa35d159 Adding global try/catch in Builder, in hope of fixing forever-hanging. Closes #354, Closes #304 2014-04-16 09:05:46 +01:00
Dan Cryer 7e364b37a7 Check $this->path is set before use, fixes #355 2014-04-16 08:57:17 +01:00
Steve B 1c34cff181 Merge pull request #349 from NamelessCoder/patch-5
Wipe Plugin - wipes a folder
2014-04-14 10:35:41 +01:00
Steve B f02a800269 Merge pull request #350 from NamelessCoder/patch-6
Preserve absolute paths in Plugin.PhpMessDetector
2014-04-14 08:58:05 +01:00
Steve B e68cd39afa Merge pull request #347 from NamelessCoder/patch-3
Missing property declaration for `ignore` on Plugin.CopyBuild
2014-04-14 08:56:25 +01:00
Steve B 6840a18a88 Merge pull request #345 from NamelessCoder/patch-1
Bad copy/pasted method comment in CopyBuild plugin
2014-04-14 08:55:49 +01:00
Claus Due 336f1096dd Preserve absolute paths in Plugin.PhpMessDetector
Before: all paths, including absolute paths, were treated relative to build directory.

After: any absolute path is not prefixed with the build directory path; it gets used as-is.
2014-04-12 17:28:52 +02:00
Claus Due fd02c51c9e Wipe Plugin - wipes a folder 2014-04-12 14:31:31 +02:00
Claus Due 7c5fd65426 Missing property declaration for ignore on Plugin.CopyBuild 2014-04-12 13:50:10 +02:00
Claus Due 7c43bfd198 Bad copy/pasted method comment in CopyBuild plugin 2014-04-12 02:44:27 +02:00
Alexander Wenzel f4bef26663 fix #334: fix flickering of quality trend graph; fix hidden data points for single errors / warnings 2014-04-12 00:11:46 +02:00
Dmitry Khomutov 94b2a8a5c5 Genereted models by console phpci:generate command 2014-04-10 23:52:21 +07:00
Dmitry Khomutov 6a23c79919 Inverted priority of configs: phpci.yml is primary now 2014-04-10 23:41:02 +07:00
Dmitry Khomutov ce949e12e0 Merge branch 'master' into database-yml 2014-04-10 23:11:41 +07:00
Dmitry Khomutov dd27695bed Merge branch 'master' of github.com:Block8/PHPCI 2014-04-10 23:11:03 +07:00
Dan Cryer 39767583f1 Merge pull request #330 from sklerotraficon/master
Bugfix Errors with PHPCI GitHub hook #296
2014-04-10 16:33:35 +01:00
Dan Cryer 89432dac08 Adding blank lane at end of index.php 2014-04-10 16:31:48 +01:00