]> git.ipfire.org Git - thirdparty/u-boot.git/blame - .gitlab-ci.yml
vbe: Use the correct image filename in the test
[thirdparty/u-boot.git] / .gitlab-ci.yml
CommitLineData
1a62a722
TR
1# SPDX-License-Identifier: GPL-2.0+
2
8b0b5017
PH
3variables:
4 DEFAULT_TAG: ""
74bcbb13 5 MIRROR_DOCKER: docker.io
8b0b5017
PH
6
7default:
8 tags:
9 - ${DEFAULT_TAG}
10
cb735173
JS
11# Grab our configured image. The source for this is found
12# in the u-boot tree at tools/docker/Dockerfile
74bcbb13 13image: ${MIRROR_DOCKER}/trini/u-boot-gitlab-ci-runner:jammy-20230308-21Mar2023
1a62a722
TR
14
15# We run some tests in different order, to catch some failures quicker.
16stages:
1a62a722 17 - testsuites
b29cb058 18 - test.py
1a62a722
TR
19 - world build
20
21.buildman_and_testpy_template: &buildman_and_testpy_dfn
1a62a722
TR
22 stage: test.py
23 before_script:
24 # Clone uboot-test-hooks
bd181a24 25 - git config --global --add safe.directory "${CI_PROJECT_DIR}"
85ae52b9 26 - git clone --depth=1 https://source.denx.de/u-boot/u-boot-test-hooks /tmp/uboot-test-hooks
1a62a722
TR
27 - ln -s travis-ci /tmp/uboot-test-hooks/bin/`hostname`
28 - ln -s travis-ci /tmp/uboot-test-hooks/py/`hostname`
28a51234
TR
29 - grub-mkimage --prefix="" -o ~/grub_x86.efi -O i386-efi normal echo lsefimmap lsefi lsefisystab efinet tftp minicmd
30 - grub-mkimage --prefix="" -o ~/grub_x64.efi -O x86_64-efi normal echo lsefimmap lsefi lsefisystab efinet tftp minicmd
49fb28a4 31 - if [[ "${TEST_PY_BD}" == "qemu-riscv32_spl" ]]; then
b6b35fd2
HS
32 wget -O - https://github.com/riscv/opensbi/releases/download/v0.9/opensbi-0.9-rv-bin.tar.xz | tar -C /tmp -xJ;
33 export OPENSBI=/tmp/opensbi-0.9-rv-bin/share/opensbi/ilp32/generic/firmware/fw_dynamic.bin;
49fb28a4 34 fi
0e60b3a7 35 - if [[ "${TEST_PY_BD}" == "qemu-riscv64_spl" ]] || [[ "${TEST_PY_BD}" == "sifive_unleashed" ]]; then
b6b35fd2
HS
36 wget -O - https://github.com/riscv/opensbi/releases/download/v0.9/opensbi-0.9-rv-bin.tar.xz | tar -C /tmp -xJ;
37 export OPENSBI=/tmp/opensbi-0.9-rv-bin/share/opensbi/lp64/generic/firmware/fw_dynamic.bin;
49fb28a4 38 fi
b29cb058 39
1a62a722 40 after_script:
e5670730 41 - cp -v /tmp/${TEST_PY_BD}/*.{html,css} .
24df1b14 42 - rm -rf /tmp/uboot-test-hooks /tmp/venv
1a62a722 43 script:
dd5c954e 44 # If we've been asked to use clang only do one configuration.
4e32fed4 45 - export UBOOT_TRAVIS_BUILD_DIR=/tmp/${TEST_PY_BD}
1aa168ca 46 - echo BUILD_ENV ${BUILD_ENV}
9cea4797
SG
47 - if [ -n "${BUILD_ENV}" ]; then
48 export ${BUILD_ENV};
49 fi
7ec1255c
SG
50 - tools/buildman/buildman -o ${UBOOT_TRAVIS_BUILD_DIR} -w -E -W -e
51 --board ${TEST_PY_BD} ${OVERRIDE}
82560ae2
HS
52 - cp ~/grub_x86.efi $UBOOT_TRAVIS_BUILD_DIR/
53 - cp ~/grub_x64.efi $UBOOT_TRAVIS_BUILD_DIR/
54 - cp /opt/grub/grubriscv64.efi $UBOOT_TRAVIS_BUILD_DIR/grub_riscv64.efi
82560ae2
HS
55 - cp /opt/grub/grubaa64.efi $UBOOT_TRAVIS_BUILD_DIR/grub_arm64.efi
56 - cp /opt/grub/grubarm.efi $UBOOT_TRAVIS_BUILD_DIR/grub_arm.efi
0e60b3a7
BM
57 # create sdcard / spi-nor images for sifive unleashed using genimage
58 - if [[ "${TEST_PY_BD}" == "sifive_unleashed" ]]; then
59 mkdir -p root;
60 cp ${UBOOT_TRAVIS_BUILD_DIR}/spl/u-boot-spl.bin .;
61 cp ${UBOOT_TRAVIS_BUILD_DIR}/u-boot.itb .;
62 rm -rf tmp;
63 genimage --inputpath . --config board/sifive/unleashed/genimage_sdcard.cfg;
64 cp images/sdcard.img ${UBOOT_TRAVIS_BUILD_DIR}/;
65 rm -rf tmp;
66 genimage --inputpath . --config board/sifive/unleashed/genimage_spi-nor.cfg;
67 cp images/spi-nor.img ${UBOOT_TRAVIS_BUILD_DIR}/;
68 fi
bfb2a7fb
SG
69 - if [[ "${TEST_PY_BD}" == "coreboot" ]]; then
70 wget -O -
71 "https://drive.google.com/uc?id=1x6nrtWIyIRPLS2cQBwYTnT2TbOI8UjmM&export=download" |
72 xz -dc >${UBOOT_TRAVIS_BUILD_DIR}/coreboot.rom;
73 wget -O -
74 "https://drive.google.com/uc?id=149Cz-5SZXHNKpi9xg6R_5XITWohu348y&export=download" >
75 cbfstool;
76 chmod a+x cbfstool;
77 ./cbfstool ${UBOOT_TRAVIS_BUILD_DIR}/coreboot.rom add-flat-binary -f ${UBOOT_TRAVIS_BUILD_DIR}/u-boot.bin -n fallback/payload -c LZMA -l 0x1110000 -e 0x1110000;
78 fi
085b8978
TR
79 - virtualenv -p /usr/bin/python3 /tmp/venv
80 - . /tmp/venv/bin/activate
81 - pip install -r test/py/requirements.txt
4080d097 82 # "${var:+"-k $var"}" expands to "" if $var is empty, "-k $var" if not
4e32fed4 83 - export PATH=/opt/qemu/bin:/tmp/uboot-test-hooks/bin:${PATH};
1a62a722 84 export PYTHONPATH=/tmp/uboot-test-hooks/py/travis-ci;
f3092473 85 ./test/py/test.py -ra --bd ${TEST_PY_BD} ${TEST_PY_ID}
4080d097 86 ${TEST_PY_TEST_SPEC:+"-k ${TEST_PY_TEST_SPEC}"}
cec1e856 87 --build-dir "$UBOOT_TRAVIS_BUILD_DIR"
e5670730
MV
88 artifacts:
89 when: always
90 paths:
91 - "*.html"
92 - "*.css"
93 expire_in: 1 week
1a62a722 94
a11cb57d 95build all 32bit ARM platforms:
1a62a722
TR
96 stage: world build
97 script:
98 - ret=0;
bd181a24 99 git config --global --add safe.directory "${CI_PROJECT_DIR}";
d7713ad3 100 ./tools/buildman/buildman -o /tmp -PEWM arm -x aarch64 || ret=$?;
dd5c954e 101 if [[ $ret -ne 0 ]]; then
b52f5a19 102 ./tools/buildman/buildman -o /tmp -seP;
4c749971
TR
103 exit $ret;
104 fi;
9f7bda10 105
a11cb57d 106build all 64bit ARM platforms:
9f7bda10
TR
107 stage: world build
108 script:
26a426a1 109 - virtualenv -p /usr/bin/python3 /tmp/venv
f0db8395 110 - . /tmp/venv/bin/activate
9f7bda10 111 - ret=0;
bd181a24 112 git config --global --add safe.directory "${CI_PROJECT_DIR}";
d7713ad3 113 ./tools/buildman/buildman -o /tmp -PEWM aarch64 || ret=$?;
dd5c954e 114 if [[ $ret -ne 0 ]]; then
b52f5a19 115 ./tools/buildman/buildman -o /tmp -seP;
4c749971
TR
116 exit $ret;
117 fi;
9f7bda10 118
a11cb57d 119build all PowerPC platforms:
9f7bda10
TR
120 stage: world build
121 script:
122 - ret=0;
bd181a24 123 git config --global --add safe.directory "${CI_PROJECT_DIR}";
dd5c954e
SG
124 ./tools/buildman/buildman -o /tmp -P -E -W powerpc || ret=$?;
125 if [[ $ret -ne 0 ]]; then
b52f5a19 126 ./tools/buildman/buildman -o /tmp -seP;
4c749971
TR
127 exit $ret;
128 fi;
9f7bda10 129
a11cb57d 130build all other platforms:
9f7bda10
TR
131 stage: world build
132 script:
133 - ret=0;
bd181a24 134 git config --global --add safe.directory "${CI_PROJECT_DIR}";
d7713ad3 135 ./tools/buildman/buildman -o /tmp -PEWM -x arm,powerpc || ret=$?;
dd5c954e 136 if [[ $ret -ne 0 ]]; then
b52f5a19 137 ./tools/buildman/buildman -o /tmp -seP;
4c749971
TR
138 exit $ret;
139 fi;
1a62a722 140
bb9b9c1e 141check for new CONFIG symbols outside Kconfig:
c1a7de57
TR
142 stage: testsuites
143 script:
bb9b9c1e
TR
144 - git config --global --add safe.directory "${CI_PROJECT_DIR}"
145 # If grep succeeds and finds a match the test fails as we should
146 # have no matches.
147 - git grep -E '^#[[:blank:]]*(define|undef)[[:blank:]]*CONFIG_'
a03efb6f
TR
148 :^doc/ :^arch/arm/dts/ :^scripts/kconfig/lkc.h
149 :^include/linux/kconfig.h :^tools/ && exit 1 || exit 0
c1a7de57 150
1a62a722
TR
151# QA jobs for code analytics
152# static code analysis with cppcheck (we can add --enable=all later)
153cppcheck:
1a62a722
TR
154 stage: testsuites
155 script:
4ee7f527 156 - cppcheck -j$(nproc) --force --quiet --inline-suppr .
1a62a722
TR
157
158# search for TODO within source tree
159grep TODO/FIXME/HACK:
1a62a722
TR
160 stage: testsuites
161 script:
162 - grep -r TODO .
163 - grep -r FIXME .
164 # search for HACK within source tree and ignore HACKKIT board
165 - grep -r HACK . | grep -v HACKKIT
166
e9cc7029
HS
167# build documentation
168docs:
3eb7b78b
HS
169 stage: testsuites
170 script:
836049d6
HS
171 - virtualenv -p /usr/bin/python3 /tmp/venvhtml
172 - . /tmp/venvhtml/bin/activate
173 - pip install -r doc/sphinx/requirements.txt
3eb7b78b 174 - make htmldocs
e9cc7029 175 - make infodocs
3eb7b78b 176
1a62a722
TR
177# some statistics about the code base
178sloccount:
1a62a722
TR
179 stage: testsuites
180 script:
181 - sloccount .
182
183# ensure all configs have MAINTAINERS entries
184Check for configs without MAINTAINERS entry:
1a62a722
TR
185 stage: testsuites
186 script:
7ae8a527 187 - ./tools/buildman/buildman -R
1a62a722
TR
188
189# Ensure host tools build
190Build tools-only:
1a62a722
TR
191 stage: testsuites
192 script:
193 - make tools-only_config tools-only -j$(nproc)
194
1f3910da
PJT
195# Ensure env tools build
196Build envtools:
1f3910da
PJT
197 stage: testsuites
198 script:
199 - make tools-only_config envtools -j$(nproc)
200
7261833f 201Run binman, buildman, dtoc, Kconfig and patman testsuites:
1a62a722
TR
202 stage: testsuites
203 script:
d7ae9321
TR
204 - git config --global user.name "GitLab CI Runner";
205 git config --global user.email trini@konsulko.com;
b6d4e085 206 git config --global --add safe.directory "${CI_PROJECT_DIR}";
d7ae9321 207 export USER=gitlab;
26a426a1 208 virtualenv -p /usr/bin/python3 /tmp/venv;
d7ae9321 209 . /tmp/venv/bin/activate;
38229b55 210 pip install -r test/py/requirements.txt;
bf0a8133 211 export UBOOT_TRAVIS_BUILD_DIR=/tmp/sandbox_spl;
d7ae9321
TR
212 export PYTHONPATH="${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc/pylibfdt";
213 export PATH="${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc:${PATH}";
b6d4e085 214 set +e;
6c914e42
SG
215 ./tools/buildman/buildman -T0 -o ${UBOOT_TRAVIS_BUILD_DIR} -w
216 --board sandbox_spl;
b6d4e085 217 set -e;
d7ae9321
TR
218 ./tools/binman/binman --toolpath ${UBOOT_TRAVIS_BUILD_DIR}/tools test;
219 ./tools/buildman/buildman -t;
220 ./tools/dtoc/dtoc -t;
6bb74de7 221 ./tools/patman/patman test;
7261833f 222 make testconfig
1a62a722 223
6cfd09d4 224Run tests for Nokia RX-51 (aka N900):
6cfd09d4
T
225 stage: testsuites
226 script:
ce0f745c
T
227 - mkdir nokia_rx51_tmp;
228 ln -s /opt/nokia/u-boot-gen-combined nokia_rx51_tmp/;
229 ln -s /opt/nokia/qemu-n900.tar.gz nokia_rx51_tmp/;
230 ln -s /opt/nokia/kernel_2.6.28-20103103+0m5_armel.deb nokia_rx51_tmp/;
231 ln -s /opt/nokia/libc6_2.5.1-1eglibc27+0m5_armel.deb nokia_rx51_tmp/;
232 ln -s /opt/nokia/busybox_1.10.2.legal-1osso30+0m5_armel.deb nokia_rx51_tmp/;
233 ln -s /opt/nokia/qemu-system-arm nokia_rx51_tmp/;
234 export PATH=/opt/gcc-12.2.0-nolibc/arm-linux-gnueabi/bin:$PATH;
6cfd09d4
T
235 test/nokia_rx51_test.sh
236
642e51ad
SG
237# Check for any pylint regressions
238Run pylint:
239 stage: testsuites
240 script:
b6d4e085 241 - git config --global --add safe.directory "${CI_PROJECT_DIR}"
642e51ad 242 - pip install -r test/py/requirements.txt
e47bbf7e 243 - pip install asteval pylint==2.12.2 pyopenssl
642e51ad
SG
244 - export PATH=${PATH}:~/.local/bin
245 - echo "[MASTER]" >> .pylintrc
246 - echo "load-plugins=pylint.extensions.docparams" >> .pylintrc
247 - export UBOOT_TRAVIS_BUILD_DIR=/tmp/sandbox_spl
b6d4e085 248 - set +e
642e51ad
SG
249 - ./tools/buildman/buildman -T0 -o ${UBOOT_TRAVIS_BUILD_DIR} -w
250 --board sandbox_spl
b6d4e085 251 - set -e
642e51ad
SG
252 - pylint --version
253 - export PYTHONPATH="${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc/pylibfdt"
254 - make pylint_err
255
441a3d0a
SG
256# Check for pre-schema driver model tags
257Check for pre-schema tags:
258 stage: testsuites
259 script:
260 - git config --global --add safe.directory "${CI_PROJECT_DIR}";
261 # If grep succeeds and finds a match the test fails as we should
262 # have no matches.
263 - git grep u-boot,dm- -- '*.dts*' && exit 1 || exit 0
264
c21a5286
SG
265# Check we can package the Python tools
266Check packing of Python tools:
267 stage: testsuites
268 script:
269 - make pip
270
1a62a722
TR
271# Test sandbox with test.py
272sandbox test.py:
1a62a722
TR
273 variables:
274 TEST_PY_BD: "sandbox"
1a62a722
TR
275 <<: *buildman_and_testpy_dfn
276
0219d014 277sandbox with clang test.py:
0219d014
TR
278 variables:
279 TEST_PY_BD: "sandbox"
09ed7e62 280 OVERRIDE: "-O clang-14"
0219d014
TR
281 <<: *buildman_and_testpy_dfn
282
1aa168ca
SG
283sandbox without LTO test.py:
284 variables:
285 TEST_PY_BD: "sandbox"
286 BUILD_ENV: "NO_LTO=1"
287 <<: *buildman_and_testpy_dfn
288
1a62a722 289sandbox_spl test.py:
1a62a722
TR
290 variables:
291 TEST_PY_BD: "sandbox_spl"
afb26ba9 292 TEST_PY_TEST_SPEC: "test_ofplatdata or test_handoff or test_spl"
1a62a722
TR
293 <<: *buildman_and_testpy_dfn
294
6c914e42 295sandbox_noinst_test.py:
6c914e42
SG
296 variables:
297 TEST_PY_BD: "sandbox_noinst"
298 TEST_PY_TEST_SPEC: "test_ofplatdata or test_handoff or test_spl"
299 <<: *buildman_and_testpy_dfn
300
a31eff30
SG
301sandbox_vpl test.py:
302 variables:
303 TEST_PY_BD: "sandbox_vpl"
304 TEST_PY_TEST_SPEC: "test_vpl_help or test_spl"
305 <<: *buildman_and_testpy_dfn
9cea4797
SG
306
307# Enable tracing and disable LTO, to ensure functions are not elided
308sandbox trace_test.py:
309 variables:
310 TEST_PY_BD: "sandbox"
311 BUILD_ENV: "FTRACE=1 NO_LTO=1"
312 TEST_PY_TEST_SPEC: "trace"
313 OVERRIDE: "-a CONFIG_TRACE=y -a CONFIG_TRACE_EARLY=y -a CONFIG_TRACE_EARLY_SIZE=0x01000000"
314 <<: *buildman_and_testpy_dfn
a31eff30 315
699c0b93 316evb-ast2500 test.py:
699c0b93
TR
317 variables:
318 TEST_PY_BD: "evb-ast2500"
319 TEST_PY_ID: "--id qemu"
699c0b93
TR
320 <<: *buildman_and_testpy_dfn
321
b24087ae
JS
322evb-ast2600 test.py:
323 variables:
324 TEST_PY_BD: "evb-ast2600"
325 TEST_PY_ID: "--id qemu"
326 <<: *buildman_and_testpy_dfn
327
1a62a722 328sandbox_flattree test.py:
1a62a722
TR
329 variables:
330 TEST_PY_BD: "sandbox_flattree"
1a62a722
TR
331 <<: *buildman_and_testpy_dfn
332
15e30106
KA
333vexpress_ca9x4 test.py:
334 variables:
335 TEST_PY_BD: "vexpress_ca9x4"
336 TEST_PY_ID: "--id qemu"
337 <<: *buildman_and_testpy_dfn
338
1a62a722 339integratorcp_cm926ejs test.py:
1a62a722
TR
340 variables:
341 TEST_PY_BD: "integratorcp_cm926ejs"
342 TEST_PY_TEST_SPEC: "not sleep"
343 TEST_PY_ID: "--id qemu"
1a62a722
TR
344 <<: *buildman_and_testpy_dfn
345
346qemu_arm test.py:
1a62a722
TR
347 variables:
348 TEST_PY_BD: "qemu_arm"
349 TEST_PY_TEST_SPEC: "not sleep"
1a62a722
TR
350 <<: *buildman_and_testpy_dfn
351
352qemu_arm64 test.py:
1a62a722
TR
353 variables:
354 TEST_PY_BD: "qemu_arm64"
355 TEST_PY_TEST_SPEC: "not sleep"
1a62a722
TR
356 <<: *buildman_and_testpy_dfn
357
d8533167 358qemu_malta test.py:
d8533167
DS
359 variables:
360 TEST_PY_BD: "malta"
361 TEST_PY_TEST_SPEC: "not sleep and not efi"
362 TEST_PY_ID: "--id qemu"
363 <<: *buildman_and_testpy_dfn
364
365qemu_maltael test.py:
d8533167
DS
366 variables:
367 TEST_PY_BD: "maltael"
368 TEST_PY_TEST_SPEC: "not sleep and not efi"
369 TEST_PY_ID: "--id qemu"
370 <<: *buildman_and_testpy_dfn
371
372qemu_malta64 test.py:
d8533167
DS
373 variables:
374 TEST_PY_BD: "malta64"
375 TEST_PY_TEST_SPEC: "not sleep and not efi"
376 TEST_PY_ID: "--id qemu"
377 <<: *buildman_and_testpy_dfn
378
379qemu_malta64el test.py:
d8533167
DS
380 variables:
381 TEST_PY_BD: "malta64el"
382 TEST_PY_TEST_SPEC: "not sleep and not efi"
383 TEST_PY_ID: "--id qemu"
384 <<: *buildman_and_testpy_dfn
385
1a62a722 386qemu-ppce500 test.py:
1a62a722
TR
387 variables:
388 TEST_PY_BD: "qemu-ppce500"
389 TEST_PY_TEST_SPEC: "not sleep"
1a62a722
TR
390 <<: *buildman_and_testpy_dfn
391
a379d330 392qemu-riscv32 test.py:
a379d330
BM
393 variables:
394 TEST_PY_BD: "qemu-riscv32"
395 TEST_PY_TEST_SPEC: "not sleep"
a379d330
BM
396 <<: *buildman_and_testpy_dfn
397
7298d82d 398qemu-riscv64 test.py:
7298d82d
TR
399 variables:
400 TEST_PY_BD: "qemu-riscv64"
401 TEST_PY_TEST_SPEC: "not sleep"
49fb28a4
BM
402 <<: *buildman_and_testpy_dfn
403
404qemu-riscv32_spl test.py:
49fb28a4
BM
405 variables:
406 TEST_PY_BD: "qemu-riscv32_spl"
407 TEST_PY_TEST_SPEC: "not sleep"
49fb28a4
BM
408 <<: *buildman_and_testpy_dfn
409
410qemu-riscv64_spl test.py:
49fb28a4
BM
411 variables:
412 TEST_PY_BD: "qemu-riscv64_spl"
413 TEST_PY_TEST_SPEC: "not sleep"
7298d82d
TR
414 <<: *buildman_and_testpy_dfn
415
1a62a722 416qemu-x86 test.py:
1a62a722
TR
417 variables:
418 TEST_PY_BD: "qemu-x86"
419 TEST_PY_TEST_SPEC: "not sleep"
1a62a722
TR
420 <<: *buildman_and_testpy_dfn
421
422qemu-x86_64 test.py:
1a62a722
TR
423 variables:
424 TEST_PY_BD: "qemu-x86_64"
425 TEST_PY_TEST_SPEC: "not sleep"
1a62a722
TR
426 <<: *buildman_and_testpy_dfn
427
0e125756 428r2dplus_i82557c test.py:
0e125756
MV
429 variables:
430 TEST_PY_BD: "r2dplus"
431 TEST_PY_ID: "--id i82557c_qemu"
432 <<: *buildman_and_testpy_dfn
433
434r2dplus_pcnet test.py:
0e125756
MV
435 variables:
436 TEST_PY_BD: "r2dplus"
437 TEST_PY_ID: "--id pcnet_qemu"
438 <<: *buildman_and_testpy_dfn
439
440r2dplus_rtl8139 test.py:
0e125756
MV
441 variables:
442 TEST_PY_BD: "r2dplus"
443 TEST_PY_ID: "--id rtl8139_qemu"
444 <<: *buildman_and_testpy_dfn
445
446r2dplus_tulip test.py:
0e125756
MV
447 variables:
448 TEST_PY_BD: "r2dplus"
449 TEST_PY_ID: "--id tulip_qemu"
450 <<: *buildman_and_testpy_dfn
451
0e60b3a7
BM
452sifive_unleashed_sdcard test.py:
453 variables:
454 TEST_PY_BD: "sifive_unleashed"
455 TEST_PY_ID: "--id sdcard_qemu"
456 <<: *buildman_and_testpy_dfn
457
458sifive_unleashed_spi-nor test.py:
459 variables:
460 TEST_PY_BD: "sifive_unleashed"
461 TEST_PY_ID: "--id spi-nor_qemu"
462 <<: *buildman_and_testpy_dfn
463
f7c6ee7f 464xilinx_zynq_virt test.py:
1a62a722 465 variables:
f7c6ee7f 466 TEST_PY_BD: "xilinx_zynq_virt"
1a62a722 467 TEST_PY_TEST_SPEC: "not sleep"
1a62a722 468 TEST_PY_ID: "--id qemu"
1a62a722
TR
469 <<: *buildman_and_testpy_dfn
470
471xilinx_versal_virt test.py:
1a62a722
TR
472 variables:
473 TEST_PY_BD: "xilinx_versal_virt"
474 TEST_PY_TEST_SPEC: "not sleep"
1a62a722 475 TEST_PY_ID: "--id qemu"
1a62a722
TR
476 <<: *buildman_and_testpy_dfn
477
478xtfpga test.py:
1a62a722
TR
479 variables:
480 TEST_PY_BD: "xtfpga"
481 TEST_PY_TEST_SPEC: "not sleep"
1a62a722 482 TEST_PY_ID: "--id qemu"
1a62a722 483 <<: *buildman_and_testpy_dfn
bfb2a7fb
SG
484
485coreboot test.py:
486 variables:
487 TEST_PY_BD: "coreboot"
488 TEST_PY_TEST_SPEC: "not sleep"
489 TEST_PY_ID: "--id qemu"
bfb2a7fb 490 <<: *buildman_and_testpy_dfn