Interface AttiniRunnerJobProps

interface AttiniRunnerJobProps {
    commands: string[];
    environment?: {
        [key: string]: string;
    };
    runner?: string;
}

Properties

commands: string[]

A list of shell commands that will be executed by the Runner.

environment?: {
    [key: string]: string;
}

Environment variables that will be set in the shell for the runner job.

Type declaration

  • [key: string]: string
runner?: string

A reference to an AttiniRunner to use for executing the job. Use AttiniRunner.runnerName to get a reference.

If omitted the Attini default runner will be used.

Generated using TypeDoc