From ca4c9cd13bdeeeb975e8a3640cbcd4065f3a61ac Mon Sep 17 00:00:00 2001 From: jgrusewski Date: Wed, 25 Feb 2026 20:20:20 +0100 Subject: [PATCH] fix(ci): add Redis service for integration tests Redis sidecar runs as additional container in the build pod. Kubernetes executor shares network namespace, so tests can reach Redis at localhost:6379. Co-Authored-By: Claude Opus 4.6 --- .gitlab-ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 0bbf93a8a..b7b02b18c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -86,6 +86,9 @@ test: extends: .rust-base stage: test needs: [check] + services: + - name: redis:7-alpine + alias: redis script: # Remove CUDA stubs from LD_LIBRARY_PATH — nvidia RuntimeClass provides real libcuda.so - export LD_LIBRARY_PATH=$(echo "$LD_LIBRARY_PATH" | tr ':' '\n' | grep -v stubs | tr '\n' ':' | sed 's/:$//')