From 8afd1cc5f5eb66ee7f95e1ee19bb0debc69b558f Mon Sep 17 00:00:00 2001 From: zimniy <zimniy@cyberbrain.pw> Date: Wed, 27 Jan 2021 15:53:20 +0300 Subject: [PATCH] common .gitlab-ci.yml --- .gitlab-ci.yml | 36 ------------------------------------ 1 file changed, 36 deletions(-) delete mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml deleted file mode 100644 index 876a613..0000000 --- a/.gitlab-ci.yml +++ /dev/null @@ -1,36 +0,0 @@ -# VARIABLES -variables: - DOCKER_BUILDKIT: 1 - DOCKER_DRIVER: overlay2 - DOCKER_HOST: tcp://localhost:2375 - DOCKER_TLS_CERTDIR: "" - -########################################################################################################## - -## PIPELINE DEFINITION -stages: - - check - -########################################################################################################## - -### COMMON SECTION -.common: &common - services: - - registry.cyberbrain.pw/docker/dind - variables: - GIT_DEPTH: 1 - ANSIBLE_FORCE_COLOR: "True" - before_script: - - chmod -R o-w ../ - -########################################################################################################## - -### TEST SECTION -test: - <<: *common - stage: check - image: registry.cyberbrain.pw/ansible/ansible - except: - - /^master$/ - script: - - find . -type d -exec ansible-lint --force-color -v -x '204' {} \; -- GitLab