From 083176f1c2ec3a3f2934d800689ae19ae99d80fd Mon Sep 17 00:00:00 2001
From: Alam Ed Arias <alam@srb2.org>
Date: Wed, 24 Jan 2024 02:51:14 +0000
Subject: [PATCH] Update .gitlab-ci.yml file

OK, very old version of ccache do not have --show-log-stats, just return code 0
---
 .gitlab-ci.yml | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 425b7d1d12..ce17581b03 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -153,8 +153,8 @@ default:
     - - |
           # ccache_stats
           echo -e "\e[0Ksection_start:`date +%s`:ccache_stats[collapsed=true]\r\e[0Kccache statistics:"
-      - ccache --show-stats --verbose || ccache --show-stats
-      - ccache --show-log-stats --verbose || ccache --show-log-stats
+      - ccache --show-stats
+      - ccache --show-log-stats || true
       - |
           # ccahe_stats
           echo -e "\e[0Ksection_end:`date +%s`:ccache_stats\r\e[0K"
@@ -673,8 +673,8 @@ Alpine 3 GCC:
     - - |
           # ccache_stats
           echo -e "\e[0Ksection_start:`date +%s`:ccache_stats[collapsed=true]\r\e[0Kccache statistics:"
-      - ccache --show-stats --verbose || ccache --show-stats
-      - ccache --show-log-stats --verbose || ccache --show-log-stats
+      - ccache --show-stats
+      - ccache --show-log-stats || true
       - |
           # ccahe_stats
           echo -e "\e[0Ksection_end:`date +%s`:ccache_stats\r\e[0K"
-- 
GitLab