From d3ed5cd9d2dd5b53315a5c60fa110fad93b9057a Mon Sep 17 00:00:00 2001
From: Moritz Maxeiner <mm@ucw.sh>
Date: Sun, 19 Jul 2020 00:52:12 +0200
Subject: [PATCH] [ci] workaround for some podman/systemd issue

---
 .gitlab-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 8efe835..aa31e15 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -7,8 +7,8 @@ build ubuntu:
   tags: [linux, shell]
   script:
     - image_name="${CI_REGISTRY}/${CI_PROJECT_PATH,,}"
-    - podman build --pull -t "${image_name}/ubuntu" ubuntu
-    - podman build -t "${image_name}/jupyterhub" jupyterhub
+    - podman build --cgroup-manager=cgroupfs --pull -t "${image_name}/ubuntu" ubuntu
+    - podman build --cgroup-manager=cgroupfs -t "${image_name}/jupyterhub" jupyterhub
 
 deploy ubuntu:
   stage: deploy
-- 
GitLab