Gitlab_ci.Var
GitLab CI Configuration variables
Variables in GitLab CI configurations.
Variables appear in:
if:
expressionsval make : string -> t
make variable_name
creates a variable called variable_name
.
Raises Invalid_argument
if the name
is not composed exclusively of characters from the set a-zA-Z0-9_
.
val encode : t -> string
The string representation of a variable.
encode @@ make "foo"
is "$foo"
.