diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index fe87839ed275bfccc0aeb57392c860db1549395f..5df27ee798f9992dd0b104a5ec9770043df05216 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