The fixed and broken phase description was incorrect. Also fixed typo.
parent
b06a6914a6
commit
4bb919874f
1 changed files with 3 additions and 3 deletions
|
|
@ -47,12 +47,12 @@ complete:
|
|||
|
||||
As mentioned earlier, PHPCI is powered by plugins, there are several phases in which plugins can be run:
|
||||
|
||||
* `setup` - This phase is designed to initialise the build procedure.
|
||||
* `setup` - This phase is designed to initialize the build procedure.
|
||||
* `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 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.
|
||||
* `fixed` - Called upon success of the `test` phase if the previous build of the branch was a failure.
|
||||
* `broken` - Called upon failure of the `test` phase if the previous build of the branch was a success.
|
||||
|
||||
The `ignore` section is merely an array of paths that should be ignored in all tests (where possible.)
|
||||
Loading…
Add table
Add a link
Reference in a new issue