Here is a list of convenience Bash functions that are available:
- travis_run_before_install corresponds to the before_install lifecycle event
- travis_run_install corresponds to the install lifecycle event
- travis_run_before_script corresponds to the before_script lifecycle event
- travis_run_script corresponds to the script lifecycle event
- travis_run_after_success corresponds to the after_success lifecycle event
- travis_run_after_failure corresponds to the after_failure lifecycle event
- travis_run_after_script corresponds to the after_script lifecycle event
In the following screenshot, we run the travis_run_before_install function:
Remember that this is running what is specified in the before_install ...