diff options
author | raveit65 <[email protected]> | 2020-04-04 19:21:24 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2020-04-04 19:21:24 +0200 |
commit | 2f5fca971ec864d77690ca575e8ad76d6a1d5584 (patch) | |
tree | fda2f5b542912710f011b7ad1b36f6e501d9f1cf | |
parent | 48d2a0ccce9ddb4b437f8a421d6df72a3cd822a2 (diff) | |
download | engrampa-2f5fca971ec864d77690ca575e8ad76d6a1d5584.tar.bz2 engrampa-2f5fca971ec864d77690ca575e8ad76d6a1d5584.tar.xz |
ci: update mate-compile-warning level for stable branches
-rw-r--r-- | .build.yml | 24 |
1 files changed, 12 insertions, 12 deletions
@@ -90,18 +90,6 @@ variables: -enable-checker alpha.core.FixedAddr -enable-checker security.insecureAPI.strcpy"' -build_scripts: - - ./autogen.sh --enable-compile-warnings=maximum - - scan-build $CHECKERS ./configure --enable-compile-warnings=maximum - - if [ $CPU_COUNT -gt 1 ]; then - - scan-build $CHECKERS --keep-cc -o html-report make -j $(( $CPU_COUNT + 1 )) - - else - - scan-build $CHECKERS --keep-cc -o html-report make - - fi - - if [ ${DISTRO_NAME} == "debian" ];then - - cppcheck --enable=warning,style,performance,portability,information,missingInclude . - - fi - before_scripts: - cd ${START_DIR} - '[ -f mate-common-1.24.1.tar.xz ] || curl -Ls -o mate-common-1.24.1.tar.xz https://github.com/mate-desktop/mate-common/releases/download/v1.24.1/mate-common-1.24.1.tar.xz' @@ -115,6 +103,18 @@ before_scripts: - make - make install +build_scripts: + - ./autogen.sh + - scan-build $CHECKERS ./configure + - if [ $CPU_COUNT -gt 1 ]; then + - scan-build $CHECKERS --keep-cc -o html-report make -j $(( $CPU_COUNT + 1 )) + - else + - scan-build $CHECKERS --keep-cc -o html-report make + - fi + - if [ ${DISTRO_NAME} == "debian" ];then + - cppcheck --enable=warning,style,performance,portability,information,missingInclude . + - fi + after_scripts: - make distcheck |