diff options
author | raveit65 <[email protected]> | 2019-07-29 14:04:50 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2019-07-31 15:26:47 +0200 |
commit | 82cf3450ad3b5b5ba9c7c575bd7a6f93a5317e7d (patch) | |
tree | 5e8df59e86972ad2f62c3d259d7475e960a9263a | |
parent | 8fcd86f1e46caaaf8cf6e4bd8c38d73bfe5d0949 (diff) | |
download | atril-82cf3450ad3b5b5ba9c7c575bd7a6f93a5317e7d.tar.bz2 atril-82cf3450ad3b5b5ba9c7c575bd7a6f93a5317e7d.tar.xz |
[CI] debian: show all deprecation warnings
-rw-r--r-- | .travis.yml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index f074eae9..1e135961 100644 --- a/.travis.yml +++ b/.travis.yml @@ -189,6 +189,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: - if [ ${DISTRO_NAME} == "debian" ];then - curl -Ls -o debian.sh https://github.com/mate-desktop/mate-dev-scripts/raw/master/travis/debian.sh |