From d2c724db71efb398c959537cc8ff77c866ecbbae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stevan=20Radakovi=C4=87?= <stevan.radakovic@linaro.org> Date: Wed, 18 May 2022 10:50:18 +0200 Subject: [PATCH] Submit jobs to squad instead of to LAVA directly MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This is a first patch to introduce squad as a middleman in handling LAVA job. Signed-off-by: Stevan Radaković <stevan.radakovic@linaro.org> --- .gitlab-ci.yml | 5 +++-- .oniro-ci/build-generic.yaml | 4 ++-- .oniro-ci/test-generic.yaml | 25 ++++++++++++++++--------- 3 files changed, 21 insertions(+), 13 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 89aec5bd..6d9e0b31 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -105,9 +105,10 @@ bundle-raspberrypi4-64: # Mimic the updated rules for lava-test from the bitbake-workspace. .lava-test: rules: - - if: '$CI_LAVA_TOKEN == null' - when: never + #- if: '$CI_LAVA_TOKEN == null' + # when: never - if: '$CI_PIPELINE_SOURCE == "schedule"' + when: manual # Mimic the updated rules for lava-report from the bitbake-workspace. .lava-report: diff --git a/.oniro-ci/build-generic.yaml b/.oniro-ci/build-generic.yaml index c2081c34..554f15ea 100644 --- a/.oniro-ci/build-generic.yaml +++ b/.oniro-ci/build-generic.yaml @@ -53,8 +53,8 @@ && git remote add incoming-merged "$CI_MERGE_REQUEST_SOURCE_PROJECT_URL" \ && git fetch incoming-merged ); fi; - echo "CI: Switching $CI_ONIRO_GIT_REPO_PATH to $CI_COMMIT_SHA"; - ( cd "$CI_ONIRO_GIT_REPO_PATH" && git checkout "$CI_COMMIT_SHA" ); + #echo "CI: Switching $CI_ONIRO_GIT_REPO_PATH to $CI_COMMIT_SHA"; + #( cd "$CI_ONIRO_GIT_REPO_PATH" && git checkout "$CI_COMMIT_SHA" ); fi set +x diff --git a/.oniro-ci/test-generic.yaml b/.oniro-ci/test-generic.yaml index 530c04b4..03e1df93 100644 --- a/.oniro-ci/test-generic.yaml +++ b/.oniro-ci/test-generic.yaml @@ -68,17 +68,22 @@ mv job_def.yaml lava_jobs/ fi set +x - # Submit the job to LAVA. + # Submit the jobs to SQUAD. - | for job_def in $(find lava_jobs/ -name "*.yaml"); do - lava_job_id=$(curl -X POST -H "Authorization: Token $CI_LAVA_TOKEN" -F "definition=$(<${job_def})" "$CI_LAVA_INSTANCE/api/v0.2/jobs/" | jq ".job_ids" | tr -d "[\n ]") - if [ "${lava_job_id}" != "null" ]; then - echo "$CI_LAVA_INSTANCE/scheduler/job/$lava_job_id" - echo "$lava_job_id" >> job_ids_"${CI_JOB_NAME}_${lava_job_id}".txt - else - echo "Failed to submit ${job_def}" - exit 1 - fi + # TODO: do we need build_id from squad? + #build_id=$(curl $CI_SQUAD_INSTANCE/api/submitjob/oniro-core/$CI_PROJECT_NAME/$CI_COMMIT_SHORT_SHA/$MACHINE --header "Auth-Token: $CI_SQUAD_TOKEN" --form "backend=oniro_lava" --form "definition=@${job_def}") + echo $CI_SQUAD_INSTANCE/api/submitjob/oniro-core/$CI_PROJECT_NAME/$CI_COMMIT_SHORT_SHA/$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_COMMIT_SHORT_SHA/$MACHINE --header "Auth-Token: $CI_SQUAD_TOKEN" --form "backend=oniro_lava" --form "definition=@${job_def}" + + #lava_job_id=$(curl -X POST -H "Authorization: Token $CI_LAVA_TOKEN" -F "definition=$(<${job_def})" "$CI_LAVA_INSTANCE/api/v0.2/jobs/" | jq ".job_ids" | tr -d "[\n ]") + #if [ "${lava_job_id}" != "null" ]; then + # echo "$CI_LAVA_INSTANCE/scheduler/job/$lava_job_id" + # echo "$lava_job_id" >> job_ids_"${CI_JOB_NAME}_${lava_job_id}".txt + #else + # echo "Failed to submit ${job_def}" + # exit 1 + #fi done artifacts: paths: @@ -108,6 +113,8 @@ script: - | incomplete=false + # TODO: here get all jobs from squad and check status, or just check some squad field + # TODO: https://qa-reports.linaro.org/api/builds/106391/status/ (test_runs_incomplete) for file in $(find ./ -name "job_ids_*.txt"); do echo "Job file: $file" while read -r p; do -- GitLab