{% extends "layouts/content-bootstrap.html" %} {% load utils %} {% load django_tables2 %} {% block styles %} {% endblock %} {% block content %}
Description
{{job.description|default:"not set" }}
Status
{{ job.get_status_display }}
Priority
{{ job.get_priority_display }}
Submitter
{{ job.submitter }}
Visibility
{{ job.get_visibility_display }}
{% if job.visibility == 2 %}
Visibility groups
{% for group in job.viewing_groups.all %} {{ group }}  {% endfor %}
{% endif %}
{% include 'lava_scheduler_app/_device_refresh.html' %}
{% include 'lava_scheduler_app/_job_timing.html' %}
{% if show_cancel %} {% endif %} {% if change_priority and job.status == job.SUBMITTED and not job.is_multinode %}
{% csrf_token %}
{{ job.priority|get_priority_select }}
{% endif %}

{% if job.is_multinode or job.is_vmgroup %}
{% for subjob in job.sub_jobs_list %}
{{ subjob.sub_id }} {% if '0' in subjob.sub_id and '0' not in job.sub_id %} (?) {% endif %} ({{ subjob.id }})
{% if subjob.actual_device.hostname %} on: {{ subjob.actual_device.hostname }} as: {{ subjob.device_role }} {% else %} No device assigned as {{ subjob.device_role }}. {% endif %}
{% endfor %}
{% endif %}
{% if job.archived_job_file %}

Job log file archived Please contact the administrator for job log file.

{% endif %} {% if job.failure_comment %}
{{ job.failure_comment }}
{% endif %}

Actions

    {% include 'lava_scheduler_app/_pipeline_actions.html' with pipeline=pipeline_data %}
{% for line in log_data %} {% if line.lvl == "debug" %} {% if "sending" in line.msg %} {{ line.msg.sending }} {% else %} {% get_action_id line.msg as act_id %} {{ line.msg }} {% endif %} {% elif line.lvl == "target" %} {{ line.msg }} {% elif line.lvl == "results" %} {% if line.msg.set %} {% url 'lava.results.testset' job.id line.msg.definition line.msg.set line.msg.case as result_url %} {% else %} {% url 'lava.results.testcase' job.id line.msg.definition line.msg.case as result_url %} {% endif %} {% for key, value in line.msg.items %} {% if value.items %} {% if key == "extra" %} extra: ...
{% else %} {% for k, v in value.items %} {{ k }}: {{ v }}
{% endfor %} {% endif %} {% else %} {{ key }}: {{ value }}
{% endif %} {% endfor %}
{% elif line.lvl == "error" or line.lvl == "exception" %} {{ line.msg }} {% else %} {% get_action_id line.msg as act_id %} {{ line.msg }} {% endif %} {% endfor %} {% if job.status <= job.RUNNING %} {% endif %}
{% if job.status > job.RUNNING %}

Debugging test failures

Please read the triage guidelines for help on debugging failures in the test job, test definitions or in individual test cases.
{% endif %}

Job Description YAML

Pipeline jobs use the job definition to generate a descriptive YAML file when the pipeline is validated. The file represents the data sent to the dispatcher at the start of the job, including details of the device as well as the job parameters and the details of the parameters sent to each of the deploy, boot and test actions in the job pipeline.

Click on the Device or Job Actions headings below to see some of the information from the description file for this job or download the complete file as YAML using the link above.

device type
{{ device_data.device_type }}
hostname
{{ device_data.hostname }}
timeouts
    {% for key, value in device_data.timeouts.items %}
  • {{ key }}: {{ value.values|join:'' }} {{ value.keys|join:'' }}
  • {% endfor %}
device action methods
{% for key, value in device_data.actions.items %} {{ key }}:
    {% for itemkey, itemvalue in value.methods.items %}
  • {{ itemkey }}:
      {% for paramkey, paramvalue in itemvalue.parameters.items %}
    • {{ paramkey }}: {{ paramvalue }}
    • {% endfor %}
  • {% endfor %}
{% endfor %}
target
{{ job_data.target|default:'...' }}
timeouts
{% if job_data.timeouts %}
    {% for key, value in job_data.timeouts.items %}
  • {{ key }}: {{ value }}
  • {% endfor %}
{% else %}... {% endif %}
    {% for entry in deploy_list %}

  1. {% for key, value in entry.items %} {% if key == 'timeout' %}
    Timeout
      {% for timekey, timevalue in value.items %} {% if timekey == 'yaml_line' %}
    • {{ timekey }} {{ timevalue }}
    • {% else %}
    • {{ timevalue }} {{ timekey }}
    • {% endif %} {% endfor %}
    {% else %}
    {{ key }}
    {{ value }}
    {% endif %} {% endfor %}
  2. {% endfor %}
    {% for entry in boot_list %}

  1. {% for key, value in entry.items %} {% if key == 'timeout' %}
    Timeout
      {% for timekey, timevalue in value.items %} {% if timekey == 'yaml_line' %}
    • {{ timekey }} {{ timevalue }}
    • {% else %}
    • {{ timevalue }} {{ timekey }}
    • {% endif %} {% endfor %}
    {% else %}
    {{ key }}
    {{ value }}
    {% endif %} {% endfor %}
  2. {% endfor %}
    {% for entry in test_list %}

  1. {% for key, value in entry.items %} {% if key == 'timeout' %}
    Timeout
      {% for timekey, timevalue in value.items %} {% if timekey == 'yaml_line' %}
    • {{ timekey }} {{ timevalue }}
    • {% else %}
    • {{ timevalue }} {{ timekey }}
    • {% endif %} {% endfor %}
    {% elif key == 'definitions' %}
    Definitions
    {% for item in value %}
      {% for elem_key, elem_value in item.items %}
    • {{ elem_key }} {{ elem_value }}
    • {% endfor %}
    {% endfor %}
    {% else %}
    {{ key }}
    {{ value }}
    {% endif %} {% endfor %}
  2. {% endfor %}
{% include "_similar_jobs.html" %}
{% endblock %} {% block scripts %} {% endblock scripts %}