Another change in the shell commands to avoid jjb to group the commands in the wrong way 79/8479/1
authorJan-Simon Möller <jsmoeller@linuxfoundation.org>
Wed, 15 Feb 2017 20:10:37 +0000 (21:10 +0100)
committerJan-Simon Möller <jsmoeller@linuxfoundation.org>
Wed, 15 Feb 2017 20:10:37 +0000 (21:10 +0100)
Change-Id: I4539b96564cc4d30451cca9aa62b8c3c7249c2f3
Signed-off-by: Jan-Simon Möller <jsmoeller@linuxfoundation.org>
jjb/ci-AGL-verify/ci-platform-jjb.yaml

index 18e4686..2dafc2c 100644 (file)
           build-timeout: '{build-timeout}'
 
     builders:
-      - shell: "echo YAY ; set"
-      - shell: "ssh -p 29418 agl-jobbuilder@gerrit.automotivelinux.org gerrit review ${{GERRIT_CHANGE_NUMBER}},${{GERRIT_PATCHSET_NUMBER}} --label ci-image-build=+1 -n NONE --message=\"CI-Image-Build finished\" || true"
-      - shell: "ssh -p 29418 agl-jobbuilder@gerrit.automotivelinux.org gerrit review ${{GERRIT_CHANGE_NUMBER}},${{GERRIT_PATCHSET_NUMBER}} --verified +1 -n NONE --message=\"Image successful, Verified +1\" || true"
+      - shell: |
+          set
+          echo "#### CIB +1 ####"
+          ssh -p 29418 agl-jobbuilder@gerrit.automotivelinux.org gerrit review ${{GERRIT_CHANGE_NUMBER}},${{GERRIT_PATCHSET_NUMBER}} --label ci-image-build=+1 -n NONE --message="CI-Image-Build finished" || true
+          echo "#### Verified +1 ####"
+          ssh -p 29418 agl-jobbuilder@gerrit.automotivelinux.org gerrit review ${{GERRIT_CHANGE_NUMBER}},${{GERRIT_PATCHSET_NUMBER}} --verified +1 -n NONE --message="Image successful, Verified +1" || true
 
 
 #
           build-timeout: '{build-timeout}'
 
     builders:
-      - shell: "echo YAY ; set "
-      - shell: "ssh -p 29418 agl-jobbuilder@gerrit.automotivelinux.org gerrit review ${{GERRIT_CHANGE_NUMBER}},${{GERRIT_PATCHSET_NUMBER}} --label ci-image-boot-test=+1 -n NONE --message='CI-Image-Boot-Test finished' || true"
+      - shell: |
+          set
+          echo "#### CIBT +1 ####"
+          ssh -p 29418 agl-jobbuilder@gerrit.automotivelinux.org gerrit review ${{GERRIT_CHANGE_NUMBER}},${{GERRIT_PATCHSET_NUMBER}} --label ci-image-boot-test=+1 -n NONE --message='CI-Image-Boot-Test finished' || true