diff options
author | Dan Radez <dradez@redhat.com> | 2017-03-30 08:46:40 -0400 |
---|---|---|
committer | Dan Radez <dradez@redhat.com> | 2017-03-30 08:46:40 -0400 |
commit | ae07d80155a5abf5900a745e61405706eb5c1710 (patch) | |
tree | e097d2cdaa472265975ce605cd8712a85ea057c7 | |
parent | b5c5392388aab171c9eca9a97278234100a97cd3 (diff) |
Removing _l3 from Apex scenario names in master
Change-Id: I9169434d3dc62c911d351f8238af2c5daf314d99
Signed-off-by: Dan Radez <dradez@redhat.com>
-rwxr-xr-x | jjb/apex/apex-deploy.sh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/jjb/apex/apex-deploy.sh b/jjb/apex/apex-deploy.sh index 6343b838b..1e04c1f95 100755 --- a/jjb/apex/apex-deploy.sh +++ b/jjb/apex/apex-deploy.sh @@ -59,6 +59,12 @@ else fi fi +# rename odl_l3 to odl only for master +# this can be removed once all the odl_l3 references +# are updated to odl after the danube jobs are removed +if [[ "$BUILD_DIRECTORY" == *master* ]]; then + DEPLOY_SCENARIO=${DEPLOY_SCENARIO/odl_l3/odl} +fi if [ -z "$DEPLOY_SCENARIO" ]; then echo "Deploy scenario not set!" exit 1 |