File tree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed
Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -607,8 +607,6 @@ Extract Coverage:
607607 stage : testenv_post
608608 extends : .kubernetes_image
609609 needs :
610- - job : get_jacoco_cli
611- artifacts : true
612610 - job : " Grid EL9 WN tests"
613611 optional : true # Don't fail if this test doesn't run
614612 - job : " Frontend test suite"
@@ -627,6 +625,16 @@ Extract Coverage:
627625 script :
628626 - mkdir -p integration-results
629627 # DEBUG: Check if artifact exists
628+ # Download JaCoCo CLI directly
629+ - |
630+ if [ ! -f "jacoco-${JACOCO_VERSION}/lib/jacococli.jar" ]; then
631+ echo "Downloading JaCoCo ${JACOCO_VERSION}..."
632+ wget -q "https://github.com/jacoco/jacoco/releases/download/v${JACOCO_VERSION}/jacoco-${JACOCO_VERSION}.zip" -O /tmp/jacoco.zip
633+ unzip -q /tmp/jacoco.zip -d jacoco-${JACOCO_VERSION}
634+ rm /tmp/jacoco.zip
635+ fi
636+ - JACOCO_CLI_PATH="jacoco-${JACOCO_VERSION}/lib/jacococli.jar"
637+ - ls -lh "$JACOCO_CLI_PATH"
630638 - echo "=== Checking for JaCoCo CLI ==="
631639 - ls -la . || true
632640 - find . -name "jacococli.jar" -type f || true
You can’t perform that action at this time.
0 commit comments