Type alias t_stage_script

t_stage_script: {
    post_build: t_script[];
    post_run: t_script[];
    pre_build: t_script[];
    pre_run: t_script[];
}

Stages and scripts

Type declaration

  • post_build: t_script[]

    Executed after calling build

  • post_run: t_script[]

    Executed after calling run

  • pre_build: t_script[]

    Executed before calling build

  • pre_run: t_script[]

    Executed before calling run

Generated using TypeDoc