From d820110cc888a833a722256526a9e18e0b40b12c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20H=C3=B6ppner?= <jonas.hoeppner@garz-fricke.com> Date: Mon, 23 May 2022 12:54:49 +0200 Subject: [PATCH] CI: Add variable containing the port for ssh access of the gitlab instance Our server installation uses port 4444 for ssh access. The lava tests didn't took this into account. --- manifest-build.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/manifest-build.yml b/manifest-build.yml index 9be09ab..d408cf8 100644 --- a/manifest-build.yml +++ b/manifest-build.yml @@ -6,7 +6,8 @@ variables: LICENSESPATH: "tmp/deploy/licenses" SDKPATH: "tmp/deploy/sdk/" DEPLOYPATH_TEST: "/artifacts/${CI_JOB_ID}/" - GIT_BASE_URL: "git@${CI_SERVER_HOST}:${CI_PROJECT_ROOT_NAMESPACE}" + GITLAB_SERVER: "${CI_SERVER_HOST}:${CI_SERVER_SSH_PORT}" + GIT_BASE_URL: "ssh://git@${GITLAB_SERVER}/${CI_PROJECT_ROOT_NAMESPACE}" TESTS_GIT_URL: "${GIT_BASE_URL}/yocto/tests.git" .docker_check: &docker_check -- GitLab