Browse Source

travis.yml: run buildman with option -E

This forces all compiler warnings to be treated as errors.

Signed-off-by: Daniel Schwierzeck <daniel.schwierzeck@gmail.com>
Daniel Schwierzeck 7 years ago
parent
commit
329f5ef51d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      .travis.yml

+ 1 - 1
.travis.yml

@@ -102,7 +102,7 @@ script:
  # Exit code 129 means warnings only.
  # Exit code 129 means warnings only.
  - if [[ "${BUILDMAN}" != "" ]]; then
  - if [[ "${BUILDMAN}" != "" ]]; then
      ret=0;
      ret=0;
-     tools/buildman/buildman -P ${BUILDMAN} || ret=$?;
+     tools/buildman/buildman -P -E ${BUILDMAN} || ret=$?;
      if [[ $ret -ne 0 && $ret -ne 129 ]]; then
      if [[ $ret -ne 0 && $ret -ne 129 ]]; then
        tools/buildman/buildman -sdeP ${BUILDMAN};
        tools/buildman/buildman -sdeP ${BUILDMAN};
        exit $ret;
        exit $ret;