diff options
author | 2018-09-12 22:30:17 +0200 | |
---|---|---|
committer | 2018-09-12 22:30:17 +0200 | |
commit | 966f369f5b6d32e72b4426dec6d5ae79abae32f2 (patch) | |
tree | 91d33550ec7da211c0362090ceec2bc5bf117022 /jjb/fuel | |
parent | 0ee36b71b34afa6f54415a8ed7bcd25222591a4e (diff) |
[fuel] Accept arm clusters as valid deploy targets
JIRA: ARMBAND-401
Change-Id: Icd32874ecb38c3f7469e71bd461794b65f50494c
Signed-off-by: Alexandru Avadanii <Alexandru.Avadanii@enea.com>
Diffstat (limited to 'jjb/fuel')
-rwxr-xr-x | jjb/fuel/fuel-deploy.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/jjb/fuel/fuel-deploy.sh b/jjb/fuel/fuel-deploy.sh index a4b40f44f..85f2610a6 100755 --- a/jjb/fuel/fuel-deploy.sh +++ b/jjb/fuel/fuel-deploy.sh @@ -49,7 +49,7 @@ LAB_CONFIG_URL=${LAB_CONFIG_URL:-'ssh://jenkins-ericsson@gerrit.opnfv.org:29418/ SUDO='sudo -E' if [ "${PROJECT}" = 'fuel' ]; then # Fuel currently supports ericsson, intel, lf and zte labs - if [[ ! "${LAB_NAME}" =~ (ericsson|intel|lf|zte) ]]; then + if [[ ! "${LAB_NAME}" =~ (arm|enea|ericsson|intel|lf|unh|zte) ]]; then echo "Unsupported/unidentified lab ${LAB_NAME}. Cannot continue!" exit 1 fi |