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