From cab5f185f157c24c6b3f7f0620d757c1892a9f71 Mon Sep 17 00:00:00 2001
From: Joscha Schmiedt <joscha@schmiedt.dev>
Date: Sat, 31 Aug 2024 21:13:38 +0200
Subject: [PATCH] Remove julia and octave client tirggers from CI

---
 .gitlab-ci.yml | 84 +++++++++++++++++++++++++-------------------------
 1 file changed, 42 insertions(+), 42 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 49cf623..244fc7e 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -187,49 +187,49 @@ trigger_inttest:
     branch: $CPPINT_REF
     strategy: depend
 
-# After the cppinttest have been successful, also start tests for Octave...
-trigger_octavelib:
-  stage: deploy
-  needs: [ trigger_prepare, trigger_inttest ]
-  inherit:
-    variables:
-      # List the variables that shall be inherited, which also means they will override any equally
-      # named varibles in child pipelines.
-      - TRIGGERED_BY_REPO
-      - TRIGGERED_BY_REF
-      - TRIGGERED_BY_HASH
-      - CPPLIB_REGISTRY_IMAGE
-  variables:
-    # dotenv variables must be set again here.
-    F_BRANCH: $F_BRANCH
-  trigger:
-    project: caosdb/src/caosdb-octavelib
-    branch: $OCTAVELIB_REF
-  # It's ok if octave fails in case of features that might already be
-  # implemented in proto, server, and cpplib, but not yet in Octave.
-  allow_failure: true
+# # After the cppinttest have been successful, also start tests for Octave...
+# trigger_octavelib:
+#   stage: deploy
+#   needs: [ trigger_prepare, trigger_inttest ]
+#   inherit:
+#     variables:
+#       # List the variables that shall be inherited, which also means they will override any equally
+#       # named varibles in child pipelines.
+#       - TRIGGERED_BY_REPO
+#       - TRIGGERED_BY_REF
+#       - TRIGGERED_BY_HASH
+#       - CPPLIB_REGISTRY_IMAGE
+#   variables:
+#     # dotenv variables must be set again here.
+#     F_BRANCH: $F_BRANCH
+#   trigger:
+#     project: caosdb/src/caosdb-octavelib
+#     branch: $OCTAVELIB_REF
+#   # It's ok if octave fails in case of features that might already be
+#   # implemented in proto, server, and cpplib, but not yet in Octave.
+#   allow_failure: true
 
-# ... and for Julia.
-trigger_julialib:
-  stage: deploy
-  needs: [ trigger_prepare, trigger_inttest ]
-  inherit:
-    variables:
-      # List the variables that shall be inherited, which also means they will override any equally
-      # named varibles in child pipelines.
-      - TRIGGERED_BY_REPO
-      - TRIGGERED_BY_REF
-      - TRIGGERED_BY_HASH
-      - CPPLIB_REGISTRY_IMAGE
-  variables:
-    # dotenv variables must be set again here.
-    F_BRANCH: $F_BRANCH
-  trigger:
-    project: caosdb/src/caosdb-julialib
-    branch: $JULIALIB_REF
-  # It's ok if julia fails in case of features that might already be
-  # implemented in proto, server, and cpplib, but not yet in Julia.
-  allow_failure: true
+# # ... and for Julia.
+# trigger_julialib:
+#   stage: deploy
+#   needs: [ trigger_prepare, trigger_inttest ]
+#   inherit:
+#     variables:
+#       # List the variables that shall be inherited, which also means they will override any equally
+#       # named varibles in child pipelines.
+#       - TRIGGERED_BY_REPO
+#       - TRIGGERED_BY_REF
+#       - TRIGGERED_BY_HASH
+#       - CPPLIB_REGISTRY_IMAGE
+#   variables:
+#     # dotenv variables must be set again here.
+#     F_BRANCH: $F_BRANCH
+#   trigger:
+#     project: caosdb/src/caosdb-julialib
+#     branch: $JULIALIB_REF
+#   # It's ok if julia fails in case of features that might already be
+#   # implemented in proto, server, and cpplib, but not yet in Julia.
+#   allow_failure: true
 
 # Build the sphinx documentation and make it ready for deployment by Gitlab Pages
 # Special job for serving a static website. See https://docs.gitlab.com/ee/ci/yaml/README.html#pages
-- 
GitLab