env property

List<String>? env
getter/setter pair

A list of global environment variable definitions that will exist for all build steps in this build.

If a variable is defined in both globally and in a build step, the variable will use the build step value. The elements are of the form "KEY=VALUE" for the environment variable "KEY" being given the value "VALUE".

Implementation

core.List<core.String>? env;