From 7adf73c2494ee0e19a499c3278407ad059da8ea9 Mon Sep 17 00:00:00 2001 From: Stephen Ball Date: Thu, 12 Nov 2015 13:33:58 +0000 Subject: [PATCH] Updated Adding PHPCI Support to Your Projects (markdown) --- Adding-PHPCI-Support-to-Your-Projects.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Adding-PHPCI-Support-to-Your-Projects.md b/Adding-PHPCI-Support-to-Your-Projects.md index 3aa7059..200ad14 100644 --- a/Adding-PHPCI-Support-to-Your-Projects.md +++ b/Adding-PHPCI-Support-to-Your-Projects.md @@ -51,6 +51,8 @@ As mentioned earlier, PHPCI is powered by plugins, there are several phases in w * `test` - The tests that should be run during the build. Plugins run during this phase will contribute to the success or failure of the build. * `complete` - Always called when the `test` phase completes, regardless of success or failure. **Note** that is you do any mysql stuff here, you will need to add the mysql credentials to this section as well, as it runs in a separate instance. * `success` - Called upon success of the `test` phase. -* `failure` - Called upon the failure of the `test` phase. +* `failure` - Called upon failure of the `test` phase. +* `fixed` - Called upon success of the `test` phase if the previous build of the branch was a success. +* `broken` - Called upon failure of the `test` phase if the previous build of the branch was a failure. The `ignore` section is merely an array of paths that should be ignored in all tests (where possible.) \ No newline at end of file