From 70fd8434d6f5e93da80ef98d22d30488ddf60a9b Mon Sep 17 00:00:00 2001
From: schuur <schuur@astron.nl>
Date: Fri, 19 Nov 2021 13:14:28 +0100
Subject: [PATCH] -Renamed stage to fix error.

---
 .gitlab-ci.yml | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index efaab1ce36..f6306ad54e 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -7,7 +7,7 @@ stages:
 ###############################################################################
 # Simulation stage
 ###############################################################################
-compile:
+sim-compile:
     stage: simulation
     script:
         - echo "Compiling for simulation"
@@ -17,7 +17,7 @@ compile:
         paths:
             - build/
 
-run:
+sim-run:
     stage: simulation
     script:
         - echo "Running simulations"
@@ -27,17 +27,17 @@ run:
 ###############################################################################
 # Synthesis stage
 ###############################################################################
-compile:
+synth-compile:
     stage: synthesis
     script:
         - echo "Compiling for synthesis"
 
-check-fmax:
+synth-check-fmax:
     stage: synthesis
     script:
         - echo "Checking achieved fMax"
 
-check-programming-files:
+synth-check-programming-files:
     stage: synthesis
     script:
         - echo "Checking if programming files have been generated"
@@ -46,7 +46,7 @@ check-programming-files:
 ###############################################################################
 # Hardware stage
 ###############################################################################
-trigger-lofar2-opcua-test:
+hw-trigger-lofar2-opcua-test:
   stage: hardware
   only:
     changes:
-- 
GitLab