From 6788465c14cbc8ea28e14ddcd7ce7ead07eee501 Mon Sep 17 00:00:00 2001 From: Timm Fitschen <t.fitschen@indiscale.com> Date: Thu, 24 Nov 2022 10:18:30 +0100 Subject: [PATCH] PIPELINE: cherry-pick pipeline changes of dev --- .gitlab-ci.yml | 6 ++++++ requirements.txt | 26 +++++++++++++------------- 2 files changed, 19 insertions(+), 13 deletions(-) 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 diff --git a/requirements.txt b/requirements.txt index 2ef3545..f7bf0db 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,22 +1,22 @@ -bottle==0.12.21 -certifi==2022.6.15 -charset-normalizer==2.1.0 -colorama==0.4.5 -conan==1.52.0 -distro==1.6.0 -fasteners==0.17.3 +bottle==0.12.23 +certifi==2022.9.24 +charset-normalizer==2.1.1 +colorama==0.4.6 +conan==1.54.0 +distro==1.7.0 +fasteners==0.18 future==0.18.2 -idna==3.3 +idna==3.4 Jinja2==3.1.2 MarkupSafe==2.1.1 node-semver==0.6.1 patch-ng==1.17.4 pluginbase==1.0.1 -Pygments==2.12.0 -PyJWT==2.4.0 +Pygments==2.13.0 +PyJWT==2.6.0 python-dateutil==2.8.2 -PyYAML==5.4.1 +PyYAML==6.0 requests==2.28.1 six==1.16.0 -tqdm==4.64.0 -urllib3==1.26.9 +tqdm==4.64.1 +urllib3==1.26.12 -- GitLab