a2f47f9e3b
Ensure only one parameterDefinitions XML tag is created for the entire set of parameters instead of one per parameter. Add a test case to show the correct behaviour with more than one parameter defined and update the docstring to use the yaml test case as an exmaple. While updating the docstring add missing default values for arguments. Change-Id: Ife8f2535117d355d845d5d72dd9e6e6669a6b9df
17 lines
452 B
YAML
17 lines
452 B
YAML
wrappers:
|
|
- release:
|
|
keep-forever: false
|
|
parameters:
|
|
- string:
|
|
name: RELEASE_BRANCH
|
|
default: ''
|
|
description: Git branch to release from.
|
|
- bool:
|
|
name: FOO
|
|
default: false
|
|
description: "A parameter named FOO, defaults to 'false'."
|
|
post-success:
|
|
- shell: |
|
|
#!/bin/bash
|
|
copy_build_artefacts.sh
|