Add call to run shellcheck 51/26151/2
authorAimee Ukasick <aimeeu.opensource@gmail.com>
Thu, 15 Dec 2016 19:25:31 +0000 (13:25 -0600)
committerAimee Ukasick <aimeeu.opensource@gmail.com>
Fri, 10 Feb 2017 16:24:54 +0000 (10:24 -0600)
JIRA: COPPER-33

Add call to run shellcheck on tests directory

Change-Id: I530e4f6cd8f24f80c818944928a870fa23ed9e60
Signed-off-by: Aimee Ukasick <aimeeu.opensource@gmail.com>
jjb/copper/copper.yml

index 80ad929..19cd394 100644 (file)
 
     builders:
         - shell: |
-            echo "Nothing to verify!"
+            #!/bin/bash
+            set -o errexit
+            set -o nounset
+            set -o pipefail
+
+            cd $WORKSPACE/ci
+            shellcheck -f tty tests/*.sh