Update the postscriptbuild usage
[releng.git] / jjb / global / releng-macros.yml
index a5a83e2..d3ffb0b 100644 (file)
     name: lint-init
     builders:
       - shell: |
+          #!/bin/bash
           # Ensure we start with a clean environment
           rm -f bash-violation.log python-violation.log yaml-violation.log violation.log
           git --no-pager diff --diff-filter=MCRAT --name-only HEAD^1 > modified_files
     name: lint-report
     builders:
       - shell: |
+          #!/bin/bash
           if [[ -s violation.log ]]; then
               echo "Reporting lint result..."
               msg="Found syntax error and/or coding style violation(s) in the files modified by your patchset."
     name: lint-bash-code
     builders:
       - shell: |
+          #!/bin/bash
           echo "Checking bash code..."
           for f in $(egrep '\.sh$' modified_files)
           do
     name: lint-python-code
     builders:
       - shell: |
-          # Install python package 
+          #!/bin/bash
+          # Install python package
           sudo pip install "flake8==2.6.2"
 
           echo "Checking python code..."
     name: lint-yaml-code
     builders:
       - shell: |
+          #!/bin/bash
           # sudo Install python packages
           sudo pip install "yamllint==1.8.2"
 
             - shell:
                 !include-raw-escape: installer-report.sh
       - postbuildscript:
+          script-only-if-succeeded: false
           script-only-if-failed: true
           builders:
             - shell: |