+| Travis CI can run these optional commands in this phase, in following sequence:<br>- [`apt addons`](/user/installing-dependencies/#installing-packages-with-the-apt-addon)<br>- [`cache components`](/user/caching/) | Travis CI can run the following custom commands in this main phase, in this sequence:<br>- `before_install`: before the install phase.<br>- `install`: installs any dependencies required. | Travis CI can run the following custom commands in this main phase, in following sequence:<br> - `before_script`: before the script phase.<br>- `script`: run the build script.<br> - `before_cache`: (OPTIONAL, if and only if caching is effective)<br> - `after_success`: when the build *succeeds* (e.g., building documentation), the result is in the `TRAVIS_TEST_RESULT` environment variable.<br> - `after_failure`: when the build *fails* (e.g., uploading log files), the result is in the `TRAVIS_TEST_RESULT` environment variable. | Travis CI can run custom commands in the phases, in a following sequence:<br>- `before_deploy`: (if and only if deployment is active)<br>- `deploy`: optional deployment phase.<br>- `after_deploy`: (if and only if deployment is active) | Travis CI can run custom commands in the phases, in a following sequence:<br> - `after_script`: after the script phase.<br>|
0 commit comments