From a4f8c0789b0e05022192ca20bfe22855cd024f83 Mon Sep 17 00:00:00 2001 From: Olli-Pekka Puolitaival Date: Wed, 9 May 2018 13:31:18 +0300 Subject: [PATCH] Check that no GPL licence inside code --- .travis.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.travis.yml b/.travis.yml index f995b2500b..9b6a70109b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -260,3 +260,9 @@ matrix: script: # Check that no changes after clone. This check that .gitattributes is used right way. - git diff --exit-code + + - env: + - NAME=licence_check + script: + - echo 'Checking that there is no GPL licence text in code' + - ! git grep -q --ignore-case "gnu general public";