From 1c9832a91e015aec83dea9b837089e1e8d3a2ed2 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Gr=C3=A9goire=20KUBLER?= <gregoire.kubler@proton.me>
Date: Thu, 21 Mar 2024 11:05:25 +0100
Subject: [PATCH] Revert "fix : jq quoting"

This reverts commit f61b052fa245f3f834fab021ae071f6848389e99.
---
 .gitlab/ci/build.gitlab-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.gitlab/ci/build.gitlab-ci.yml b/.gitlab/ci/build.gitlab-ci.yml
index f71963d8..725419fe 100644
--- a/.gitlab/ci/build.gitlab-ci.yml
+++ b/.gitlab/ci/build.gitlab-ci.yml
@@ -49,8 +49,8 @@ build:ubuntu_cpp:
         # Retrieve latest pipeline of given branch, independant from its success or failure
         echo "command curl --header \"PRIVATE_TOKEN: xV2geW-wxZyFv5hL5E44\" \'https://gitlab.eclipse.org/api/v4/projects/$DEPENDENCY_ID/pipelines?ref=${BRANCH_TO_PULL}&order_by=updated_at&sort=desc' | jq -r '.[0].id'"
         test=$(curl --header "PRIVATE_TOKEN: 926V98hnCwny2sqQQzGc" 'https://gitlab.eclipse.org/api/v4/projects/$DEPENDENCY_ID/pipelines?ref=${BRANCH_TO_PULL}&order_by=updated_at&sort=desc' )       
-        PIPELINE_ID=$(curl --header "PRIVATE_TOKEN: 926V98hnCwny2sqQQzGc" 'https://gitlab.eclipse.org/api/v4/projects/$DEPENDENCY_ID/pipelines?ref=${BRANCH_TO_PULL}&order_by=updated_at&sort=desc' | jq -r '.[0].id')
-        JOB_ID=$(curl --header "PRIVATE_TOKEN: 926V98hnCwny2sqQQzGc" 'https://gitlab.eclipse.org/api/v4/projects/$DEPENDENCY_ID/pipelines/$PIPELINE_ID/jobs' | jq 'map(select(.name == ${DEPENDENCY_JOB})) | .[0].id')
+        PIPELINE_ID=$(curl --header "PRIVATE_TOKEN: 926V98hnCwny2sqQQzGc" "https://gitlab.eclipse.org/api/v4/projects/$DEPENDENCY_ID/pipelines?ref=${BRANCH_TO_PULL}&order_by=updated_at&sort=desc" | jq -r ".[0].id")
+        JOB_ID=$(curl --header "PRIVATE_TOKEN: 926V98hnCwny2sqQQzGc" "https://gitlab.eclipse.org/api/v4/projects/$DEPENDENCY_ID/pipelines/$PIPELINE_ID/jobs" | jq "map(select(.name == ${DEPENDENCY_JOB})) | .[0].id")
         echo "curling from \"https://gitlab.eclipse.org/api/v4/projects/$DEPENDENCY_ID/jobs/$JOB_ID/artifacts\""
         curl --location  --output build_artifacts.zip --header "PRIVATE_TOKEN: $CI_JOB_TOKEN" "https://gitlab.eclipse.org/api/v4/projects/$DEPENDENCY_ID/jobs/$JOB_ID/artifacts" 
         set +x
-- 
GitLab