From 35523ae2a8370c79ba6f2d8423e7ebbdd7049f76 Mon Sep 17 00:00:00 2001 From: dam1n19 <dam1n19@soton.ac.uk> Date: Thu, 6 Jul 2023 07:47:08 +0100 Subject: [PATCH] Added Quickstart regression simualtion targets to CI --- .gitlab-ci.yml | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index fe87839..5df27ee 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -19,6 +19,7 @@ stages: # List of stages for jobs, and their order of execution - compile - simulate + - simulate_qs - build - deploy @@ -50,12 +51,21 @@ simulate-hello: tags: - VLAB-ZCU -simulate-regression: - stage: simulate +simulate_quickstart-hello: + stage: simulate_qs + script: + - echo "Simulation phase started" + - source set_env.sh + - socsim test_nanosoc TESTNAME=hello QUICKSTART=yes + tags: + - VLAB-ZCU + +simulate_quickstart-regression: + stage: simulate_qs script: - echo "Simulation phase started" - source set_env.sh - - socsim regression_nanosoc + - socsim regression_nanosoc QUICKSTART=yes tags: - VLAB-ZCU -- GitLab