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