Skip to content
Snippets Groups Projects
Commit d0a360ac authored by Chase Qi's avatar Chase Qi Committed by Andrei Gherzan
Browse files

.oniro-ci: fail lava-report job if incomplete job found


Fail lava-report if incomplete job found. Allow lava-report to fail to
run the downstream lava-badage job.

Signed-off-by: default avatarChase Qi <chase.qi@linaro.org>
parent d727b649
No related branches found
No related tags found
No related merge requests found
...@@ -97,6 +97,8 @@ ...@@ -97,6 +97,8 @@
.lava-report: .lava-report:
interruptible: true interruptible: true
# Let the pipeline continue running 'lava-badge' job.
allow_failure: true
image: image:
name: registry.booting.oniroproject.org/distro/oniro/bitbake-builder:latest name: registry.booting.oniroproject.org/distro/oniro/bitbake-builder:latest
stage: report stage: report
...@@ -105,6 +107,7 @@ ...@@ -105,6 +107,7 @@
CI_LAVA_INSTANCE: "https://lava.ostc-eu.org/" CI_LAVA_INSTANCE: "https://lava.ostc-eu.org/"
script: script:
- | - |
incomplete=false
for file in $(find ./ -name "job_ids_*.txt"); do for file in $(find ./ -name "job_ids_*.txt"); do
echo "Job file: $file" echo "Job file: $file"
while read -r p; do while read -r p; do
...@@ -113,12 +116,17 @@ ...@@ -113,12 +116,17 @@
# Echo LAVA job health and link. # Echo LAVA job health and link.
link="$CI_LAVA_INSTANCE/scheduler/job/$p" link="$CI_LAVA_INSTANCE/scheduler/job/$p"
health="$(curl --silent "$CI_LAVA_INSTANCE/api/v0.2/jobs/$p/" | jq '.health' | tr -d '"')" health="$(curl --silent "$CI_LAVA_INSTANCE/api/v0.2/jobs/$p/" | jq '.health' | tr -d '"')"
echo $health | grep -iq incomplete && incomplete=true
echo "[$health] $link" echo "[$health] $link"
# Get the JUnit export from LAVA. # Get the JUnit export from LAVA.
curl --silent -o job_$p.xml "$CI_LAVA_INSTANCE/api/v0.2/jobs/$p/junit/?classname_prefix=$p" curl --silent -o job_$p.xml "$CI_LAVA_INSTANCE/api/v0.2/jobs/$p/junit/?classname_prefix=$p"
echo "Report file: $(ls job_$p.xml)" echo "Report file: $(ls job_$p.xml)"
done < "$file" done < "$file"
done done
if $incomplete; then
echo "ERROR: Incomplete test job reported: exit code 1"
exit 1
fi
artifacts: artifacts:
when: always when: always
paths: paths:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment