From b5cd874acb90e917dd213d8e3e39de7f158185be Mon Sep 17 00:00:00 2001 From: Ludovico de Nittis <ludovico.denittis@collabora.com> Date: Tue, 9 Feb 2021 16:43:15 +0100 Subject: [PATCH] gitlab-ci: Set an entrypoint for archlinux Signed-off-by: Ludovico de Nittis <ludovico.denittis@collabora.com> --- debian/gitlab-ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/debian/gitlab-ci.yml b/debian/gitlab-ci.yml index 862381cb2..b49b1e79a 100644 --- a/debian/gitlab-ci.yml +++ b/debian/gitlab-ci.yml @@ -337,7 +337,10 @@ test:ubuntu-20.04: test:archlinux: extends: .test_template - image: archlinux:latest + image: + name: archlinux:latest + # The entrypoint is necessary to avoid the "shell not found" error + entrypoint: ["/usr/bin/bash", "-c"] # Do not use the global before_script because it is only for Debian based # distros before_script: -- GitLab