summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel P. Berrangé <berrange@redhat.com>2021-07-27 14:55:12 +0100
committerDaniel P. Berrangé <berrange@redhat.com>2021-07-27 14:55:12 +0100
commitad0e925588002a53d3a272198fddbb8bd91d4982 (patch)
treee6a4e5d211b0723d14c5a401e7de781ef1e1d90e
parent72243326c15d55be71e1d141aeb895eda97afbc2 (diff)
downloadlibosinfo-ad0e925588002a53d3a272198fddbb8bd91d4982.tar.gz
gitlab: use custom docker:dind image
The current docker:dind container has broken default seccomp filter that results in clone3 being blocked, which in turn breaks Fedora 35 rawhide. This custom image has a workaround that causes the seccomp filter to return ENOSYS for clone3 instad of EPERM, thus triggering glibc to fallback to clone correctly. Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
-rw-r--r--.gitlab-ci.yml3
1 files changed, 2 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 263f421..7ae2e70 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -35,7 +35,8 @@ stages:
image: docker:stable
stage: containers
services:
- - docker:dind
+ - name: registry.gitlab.com/libvirt/libvirt-ci/docker-dind:master
+ alias: docker
before_script:
- export TAG="$CI_REGISTRY_IMAGE/ci-$NAME:latest"
- export COMMON_TAG="$CI_REGISTRY/libosinfo/libosinfo/ci-$NAME:latest"