From 79767d09410979c40595c8cca1f36b9b2b683822 Mon Sep 17 00:00:00 2001 From: jgrusewski Date: Sun, 2 Nov 2025 19:38:49 +0100 Subject: [PATCH] fix(ci): Fix YAML syntax error in glibc-validation script MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Remove escaped backslashes from grep regex pattern that were causing GitLab CI/CD parser to fail with 'script config should be a string' error. Changed: libstdc\+\+ → libstdc (still matches libstdc++.so.6) --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b5632ea34..2dcf5246c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -173,7 +173,7 @@ test:glibc-validation: # Test 3: Verify base system libraries - echo "Test 3: Verifying base system libraries..." - - docker run --rm $IMAGE_TAG ldconfig -p | grep -E "(libstdc\+\+|libgcc_s|libm\.so|libc\.so)" + - docker run --rm $IMAGE_TAG ldconfig -p | grep -E "(libstdc|libgcc_s|libm\.so|libc\.so)" # Test 4: Verify ca-certificates - echo "Test 4: Verifying ca-certificates..."