We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bd8b24f commit af48604Copy full SHA for af48604
.github/workflows/ci.yaml
@@ -350,7 +350,13 @@ jobs:
350
SVC=verticadb-sample-defaultsubcluster
351
LOCATOR="${SVC}.${NS}.svc.cluster.local:5433"
352
POD=py-test-runner
353
- IMAGE=python:${{ matrix.python-version }}-slim
+ # Decide image based on matrix value
354
+ if [[ "${{ matrix.python-version }}" == pypy* ]]; then
355
+ VERSION="${{ matrix.python-version }}" # e.g. "pypy3.10"
356
+ IMAGE="pypy:${VERSION#pypy}" # strip "pypy" prefix in bash → "pypy:3.10"
357
+ else
358
+ IMAGE="python:${{ matrix.python-version }}"
359
+ fi
360
echo "Ensuring namespace ${NS} exists..."
361
kubectl get ns ${NS} >/dev/null 2>&1 || kubectl create ns ${NS}
362
echo "Waiting for Vertica service endpoints..."
0 commit comments