From ae1510ccbb59579112a5158892452bf44c454807 Mon Sep 17 00:00:00 2001 From: Yohann D'ANELLO Date: Wed, 4 Nov 2020 20:18:36 +0100 Subject: [PATCH] Add missing dependencies in the CI --- .drone.yml | 1 + .gitlab-ci.yml | 1 + 2 files changed, 2 insertions(+) diff --git a/.drone.yml b/.drone.yml index 55a921d..416e400 100644 --- a/.drone.yml +++ b/.drone.yml @@ -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 ... diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 6d28f6f..c62f35b 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -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 ...