Skip to content
Snippets Groups Projects
Commit 8afd1cc5 authored by Dmitriy Safronov's avatar Dmitriy Safronov
Browse files

common .gitlab-ci.yml

parent 7d1e9c72
No related branches found
No related tags found
No related merge requests found
# 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' {} \;
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment