tic (version 0.2.13.9010)

tic: 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

tic(stages = load_from_file())

Arguments

stages

[named list] A named list of Stage objects as returned by load_from_file(), 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()