mirror of
https://ops.gitlab.net/gitlab-org/gitlab-build-images.git
synced 2025-12-09 10:02:56 +01:00
to support clone3 syscall, which is needed to build images based on ubuntu:jammy. - https://github.com/moby/moby/pull/42681 - https://github.com/moby/moby/pull/42836 Signed-off-by: Takuya Noguchi <takninnovationresearch@gmail.com>
37 lines
770 B
YAML
37 lines
770 B
YAML
# we support merge request workflow only
|
|
include:
|
|
- template: 'Workflows/MergeRequest-Pipelines.gitlab-ci.yml'
|
|
- local: '.gitlab/ci/*.yml'
|
|
|
|
default:
|
|
image: docker:20.10.14-git
|
|
services:
|
|
- docker:20.10.14-dind
|
|
before_script:
|
|
- docker login -u "$CI_REGISTRY_USER" -p "$CI_REGISTRY_PASSWORD" "$CI_REGISTRY"
|
|
- apk add -U bash
|
|
tags:
|
|
- gitlab-org-docker
|
|
|
|
stages:
|
|
- test
|
|
- deploy
|
|
- deploy-gitlab
|
|
- deploy-gitlab-assets
|
|
- deploy-gitaly
|
|
- automation
|
|
|
|
variables:
|
|
DOCKER_DRIVER: overlay2
|
|
DOCKER_HOST: tcp://docker:2375
|
|
|
|
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: []
|