aboutsummaryrefslogtreecommitdiff
path: root/lkft/lava-job-definitions/docker/devices/x15
blob: 2cfdbf53ddbba57280a56ebbaac6a4699f7dc2fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{% extends "template-lkft.yaml" %}

{% block device_type %}x15{% endblock %}


{% block deploy_target %}
- deploy:
    to: downloads
    images:
      boot_a:
        url: {{DOWNLOAD_URL}}/boot.img.xz
        compression: xz
      boot_b:
        url: {{DOWNLOAD_URL}}/boot.img.xz
        compression: xz
      vbmeta_a:
        url: {{DOWNLOAD_URL}}/vbmeta.img.xz
        compression: xz
      vbmeta_b:
        url: {{DOWNLOAD_URL}}/vbmeta.img.xz
        compression: xz
      userdata:
        url: {{DOWNLOAD_URL}}/userdata.img.xz
        compression: xz
      super:
        url: {{DOWNLOAD_URL}}/super.img.xz
        compression: xz
      recovery:
        url: {{DOWNLOAD_URL}}/recovery.img.xz
        compression: xz

- deploy:
    timeout:
      minutes: 25
    to: fastboot
    docker:
        image: yongqinliu/linaro-android-docker:0.1
    images:
      boot_a:
        url: downloads://boot.img
      boot_b:
        url: downloads://boot.img
      vbmeta_a:
        url: downloads://vbmeta.img
      vbmeta_b:
        url: downloads://vbmeta.img
      userdata:
        url: downloads://userdata.img
      super:
        url: downloads://super.img
      recovery:
        url: downloads://recovery.img
{% endblock deploy_target %}

{% block boot_target %}
- boot:
    docker:
        image: yongqinliu/linaro-android-docker:0.1
    method: fastboot
    prompts:
    - 'root@(.*):/#'
    - 'console:/'
    timeout:
      minutes: 15
{% endblock boot_target %}

{% block test_target %}
{% endblock test_target %}