gitlab-build-images/.gitlab-ci.yml
2022-07-01 14:21:53 +00:00

38 lines
879 B
YAML

# we support merge request workflow only
include:
- template: 'Workflows/MergeRequest-Pipelines.gitlab-ci.yml'
- local: '.gitlab/ci/*.yml'
default:
image: registry.gitlab.com/gitlab-org/gitlab-build-images/debian-bullseye-slim:docker-20.10.14-buildx-0.8
services:
- docker:20.10.14-dind
before_script:
- docker login -u "$CI_REGISTRY_USER" -p "$CI_REGISTRY_PASSWORD" "$CI_REGISTRY"
tags:
- gitlab-org-docker
stages:
- custom
- gitlab
- gitlab-assets
- gitlab-review-app
- gitaly
- automation
variables:
DOCKER_HOST: tcp://docker:2376
DOCKER_TLS_CERTDIR: /certs
DOCKER_CERT_PATH: /certs/client
DOCKER_TLS_VERIFY: 1
cache-google-chrome:
image: debian:bullseye-slim
stage: automation
# Starts the job immediately
needs: []
script:
- bash ./scripts/cache-google-chrome
# disable DinD
before_script: []
services: []