diff options
author | Pablo Barciela <[email protected]> | 2019-06-25 23:45:12 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2022-07-20 00:14:41 +0200 |
commit | 1bf652822597c02f9c4e5daf154d49aa4e84eb47 (patch) | |
tree | e1a5315e1312b4134622baf3fe2db6c8c7576dc7 | |
parent | 5d171e4f43822a1662550703f9b42725c24cbeb9 (diff) | |
download | caja-1bf652822597c02f9c4e5daf154d49aa4e84eb47.tar.bz2 caja-1bf652822597c02f9c4e5daf154d49aa4e84eb47.tar.xz |
Travis CI: debian build: show all the warnings of deprecated functions
-rw-r--r-- | .travis.yml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index 00366ab8..b3887dfb 100644 --- a/.travis.yml +++ b/.travis.yml @@ -173,6 +173,12 @@ variables: -enable-checker alpha.core.FixedAddr -enable-checker security.insecureAPI.strcpy"' +before_scripts: + - if [ ${DISTRO_NAME} == "debian" ];then + - egrep -lRZ 'G_GNUC_BEGIN_IGNORE_DEPRECATIONS' . | xargs -0 -l sed -i -e 's/G_GNUC_BEGIN_IGNORE_DEPRECATIONS/ /g' + - egrep -lRZ 'G_GNUC_END_IGNORE_DEPRECATIONS' . | xargs -0 -l sed -i -e 's/G_GNUC_END_IGNORE_DEPRECATIONS/ /g' + - fi + build_scripts: # build failed with f30 und using clang patch, fixed in f30? # - if [ ${DISTRO_NAME} == "fedora" ];then |