Skip to content
Snippets Groups Projects

ci: enable LAVA boot and smoke tests on qemu devices for new MRs

Merged Chase Qi requested to merge (removed):pre-merge-test into kirkstone
Files
2
@@ -12,6 +12,7 @@
@@ -12,6 +12,7 @@
GIT_STRATEGY: none
GIT_STRATEGY: none
CI_LAVA_INSTANCE: "https://lava.ostc-eu.org/"
CI_LAVA_INSTANCE: "https://lava.ostc-eu.org/"
CI_SQUAD_INSTANCE: "https://squadp.svc.ostc-eu.dev"
CI_SQUAD_INSTANCE: "https://squadp.svc.ostc-eu.dev"
 
CI_SQUAD_PROJECT_NAME: "oniro-test-mr"
# Run the same ltp test suites that using by LKFT project.
# Run the same ltp test suites that using by LKFT project.
# Reference: https://qa-reports.linaro.org/lkft/linux-stable-rc-linux-5.10.y/build/v5.10.98-75-g9f5cb871ceb9/testjobs/
# Reference: https://qa-reports.linaro.org/lkft/linux-stable-rc-linux-5.10.y/build/v5.10.98-75-g9f5cb871ceb9/testjobs/
LTP_TST_CMDFILES: "cap_bounds cpuhotplug crypto nptl pty securebits fs controllers hugetlb mm tracing containers io dio syscalls math commands ipc fcntl-locktests filecaps fs_bind fs_perms_simple fsx sched cve"
LTP_TST_CMDFILES: "cap_bounds cpuhotplug crypto nptl pty securebits fs controllers hugetlb mm tracing containers io dio syscalls math commands ipc fcntl-locktests filecaps fs_bind fs_perms_simple fsx sched cve"
@@ -71,16 +72,22 @@
@@ -71,16 +72,22 @@
# Submit the jobs to SQUAD.
# Submit the jobs to SQUAD.
- |
- |
for job_def in $(find lava_jobs/ -name "*.yaml"); do
for job_def in $(find lava_jobs/ -name "*.yaml"); do
echo $CI_SQUAD_INSTANCE/api/submitjob/oniro-core/$CI_PROJECT_NAME/$CI_PIPELINE_ID/$MACHINE --header "Auth-Token: $CI_SQUAD_TOKEN" --form "backend=oniro_lava" --form "definition=@${job_def}"
echo $CI_SQUAD_INSTANCE/api/submitjob/oniro-core/$CI_SQUAD_PROJECT_NAME/$CI_PIPELINE_ID/$MACHINE --header "Auth-Token: $CI_SQUAD_TOKEN" --form "backend=oniro_lava" --form "definition=@${job_def}"
curl $CI_SQUAD_INSTANCE/api/submitjob/oniro-core/$CI_PROJECT_NAME/$CI_PIPELINE_ID/$MACHINE --header "Auth-Token: $CI_SQUAD_TOKEN" --form "backend=oniro_lava" --form "definition=@${job_def}"
curl $CI_SQUAD_INSTANCE/api/submitjob/oniro-core/$CI_SQUAD_PROJECT_NAME/$CI_PIPELINE_ID/$MACHINE --header "Auth-Token: $CI_SQUAD_TOKEN" --form "backend=oniro_lava" --form "definition=@${job_def}"
done
done
# Attach a callback to this build to trigger the lava-report job
# Attach a callback to this build to trigger the lava-report job
squad_build_id="$(curl --silent "$CI_SQUAD_INSTANCE/api/builds/?version=$CI_PIPELINE_ID" | jq -r '.results[0].id')"
squad_build_id="$(curl --silent "$CI_SQUAD_INSTANCE/api/builds/?version=$CI_PIPELINE_ID" | jq -r '.results[0].id')"
curl -X POST $CI_SQUAD_INSTANCE/api/builds/$squad_build_id/callbacks/ --header "Authorization: Token $CI_SQUAD_TOKEN" -F "callback_url=$CALLBACK_URL"
curl --silent \
 
-X POST "$CI_SQUAD_INSTANCE/api/builds/$squad_build_id/callbacks/" \
 
-H "Authorization: Token $CI_SQUAD_TOKEN" \
 
-F "callback_url=$CALLBACK_URL" \
 
-F "callback_record_response=true"
artifacts:
artifacts:
paths:
paths:
- lava_jobs/*.yaml
- lava_jobs/*.yaml
rules:
rules:
 
- if: '$CI_SQUAD_TOKEN == null'
 
when: never
# Run the build when it is scheduled.
# Run the build when it is scheduled.
- if: $CI_PIPELINE_SOURCE == "schedule"
- if: $CI_PIPELINE_SOURCE == "schedule"
# Do not run pipelines for draft merge requests unless manually triggered.
# Do not run pipelines for draft merge requests unless manually triggered.
@@ -101,18 +108,22 @@
@@ -101,18 +108,22 @@
variables:
variables:
GIT_STRATEGY: none
GIT_STRATEGY: none
CI_LAVA_INSTANCE: "https://lava.ostc-eu.org/"
CI_LAVA_INSTANCE: "https://lava.ostc-eu.org/"
 
CI_SQUAD_INSTANCE: "https://squadp.svc.ostc-eu.dev"
script:
script:
- |
- |
# Get the test_runs_incomplete value from build status. That will tell
# Get the test_runs_incomplete value from build status. That will tell
# us if any of the LAVA jobs failed and we can determine whether the
# us if any of the LAVA jobs failed and we can determine whether the
# report job is successful or not.
# report job is successful or not.
incomplete="$(curl --silent $CI_SQUAD_INSTANCE/api/builds/$CI_PIPELINE_ID/status/ | jq -r '.test_runs_incomplete')"
squad_build_id="$(curl --silent "$CI_SQUAD_INSTANCE/api/builds/?version=$CI_PIPELINE_ID" | jq -r '.results[0].id')"
if [ "$incomplete" != "0" ]; then
curl --silent "$CI_SQUAD_INSTANCE/api/builds/$squad_build_id/testjobs/" > test_jobs.json
 
jq -r '.results | .[] | .external_url, .job_status' test_jobs.json | tee job_status.txt
 
if grep -qi "incomplete" job_status.txt; then
echo "ERROR: Incomplete test job reported: exit code 1"
echo "ERROR: Incomplete test job reported: exit code 1"
exit 1
exit 1
fi
fi
rules:
rules:
 
- if: '$CI_SQUAD_TOKEN == null'
 
when: never
# Run the build when it is scheduled.
# Run the build when it is scheduled.
- if: $CI_PIPELINE_SOURCE == "schedule"
- if: $CI_PIPELINE_SOURCE == "schedule"
when: manual
when: manual
Loading