From 7cb74cd26de6de7c83b51f295bef7ca429478886 Mon Sep 17 00:00:00 2001
From: Wouter Deconinck <wdconinc@gmail.com>
Date: Thu, 29 Aug 2024 01:25:00 +0000
Subject: [PATCH] fix: add error message about second attempt failure

---
 .gitlab-ci.yml | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 809d4d824..cc45693d6 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -292,6 +292,7 @@ base:
           exit 1 ;
         fi ;
         if test ${attempts} -ge 1 ; then
+          echo "Failed to build on second attempt!" ;
           exit 1 ;
         fi ;
         let attempts=$attempts+1 ;
@@ -452,6 +453,7 @@ eic:
           exit 1 ;
         fi ;
         if test ${attempts} -ge 1 ; then
+          echo "Failed to build on second attempt!" ;
           exit 1 ;
         fi ;
         let attempts=$attempts+1 ;
-- 
GitLab