aboutsummaryrefslogtreecommitdiff
path: root/lkft/lava-job-definitions/x15/template-cts.yaml
blob: 6b0787cc4198701a0c27ace9fac799edd93cfc12 (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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
device_type: x15
job_name: "lkft-android-{{KERNEL_BRANCH}}-{{BUILD_NUMBER}}-cts"
timeouts:
  job:
    minutes: 240
  action:
    minutes: 15
  connection:
    minutes: 2
priority: medium
visibility:
  group:
    - lkft

metadata:
  android.build: "{{BUILD_NUMBER}}"
  android.name: "{{JOB_NAME}}"
  android.url: "{{REFERENCE_BUILD_URL}}"
  android.version: "{{ANDROID_VERSION}}"
  git branch: "{{KERNEL_BRANCH}}"
  git repo: "{{KERNEL_REPO}}"
  git commit: "{{KERNEL_COMMIT}}"
  git describe: "{{KERNEL_DESCRIBE}}"
  cts-url: "${CTS_URL}/android-cts.zip"
  cts-manifest: "{{CTS_URL}}/pinned-manifest.xml"
  cts-version: "{{CTS_VERSION}}"
  cts-plan: "cts-lkft"
  build-url: "{{BUILD_URL}}"
  toolchain: "{{TOOLCHAIN}}"
  series: lkft

secrets:
    ARTIFACTORIAL_TOKEN: "{{ARTIFACTORIAL_TOKEN}}"

protocols:
  lava-lxc:
    name: lxc-x15-test
    template: download
    distribution: ubuntu
    release: bionic
    arch: amd64
    verbose: true

actions:
- deploy:
    namespace: tlxc
    timeout:
      minutes: 10
    to: lxc
    packages:
    - wget
    - unzip
    os: ubuntu

- boot:
    namespace: tlxc
    prompts:
    - 'root@(.*):/#'
    - ':/'
    timeout:
      minutes: 5
    method: lxc

- test:
    namespace: tlxc
    timeout:
      minutes: 10
    definitions:
    - repository: https://git.linaro.org/qa/test-definitions.git
      from: git
      path: automated/linux/android-platform-tools/install.yaml
      name: install-android-platform-tools-r2800
      parameters:
        LINK: 'https://dl.google.com/android/repository/platform-tools_r28.0.0-linux.zip'

- deploy:
    timeout:
      minutes: 15
    to: fastboot
    namespace: droid
    images:
      boot:
        url: "{{DOWNLOAD_URL}}/boot_fit.img"
        sha256sum: "${X15_BOOT_FIT_IMG_SHA256SUM}"
      vendor:
        url: "{{DOWNLOAD_URL}}/vendor.img"
        sha256sum: "${X15_VENDOR_IMG_SHA256SUM}"
      userdata:
        url: "{{DOWNLOAD_URL}}/userdata.img"
        sha256sum: "${X15_USERDATA_IMG_SHA256SUM}"
      system:
        url: "{{DOWNLOAD_URL}}/system.img"
        sha256sum: "${X15_SYSTEM_IMG_SHA256SUM}"

- boot:
    namespace: droid
    prompts:
    - 'root@(.*):/#'
    - ':/'
    timeout:
      minutes: 15
{% if BOOTARGS is defined %}
    commands:
    - setenv bootargs "{{BOOTARGS}}"
    - run findfdt
    - run emmc_android_boot
    method: u-boot
{% else %}
    method: fastboot
{% endif %}

- test:
    namespace: tlxc
    connection: lxc
    timeout:
      minutes: 10
    definitions:
    - from: inline
      path: android-boot.yaml
      name: android-boot
      repository:
        metadata:
          format: Lava-Test Test Definition 1.0
          name: android-boot
          description: "android-boot"
        run:
          steps:
            - lava-test-case "android-boot-wait-for-device" --shell adb wait-for-device
            - lava-test-case "android-boot-sleep-2mins" --shell adb shell sleep 120
            - lava-test-case "android-boot" --shell adb shell getprop sys.boot_completed

- test:
    namespace: tlxc
    connection: lxc
    timeout:
      minutes: 240
    definitions:
    - repository: https://git.linaro.org/qa/test-definitions.git
      from: git
      path: automated/android/noninteractive-tradefed/tradefed.yaml
      params:
        TEST_PARAMS: "cts-lkft -a armeabi-v7a --disable-reboot"
        TEST_URL: "{{CTS_URL}}/android-cts.zip"
        TEST_PATH: "android-cts"
        RESULTS_FORMAT: "atomic"
        ANDROID_VERSION: "{{ANDROID_VERSION}}"
      name: "cts-lkft"