[libsecret] gitlab-ci: Fix the previous change



commit 9085c8a6c121112e8ae2d4dfe99a4983ae808511
Author: Daiki Ueno <dueno src gnome org>
Date:   Sun Jun 9 09:08:26 2019 +0200

    gitlab-ci: Fix the previous change
    
    Don't error out on deploy, if coverage report is not successfully
    generated.

 .gitlab-ci.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 23dc653..1381dc1 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -72,7 +72,7 @@ fedora:coverage:
 pages:
   stage: deploy
   script:
-    - mv _build/meson-logs/coveragereport/ public/
+    - test -d _build/meson-logs/coveragereport/ && mv _build/meson-logs/coveragereport/ public/ || true
   artifacts:
     paths:
       - public


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]