From 8ea6fd19258593d71ac65e41459ce203c5aa9b9a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Thu, 4 Jul 2019 17:35:48 +0200 Subject: [PATCH] ci: Include git in extension-ci image It's useful for anything that does not want to limit itself to the checked out branch, like comparing source and target branch. https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/627 --- .gitlab-ci/Dockerfile.extension-ci | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci/Dockerfile.extension-ci b/.gitlab-ci/Dockerfile.extension-ci index 228355475..6ec6aff9f 100644 --- a/.gitlab-ci/Dockerfile.extension-ci +++ b/.gitlab-ci/Dockerfile.extension-ci @@ -1,7 +1,7 @@ FROM registry.fedoraproject.org/fedora:latest RUN dnf -y update && dnf -y upgrade && \ - dnf install -y 'dnf-command(copr)' && \ + dnf install -y 'dnf-command(copr)' git && \ # For syntax checks with `find . -name '*.js' -exec js60 -c -s '{}' ';'` dnf install -y findutils mozjs60-devel && \