From 0005570755f9f13624c1396ff66cb0c9e37cbee1 Mon Sep 17 00:00:00 2001 From: Thomas Kluyver <thomas.kluyver@xfel.eu> Date: Thu, 28 Nov 2024 11:15:02 +0000 Subject: [PATCH] Clone calibration_configurations using deploy token --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 970068be9..62aab6579 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -48,7 +48,7 @@ pytest: - python3 -m pip install ".[test]" - python3 -m pytest --color yes --verbose --cov=cal_tools --cov=xfel_calibrate --cov-report html:htmlcov --cov-report term - config_dir=$(mktemp -d) - - git clone ssh://git@git.xfel.eu:10022/detectors/calibration_configurations.git "$config_dir" + - git clone "https://${CONFIG_REPO_DEPLOY_TOKEN}@git.xfel.eu/gitlab/detectors/calibration_configurations.git" "$config_dir" - python3 -m xfel_calibrate.validate_nbs_config --config-dir "$config_dir" coverage: '/TOTAL.*? (\d+(?:\.\d+)?\%)$/' artifacts: -- GitLab