tic (version 0.2.13.9015)

run_all_stages: Emulate a CI run locally

Description

Runs predefined stages similarly to Travis CI and AppVeyor. The run aborts on error, the after_failure stage is never run.

Usage

run_all_stages(stages = dsl_load())

Arguments

stages

[named list] A named list of TicStage objects as returned by dsl_load(), by default loaded from tic.R.

Details

The stages are run in the following order:

  1. before_install()

  2. install()

  3. after_install()

  4. before_script()

  5. script()

  6. after_success()

  7. before_deploy()

  8. deploy()

  9. after_deploy()

  10. after_script()