Commit 4ba797a7 authored by bmortier's avatar bmortier
Browse files

Merge branch '5484-add-gitlab-ci-yml' into '1.3-fixes'

Resolve "add .gitlab-ci.yml"

Closes #5484

See merge request !2
Showing with 28 additions and 0 deletions
+28 -0
# Specify docker image
image: debian:stretch
# Define variable to disable SSL verification of GIT
variables:
GIT_SSL_NO_VERIFY: "true"
# Generate perlcritic rapport
create_perlcritic_rapport:
only:
- branches
- tags
before_script:
- apt-get update -qq
- apt-get install -y -qq libperl-critic-perl
script:
- perlcritic .
# Perl lint
create_perl_lint_rapport:
only:
- branches
- tags
before_script:
- apt-get update -qq
- apt-get install -y -qq perl
script:
- find bin/ -type f -print0 | xargs -0 -n1 perl -cw
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment