Skip to content

Commit ad032ce

Browse files
committed
removed get_jacoco.sh from Extract Coverage
1 parent 9321cc8 commit ad032ce

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

.gitlab-ci.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)