summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorThe one with the braid <the-one@with-the-braid.cf>2023-01-19 07:21:04 +0100
committerThe one with the braid <the-one@with-the-braid.cf>2023-01-19 07:42:23 +0100
commitf01b96588dae3ffbfca267a1ff51477decba998a (patch)
tree8fab93c884f8556058f6ca3965b0b9344c1fc7e9 /.gitlab-ci.yml
parent815db0d962efa3f3a0aac268ad777f5217cb552e (diff)
downloadconduit-f01b96588dae3ffbfca267a1ff51477decba998a.zip
fix: adjust CI config to runner requirements
- make use of more stable BTRFS driver - set default pull policy to `if-not-present` Signed-off-by: The one with the braid <the-one@with-the-braid.cf>
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml9
1 files changed, 6 insertions, 3 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 91258ea..d05bb89 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -16,14 +16,17 @@ variables:
.docker-shared-settings:
stage: "build docker image"
- image: jdrouet/docker-with-buildx:20.10.21-0.9.1
+ image:
+ name: jdrouet/docker-with-buildx:20.10.21-0.9.1
+ pull_policy: if-not-present
needs: []
- tags: ["docker"]
+ tags: [ "docker" ]
variables:
# Docker in Docker:
DOCKER_HOST: tcp://docker:2375/
DOCKER_TLS_CERTDIR: ""
- DOCKER_DRIVER: overlay2
+ # Famedly runners use BTRFS, overlayfs and overlay2 often break jobs
+ DOCKER_DRIVER: btrfs
services:
- docker:dind
script: