From adebe28b52d325e9ce1fc3e77ee073f386123367 Mon Sep 17 00:00:00 2001 From: Evan Hunt Date: Thu, 28 Jun 2018 09:04:11 -0700 Subject: [PATCH] add checklibs to precheck CI step --- .gitlab-ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 22913988c5..7c05aae1d1 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -140,6 +140,7 @@ precheck:debian:sid:amd64: <<: *debian_sid_amd64_image stage: precheck script: + - sh util/checklibs.sh > checklibs.out - perl util/check-changes CHANGES - perl -w util/merge_copyrights - diff -urNap util/copyrights util/newcopyrights @@ -149,6 +150,7 @@ precheck:debian:sid:amd64: artifacts: paths: - util/newcopyrights + - checklibs.out expire_in: '1 week' when: on_failure