Skip to content
Snippets Groups Projects
Commit e064b688 authored by Benoit Mortier's avatar Benoit Mortier
Browse files

:ambulance: fix(gitlab): add .gitlab-ci.yml


add test for code conformance and compilation

Signed-off-by: default avatarBenoit Mortier <benoit.mortier@opensides.be>
parent 8e009f08
No related branches found
No related tags found
No related merge requests found
# 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
script:
- find bin/ -type f -print0 | xargs -0 -n1 perl -cw
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment