From 0599c349252130c923326b97b9f262ca9f1dcc5c Mon Sep 17 00:00:00 2001 From: Daniel <d.hornung@indiscale.com> Date: Mon, 26 Sep 2022 10:11:05 +0200 Subject: [PATCH] FIX: Call Octave and Julia tests only after successful cppinttest. --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 1854a42..739f994 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -176,7 +176,7 @@ trigger_inttest: # After the cppinttest have been successful, also start tests for Octave... trigger_octavelib: stage: deploy - needs: [ trigger_prepare ] + needs: [ trigger_inttest ] inherit: variables: # List the variables that shall be inherited, which also means they will override any equally @@ -195,7 +195,7 @@ trigger_octavelib: # ... and for Julia. trigger_julialib: stage: deploy - needs: [ trigger_prepare ] + needs: [ trigger_inttest ] inherit: variables: # List the variables that shall be inherited, which also means they will override any equally -- GitLab