diff options
author | Tom Rini <trini@konsulko.com> | 2022-04-11 12:58:04 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-04-11 12:58:04 -0400 |
commit | b72278c5cf09d16dc0907f10bd79a4b06fa8a771 (patch) | |
tree | 272630db8cd98867c13aecce18f1befffd1d37a5 | |
parent | 19cb73eb07be3d527025e0d10432070ff0ce363f (diff) | |
download | u-boot-TEST/enhance-failure-reporting.zip u-boot-TEST/enhance-failure-reporting.tar.gz u-boot-TEST/enhance-failure-reporting.tar.bz2 |
CI: Print out unmigrated symbols when failingTEST/enhance-failure-reporting
To make addressing the problem of migrated symbols being present in
board config header files, update the CI test to them print what symbols
are causing it to fail.
Signed-off-by: Tom Rini <trini@konsulko.com>
-rw-r--r-- | .gitlab-ci.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 43fe8c6..1a38fa0 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -137,7 +137,8 @@ check for migrated symbols in board header: NUM=`comm -123 --total --output-delimiter=, ${KSYMLST} ${KUSEDLST} | cut -d , -f 3`; if [[ $NUM -ne 0 ]]; then - echo "Unmigrated symbols found in $CFG"; + echo "Unmigrated symbols found in $CFG:"; + comm -12 ${KSYMLST} ${KUSEDLST} exit 1; fi; done |