From 879a3e8acf78194d9dfabac1ce2ee32f238af3a9 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Wed, 9 Aug 2023 14:31:13 +0100 Subject: [PATCH] CI: Remove unneeded install of git in maint-checks This was added in 9357a8fd6b22 "ci: add shebang to the GitLab CI" as part of !990 to the `maint-checks` job; but the actual additional check was added to the `doc-features` job (by mistake, fixed in !1490); and, that shebang check script doesn't need git anyway. --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 7086f5329..d875386cd 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -32,7 +32,7 @@ maint-checks: stage: check image: debian:stable-slim script: - - apt-get update && apt-get install -y python3-toml python-is-python3 git + - apt-get update && apt-get install -y python3-toml python-is-python3 - ./maint/check_toposort - ./maint/add_warning --check - ./maint/shebang