diff options
author | agardner <agardner@linuxfoundation.org> | 2018-02-22 15:20:16 -0500 |
---|---|---|
committer | agardner <agardner@linuxfoundation.org> | 2018-02-22 15:20:16 -0500 |
commit | fb7b6ace9d8344ab22b92925b06f43f25ab9d3d8 (patch) | |
tree | 0794d1abdcb4a650d5b5405704e403937a569e42 /jjb/global | |
parent | 4d7414428a945c602bc01067288b72e3b2ec34e4 (diff) |
Jenkins not reporting lint results to gerrit
I set -x in a test and then it did report.
not sure what's going on here,
I thought this was fixed.
May as well cat the violation log as we debug
Change-Id: I142fb3855ebc000ee90aa24e0ecb336bb9b313df
Signed-off-by: agardner <agardner@linuxfoundation.org>
Diffstat (limited to 'jjb/global')
-rw-r--r-- | jjb/global/releng-macros.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/jjb/global/releng-macros.yml b/jjb/global/releng-macros.yml index a12a3c8a5..3d03f33b7 100644 --- a/jjb/global/releng-macros.yml +++ b/jjb/global/releng-macros.yml @@ -318,7 +318,9 @@ - shell: | #!/bin/bash if [[ -s violation.log ]]; then - echo "Reporting lint result..." + cat violation.log + echo "Reporting lint result...." + set -x msg="Found syntax error and/or coding style violation(s) in the files modified by your patchset." sed -i -e "1s#^#${msg}\n\n#" violation.log cmd="gerrit review -p $GERRIT_PROJECT -m \"$(cat violation.log)\" $GERRIT_PATCHSET_REVISION --notify NONE" |