From: Paul Moore <paul@xxxxxxxxxxxxxx> Unfortunately the perltidy results differ between moden distros and the current Travis CI environment. This patch attempts to address this by using the current upstream perltidy in the Travis CI tests. Signed-off-by: Paul Moore <paul@xxxxxxxxxxxxxx> --- .travis.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 61bb1f2..256e92c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,10 +6,17 @@ addons: apt: packages: - astyle - - perltidy - libselinux1-dev - libsctp-dev +before_install: + - git clone https://github.com/perltidy/perltidy.git perltidy + - | + (cd perltidy; + perl Makefile.PL; + make; + sudo make install) + script: - tools/check-syntax -f && git diff --exit-code - make