From eb5ffebc31c707f3cb49b872318a0886b30006cb Mon Sep 17 00:00:00 2001
From: schuur <schuur@astron.nl>
Date: Fri, 19 Nov 2021 12:35:59 +0100
Subject: [PATCH] -Renamed and added dummy pipeline stages.

---
 .gitlab-ci.yml | 37 +++++++++++++++++++++++++++++--------
 1 file changed, 29 insertions(+), 8 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 58be623ac1..a2cf8065cd 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,20 +1,41 @@
 stages:
-    - build
-    - test
+    - sim-compile
+    - sim-simulate
+    - hw-compile
+    - hw-check-fmax
+    - hw-check-programming-files
 
-build:
-    stage: build
+sim-compile:
+    stage: sim-compile
     script:
-        - echo "Building"
+        - echo "Compiling for simulation"
         - mkdir build
         - touch build/info.txt
     artifacts:
         paths:
             - build/
 
-test:
-    stage: test
+sim-simulate:
+    stage: sim-simulate
     script:
-        - echo "Testing"
+        - echo "Running simulations"
         - test -f "build/info.txt"
 
+hw-compile:
+    stage: hw-compile
+    script:
+        - echo "Compiling for hardware"
+
+hw-check-fmax:
+    stage: hw-check-fmax
+    script:
+        - echo "Checking achieved fMax"
+
+hw-check-programming-files:
+    stage: hw-check-programming-files
+    script:
+        - echo "Checking if programming files have been generated"
+
+
+
+
-- 
GitLab