From 89d239fb4e82658cd1d43fc80e6b5417b2f22379 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felix=20Sch=C3=A4fer?= <felix@thegcat.net> Date: Fri, 6 Nov 2020 18:41:20 +0100 Subject: [PATCH] Change image, do more by hand --- .gitlab-ci.yml | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b418c83..5f98d82 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,17 +1,29 @@ --- -image: quay.io/ansible/molecule:3.0.8 +image: docker:stable-dind services: - docker:dind variables: GIT_DEPTH: "1" PIP_CACHE_DIR: "$CI_PROJECT_DIR/pip-cache" + GIT_CLONE_PATH: $CI_BUILDS_DIR/kif.akplanning cache: paths: - "$CI_PROJECT_DIR/pip-cache" key: "$CI_PROJECT_ID" +before_script: + - apk add --no-cache + python3 python3-dev py3-pip gcc git curl build-base + autoconf automake py3-cryptography linux-headers + musl-dev libffi-dev openssl-dev openssh + - docker info + - python3 --version + - python3 -m pip install ansible molecule[docker] ansible-lint + - ansible --version + - molecule --version + molecule: stage: test script: -- GitLab