From 874a00b768cb1846e2c4623b8a897c8bd8de8bd7 Mon Sep 17 00:00:00 2001 From: Eleni Mathioulaki <emathioulaki@athenarc.gr> Date: Wed, 17 Apr 2024 03:53:12 +0300 Subject: [PATCH] fix: update repo url after transfering project --- .gitlab-ci.yml | 4 ++-- README.md | 4 ++-- packages/py-elephant/package.py | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index ae6ea9d0..724cf735 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -60,7 +60,7 @@ deploy-int-release-dev-cscs: RELEASE_NAME: EBRAINS-test resource_group: shared-NFS-mount-dev-cscs rules: - - if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_PROJECT_NAMESPACE =~ /technical-coordination/ && $CI_PIPELINE_SOURCE != "schedule" + - if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_PROJECT_NAMESPACE =~ /platform\/esd/ && $CI_PIPELINE_SOURCE != "schedule" # Deploy the production release of tools (manual pipeline) # deploy on the production environment of the okd prod cluster at CSCS @@ -229,7 +229,7 @@ sync-gitlab-spack-instance: - spack_logs when: always rules: - - if: ($CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH || $CI_COMMIT_BRANCH == "experimental_rel" || $CI_COMMIT_BRANCH =~ /^ebrains/) && $CI_PROJECT_NAMESPACE =~ /technical-coordination/ && $CI_PIPELINE_SOURCE != "schedule" + - if: ($CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH || $CI_COMMIT_BRANCH == "experimental_rel" || $CI_COMMIT_BRANCH =~ /^ebrains/) && $CI_PROJECT_NAMESPACE =~ /platform\/esd/ && $CI_PIPELINE_SOURCE != "schedule" when: manual test-gitlab-spack-instance: diff --git a/README.md b/README.md index bda3ff5d..7f141bc3 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ To install the EBRAINS Spack environment on a new machine, it is recommended to Clone this repository. You can use the `ebrains-yy-mm` branches to install the EBRAINS official releases, the `experimental-rel` branch for the experimental release, or the `master` branch for the latest state: ``` -git clone --branch {branch-name} https://gitlab.ebrains.eu/technical-coordination/project-internal/devops/platform/ebrains-spack-builds.git +git clone --branch {branch-name} https://gitlab.ebrains.eu/ri/tech-hub/platform/esd/ebrains-spack-builds.git ``` Clone Spack. We currently use version v0.21.1: @@ -73,4 +73,4 @@ spack install --fresh ## Troubleshooting -If you encounter any issues with installing, testing, or using the EBRAINS Spack environment or a specific package, please [open an issue](https://gitlab.ebrains.eu/technical-coordination/project-internal/devops/platform/ebrains-spack-builds/-/issues/new) using the provided templates, or contact the Technical Coordination team directly. +If you encounter any issues with installing, testing, or using the EBRAINS Spack environment or a specific package, please [open an issue](https://gitlab.ebrains.eu/ri/tech-hub/platform/esd/ebrains-spack-builds/-/issues/new) using the provided templates, or contact the Technical Coordination team directly. diff --git a/packages/py-elephant/package.py b/packages/py-elephant/package.py index b2fc8ce4..6827a99c 100644 --- a/packages/py-elephant/package.py +++ b/packages/py-elephant/package.py @@ -83,5 +83,5 @@ class PyElephant(PythonPackage, CudaPackage): def install_test(self): pytest = which('pytest') # skip some tests that seem to fail on HPC deployments, - # see https://gitlab.ebrains.eu/technical-coordination/project-internal/devops/platform/ebrains-spack-builds/-/issues/38 + # see https://gitlab.ebrains.eu/ri/tech-hub/platform/esd/ebrains-spack-builds/-/issues/38 pytest('-k', 'not test_WPLI_ground_truth_consistency_real_LFP_dataset and not test_multitaper_cohere_perfect_cohere') -- GitLab