Add missing dependencies in the CI

This commit is contained in:
Yohann D'ANELLO 2020-11-04 20:18:36 +01:00
parent 0e0da24cb1
commit ae1510ccbb
2 changed files with 2 additions and 0 deletions

View file

@ -13,6 +13,7 @@ steps:
- name: ansible-lint
image: python:3.9-alpine
commands:
- apk add --no-cache gcc libc-dev libffi-dev openssl-dev
- pip install ansible-lint==4.3.7
- ansible-lint *.yml
...

View file

@ -13,6 +13,7 @@ yamllint:
ansible-lint:
stage: lint
script:
- apk add gcc libc-dev libffi-dev openssl-dev
- pip install ansible-lint==4.3.7
- ansible-lint *.yml
...