diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 69f46bb81f9c0dc005e45a30c5ef818821e1ca00..53e9fd6294baf8c07d19bc30ab8e1201f24c97b1 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -144,6 +144,15 @@ lava-qemu-x86: rules: - when: never +lava-zephyr-96b-nitrogen-tests: + needs: [zephyr-96b-nitrogen-tests] + stage: test + extends: .lava-test + variables: + CI_LAVA_JOB_DEFINITION: "https://git.ostc-eu.org/OSTC/infrastructure/lava/lava-config/-/raw/master/lava.ostc-eu.org/job-definitions/ci/nitrogen-test.yaml" + CI_BUILD_JOB_NAME: zephyr-96b-nitrogen-tests + CI_REPORT_JOB_NAME: lava-report + lava-report: needs: [lava-linux-avenger96, lava-qemu-x86_64, lava-qemu-x86] extends: .lava-report diff --git a/.oniro-ci/test-generic.yaml b/.oniro-ci/test-generic.yaml index 36d8308b638764fcd0fb957d88eb65f6bb85ff3e..5101bb8021b961585dc0ea648a9202ff03916c80 100644 --- a/.oniro-ci/test-generic.yaml +++ b/.oniro-ci/test-generic.yaml @@ -21,7 +21,7 @@ && exit 1 ) script: # Build callback URL for the "report" job - - curl --silent "https://git.ostc-eu.org/api/v4/projects/$CI_PROJECT_ID/pipelines/$CI_PIPELINE_ID/jobs?per_page=100" > jobs-manual.json + - curl --silent "https://booting.oniroproject.org/api/v4/projects/$CI_PROJECT_ID/pipelines/$CI_PIPELINE_ID/jobs?per_page=100" > jobs-manual.json - job_id="$(jq -r ".[] | select(.name == \"$CI_REPORT_JOB_NAME\") | .id" jobs-manual.json)" - build_job_id="$(jq -r ".[] | select(.name == \"$CI_BUILD_JOB_NAME\") | .id" jobs-manual.json)" - CALLBACK_URL="https://git.ostc-eu.org/api/v4/projects/$CI_PROJECT_ID/jobs/${job_id}/play"