From b40ddd766cf5ebd6c1008f58623ec77e63bdd980 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=F0=9F=98=B8?= <😸@43-1.org> Date: Sat, 29 Aug 2020 12:47:06 +0200 Subject: [PATCH] .gitlab-ci.yml: add dependencies to avoid downloading unneeded artifacts --- .gitlab-ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index d864e85f..75fa42ae 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -47,6 +47,7 @@ get coverage: contributors: image: debian:buster stage: deploy + dependencies: [] script: - apt update && apt install -y git python3-debiancontributors - dc-tool --mine config/debian/contributor.patch --auth-token "@$DC_TOKEN" --source ftp.debian.org --post @@ -63,6 +64,8 @@ pages: - epydoc -q --html --graph all --css white -n DAK -o public/epydoc --include-log --show-imports dak dakweb - mv coverage public/coverage stage: deploy + dependencies: + - get coverage artifacts: paths: - public -- GitLab