diff options
author | Fatih Degirmenci <fatih.degirmenci@ericsson.com> | 2015-12-11 11:52:45 +0100 |
---|---|---|
committer | Fatih Degirmenci <fatih.degirmenci@ericsson.com> | 2015-12-11 12:16:33 +0000 |
commit | fe91ad69f12ca2ce493669761d1249c01a65d379 (patch) | |
tree | cbd36d309e540955985b1b95fdadd85c049d81e0 | |
parent | ac6058d96b50579d5db5b4e4ce58dc7d454e23a2 (diff) |
Create a separate builder for joid on intel pod5
Change-Id: Icbb7f50652f22bbca2835afd47669ab21fd99bf4
Signed-off-by: Fatih Degirmenci <fatih.degirmenci@ericsson.com>
-rw-r--r-- | jjb/joid/joid.yml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/jjb/joid/joid.yml b/jjb/joid/joid.yml index a3b994a82..70842dad5 100644 --- a/jjb/joid/joid.yml +++ b/jjb/joid/joid.yml @@ -76,11 +76,27 @@ branch: '{branch}' builders: + - '{pod}-builder' + +######################## +# builder macros +######################## +- builder: + name: intel-pod5-builder + builders: - shell: | #!/bin/bash echo "Running $INSTALLER_NAME with controller $CONTROLLER" echo "Please note that this is a quick try to see how joid deployment works" + echo + echo "Executing clean.sh" cd $WORKSPACE/ci ./clean.sh + - shell: | + cd $WORKSPACE/ci + echo "Executing 02-maasdeploy.sh intelpod5" ./02-maasdeploy.sh intelpod5 + - shell: | + cd $WORKSPACE/ci + echo "Executing deploy.sh -o liberty -s $CONTROLLER -t ha -l intelpod5" ./deploy.sh -o liberty -s $CONTROLLER -t ha -l intelpod5 |