From d812cb68af260e85fd3dfd0d9f263f7cadca4faf Mon Sep 17 00:00:00 2001
From: fspreck <f.spreckelsen@indiscale.com>
Date: Tue, 22 Nov 2022 17:37:23 +0100
Subject: [PATCH] TST: Set `allow_failure: true` for Octave and Julia pipelines

---
 .gitlab-ci.yml | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 739f994..0e534d4 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -191,6 +191,9 @@ trigger_octavelib:
   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:
@@ -210,6 +213,9 @@ trigger_julialib:
   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