From 1295d9fc6a65a93558702845f061802a56013512 Mon Sep 17 00:00:00 2001 From: Guillaume Desmottes Date: Mon, 20 Apr 2020 15:19:22 +0200 Subject: [PATCH] ci: remove target/ as manual clean up It seems that when a job is failing, target/ is not properly wiped out from the ci container triggering later jobs to fail, see for example https://gitlab.freedesktop.org/gdesmott/gstreamer-rs/-/jobs/2349943 Manually clean it up as after_script to hopefully workaround this problem. --- .gitlab-ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 30e0c4da0..182508ea1 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -95,6 +95,8 @@ update-nightly: key: "gst" paths: - "${CARGO_HOME}" + after_script: + - rm -rf target .img-stable: extends: