1 # SPDX-License-Identifier: GPL-2.0+
2 # Copyright Roger Meier <r.meier@siemens.com>
4 # build U-Boot on Travis CI - https://travis-ci.org/
15 - sourceline: 'deb http://apt.llvm.org/bionic/ llvm-toolchain-bionic-10 main'
16 key_url: 'https://apt.llvm.org/llvm-snapshot.gpg.key'
37 - device-tree-compiler
55 # Clone uboot-test-hooks
56 - git clone --depth=1 git://github.com/swarren/uboot-test-hooks.git /tmp/uboot-test-hooks
57 - ln -s travis-ci /tmp/uboot-test-hooks/bin/`hostname`
58 - ln -s travis-ci /tmp/uboot-test-hooks/py/`hostname`
59 # prepare buildman environment
60 - echo -e "[toolchain]\nroot = /usr" > ~/.buildman
61 - echo -e "arc = /tmp/arc_gnu_2019.09_prebuilt_uclibc_le_archs_linux_install" >> ~/.buildman
62 - echo -e "\n[toolchain-alias]\nsh = sh2" >> ~/.buildman
63 - echo -e "x86 = i386" >> ~/.buildman;
64 - echo -e "riscv = riscv64" >> ~/.buildman;
66 - grub-mkimage --prefix="" -o ~/grub_x86.efi -O i386-efi normal echo lsefimmap lsefi lsefisystab efinet tftp minicmd
67 - grub-mkimage --prefix="" -o ~/grub_x64.efi -O x86_64-efi normal echo lsefimmap lsefi lsefisystab efinet tftp minicmd
68 - wget http://mirrors.kernel.org/ubuntu/pool/main/m/mpfr4/libmpfr4_3.1.4-1_amd64.deb && sudo dpkg -i libmpfr4_3.1.4-1_amd64.deb && rm libmpfr4_3.1.4-1_amd64.deb
69 - wget http://mirrors.kernel.org/ubuntu/pool/universe/e/efitools/efitools_1.8.1-0ubuntu2_amd64.deb && sudo dpkg -i efitools_1.8.1-0ubuntu2_amd64.deb && rm efitools_1.8.1-0ubuntu2_amd64.deb
73 - PATH=/tmp/qemu-install/bin:/tmp/uboot-test-hooks/bin:/sbin:/usr/bin:/bin:/usr/local/bin
74 - PYTHONPATH=/tmp/uboot-test-hooks/py/travis-ci
78 - QEMU_VERSION="v4.2.0"
81 # install toolchains based on TOOLCHAIN} variable
82 - if [[ "${TOOLCHAIN}" == *m68k* ]]; then ./tools/buildman/buildman --fetch-arch m68k ; fi
83 - if [[ "${TOOLCHAIN}" == *microblaze* ]]; then ./tools/buildman/buildman --fetch-arch microblaze ; fi
84 - if [[ "${TOOLCHAIN}" == *mips* ]]; then ./tools/buildman/buildman --fetch-arch mips ; fi
85 - if [[ "${TOOLCHAIN}" == *sh* ]]; then ./tools/buildman/buildman --fetch-arch sh2 ; fi
86 - if [[ "${TOOLCHAIN}" == *i386* ]]; then
87 ./tools/buildman/buildman --fetch-arch i386;
89 - if [[ "${TOOLCHAIN}" == arc ]]; then
90 wget https://github.com/foss-for-synopsys-dwc-arc-processors/toolchain/releases/download/arc-2019.09-release/arc_gnu_2019.09_prebuilt_uclibc_le_archs_linux_install.tar.gz &&
91 tar -C /tmp -xf arc_gnu_2019.09_prebuilt_uclibc_le_archs_linux_install.tar.gz;
93 - if [[ "${TOOLCHAIN}" == "nds32" ]]; then
94 wget https://github.com/vincentzwc/prebuilt-nds32-toolchain/releases/download/20180521/nds32le-linux-glibc-v3-upstream.tar.gz &&
95 tar -C /tmp -xf nds32le-linux-glibc-v3-upstream.tar.gz &&
96 echo -e "\n[toolchain-prefix]\nnds32 = /tmp/nds32le-linux-glibc-v3-upstream/bin/nds32le-linux-" >> ~/.buildman;
98 - if [[ "${TOOLCHAIN}" == *xtensa* ]]; then
99 wget https://github.com/foss-xtensa/toolchain/releases/download/2018.02/x86_64-2018.02-${TOOLCHAIN}.tar.gz &&
100 tar -C /tmp -xf x86_64-2018.02-${TOOLCHAIN}.tar.gz &&
101 echo -e "\n[toolchain-prefix]\nxtensa = /tmp/2018.02/${TOOLCHAIN}/bin/${TOOLCHAIN}-" >> ~/.buildman;
103 # If TOOLCHAIN is unset, we're on some flavour of ARM.
104 - if [[ "${TOOLCHAIN}" == "" ]]; then
105 ./tools/buildman/buildman --fetch-arch arm &&
106 ./tools/buildman/buildman --fetch-arch aarch64;
108 - if [[ "${TOOLCHAIN}" == "powerpc" ]]; then ./tools/buildman/buildman --fetch-arch powerpc; fi
109 - if [[ "${TOOLCHAIN}" == "riscv" ]]; then
110 ./tools/buildman/buildman --fetch-arch riscv32 &&
111 ./tools/buildman/buildman --fetch-arch riscv64;
113 - if [[ "${QEMU_TARGET}" != "" ]]; then
114 git clone git://git.qemu.org/qemu.git /tmp/qemu;
116 git submodule update --init dtc &&
117 git checkout ${QEMU_VERSION} &&
118 ./configure --prefix=/tmp/qemu-install --target-list=${QEMU_TARGET} &&
119 make -j4 all install;
123 # Build GRUB UEFI targets
124 - if [[ "${QEMU_TARGET}" == "arm-softmmu" ]]; then
125 git clone git://git.savannah.gnu.org/grub.git /tmp/grub &&
127 git checkout grub-2.04 &&
129 ./configure --target=arm --with-platform=efi
131 TARGET_CC=~/.buildman-toolchains/gcc-9.2.0-nolibc/arm-linux-gnueabi/bin/arm-linux-gnueabi-gcc
132 TARGET_OBJCOPY=~/.buildman-toolchains/gcc-9.2.0-nolibc/arm-linux-gnueabi/bin/arm-linux-gnueabi-objcopy
133 TARGET_STRIP=~/.buildman-toolchains/gcc-9.2.0-nolibc/arm-linux-gnueabi/bin/arm-linux-gnueabi-strip
134 TARGET_NM=~/.buildman-toolchains/gcc-9.2.0-nolibc/arm-linux-gnueabi/bin/arm-linux-gnueabi-nm
135 TARGET_RANLIB=~/.buildman-toolchains/gcc-9.2.0-nolibc/arm-linux-gnueabi/bin/arm-linux-gnueabi-ranlib &&
137 ./grub-mkimage -O arm-efi -o ~/grub_arm.efi --prefix= -d
138 grub-core cat chain configfile echo efinet ext2 fat halt help linux
139 lsefisystab loadenv lvm minicmd normal part_msdos part_gpt reboot
140 search search_fs_file search_fs_uuid search_label serial sleep test
144 - if [[ "${QEMU_TARGET}" == "aarch64-softmmu" ]]; then
145 git clone git://git.savannah.gnu.org/grub.git /tmp/grub &&
147 git checkout grub-2.04 &&
149 ./configure --target=aarch64 --with-platform=efi
151 TARGET_CC=~/.buildman-toolchains/gcc-9.2.0-nolibc/aarch64-linux/bin/aarch64-linux-gcc
152 TARGET_OBJCOPY=~/.buildman-toolchains/gcc-9.2.0-nolibc/aarch64-linux/bin/aarch64-linux-objcopy
153 TARGET_STRIP=~/.buildman-toolchains/gcc-9.2.0-nolibc/aarch64-linux/bin/aarch64-linux-strip
154 TARGET_NM=~/.buildman-toolchains/gcc-9.2.0-nolibc/aarch64-linux/bin/aarch64-linux-nm
155 TARGET_RANLIB=~/.buildman-toolchains/gcc-9.2.0-nolibc/aarch64-linux/bin/aarch64-linux-ranlib &&
157 ./grub-mkimage -O arm64-efi -o ~/grub_arm64.efi --prefix= -d
158 grub-core cat chain configfile echo efinet ext2 fat halt help linux
159 lsefisystab loadenv lvm minicmd normal part_msdos part_gpt reboot
160 search search_fs_file search_fs_uuid search_label serial sleep test
164 - if [[ "${QEMU_TARGET}" == "riscv32-softmmu" ]]; then
165 git clone git://git.savannah.gnu.org/grub.git /tmp/grub &&
167 git checkout grub-2.04 &&
169 ./configure --target=riscv32 --with-platform=efi
171 TARGET_CC=~/.buildman-toolchains/gcc-9.2.0-nolibc/riscv32-linux/bin/riscv32-linux-gcc
172 TARGET_OBJCOPY=~/.buildman-toolchains/gcc-9.2.0-nolibc/riscv32-linux/bin/riscv32-linux-objcopy
173 TARGET_STRIP=~/.buildman-toolchains/gcc-9.2.0-nolibc/riscv32-linux/bin/riscv32-linux-strip
174 TARGET_NM=~/.buildman-toolchains/gcc-9.2.0-nolibc/riscv32-linux/bin/riscv32-linux-nm
175 TARGET_RANLIB=~/.buildman-toolchains/gcc-9.2.0-nolibc/riscv32-linux/bin/riscv32-linux-ranlib &&
177 ./grub-mkimage -O riscv32-efi -o ~/grub_riscv32.efi --prefix= -d
178 grub-core cat chain configfile echo efinet ext2 fat halt help linux
179 lsefisystab loadenv lvm minicmd normal part_msdos part_gpt reboot
180 search search_fs_file search_fs_uuid search_label serial sleep test
184 - if [[ "${QEMU_TARGET}" == "riscv64-softmmu" ]]; then
185 git clone git://git.savannah.gnu.org/grub.git /tmp/grub &&
187 git checkout grub-2.04 &&
189 ./configure --target=riscv64 --with-platform=efi
191 TARGET_CC=~/.buildman-toolchains/gcc-9.2.0-nolibc/riscv64-linux/bin/riscv64-linux-gcc
192 TARGET_OBJCOPY=~/.buildman-toolchains/gcc-9.2.0-nolibc/riscv64-linux/bin/riscv64-linux-objcopy
193 TARGET_STRIP=~/.buildman-toolchains/gcc-9.2.0-nolibc/riscv64-linux/bin/riscv64-linux-strip
194 TARGET_NM=~/.buildman-toolchains/gcc-9.2.0-nolibc/riscv64-linux/bin/riscv64-linux-nm
195 TARGET_RANLIB=~/.buildman-toolchains/gcc-9.2.0-nolibc/riscv64-linux/bin/riscv64-linux-ranlib &&
197 ./grub-mkimage -O riscv64-efi -o ~/grub_riscv64.efi --prefix= -d
198 grub-core cat chain configfile echo efinet ext2 fat halt help linux
199 lsefisystab loadenv lvm minicmd normal part_msdos part_gpt reboot
200 search search_fs_file search_fs_uuid search_label serial sleep test
204 - if [[ "${TEST_PY_BD}" == "qemu-riscv32_spl" ]]; then
205 wget -O - https://github.com/riscv/opensbi/releases/download/v0.6/opensbi-0.6-rv32-bin.tar.xz | tar -C /tmp -xJ;
206 export OPENSBI=/tmp/opensbi-0.6-rv32-bin/platform/qemu/virt/firmware/fw_dynamic.bin;
208 - if [[ "${TEST_PY_BD}" == "qemu-riscv64_spl" ]]; then
209 wget -O - https://github.com/riscv/opensbi/releases/download/v0.6/opensbi-0.6-rv64-bin.tar.xz | tar -C /tmp -xJ;
210 export OPENSBI=/tmp/opensbi-0.6-rv64-bin/platform/qemu/virt/firmware/fw_dynamic.bin;
214 # Comments must be outside the command strings below, or the Travis parser
217 # If we've been asked to use clang only do one configuration.
219 # Build a selection of boards if TEST_PY_BD is empty
220 - if [[ "${BUILDMAN}" != "" ]]; then
222 tools/buildman/buildman -P -E -W ${BUILDMAN} ${OVERRIDE} || ret=$?;
223 if [[ $ret -ne 0 ]]; then
224 tools/buildman/buildman -seP ${BUILDMAN};
228 # Build just the one board needed for testing, if TEST_PY_BD is non-empty
229 # Note: "${var:+"-k $var"}" expands to "" if $var is empty, "-k $var" if not
230 - if [[ "${TEST_PY_BD}" != "" ]]; then
231 export UBOOT_TRAVIS_BUILD_DIR=`cd .. && pwd`/${TEST_PY_BD};
232 cp ~/grub_x86.efi $UBOOT_TRAVIS_BUILD_DIR/;
233 cp ~/grub_x64.efi $UBOOT_TRAVIS_BUILD_DIR/;
234 if [[ -e ~/grub_arm.efi ]]; then
235 cp ~/grub_arm.efi $UBOOT_TRAVIS_BUILD_DIR/;
237 if [[ -e ~/grub_arm64.efi ]]; then
238 cp ~/grub_arm64.efi $UBOOT_TRAVIS_BUILD_DIR/;
240 if [[ -e ~/grub_riscv32.efi ]]; then
241 cp ~/grub_riscv32.efi $UBOOT_TRAVIS_BUILD_DIR/;
243 if [[ -e ~/grub_riscv64.efi ]]; then
244 cp ~/grub_riscv64.efi $UBOOT_TRAVIS_BUILD_DIR/;
246 tools/buildman/buildman -o ${UBOOT_TRAVIS_BUILD_DIR} -w -E -W -e
247 --board ${TEST_PY_BD} ${OVERRIDE} || exit;
248 virtualenv -p /usr/bin/python3 /tmp/venv;
249 . /tmp/venv/bin/activate;
250 pip install -r test/py/requirements.txt;
251 ./test/py/test.py --bd ${TEST_PY_BD} ${TEST_PY_ID}
252 ${TEST_PY_TEST_SPEC:+"-k ${TEST_PY_TEST_SPEC}"}
253 --build-dir "$UBOOT_TRAVIS_BUILD_DIR" || exit;
254 if [[ -n "${TEST_PY_TOOLS}" ]]; then
255 export PYTHONPATH="${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc/pylibfdt";
256 export PATH="${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc:${PATH}";
257 ./tools/binman/binman --toolpath ${UBOOT_TRAVIS_BUILD_DIR}/tools test &&
258 ./tools/patman/patman --test &&
259 ./tools/buildman/buildman -t &&
260 ./tools/dtoc/dtoc -t &&
267 # we need to build by vendor due to 50min time limit for builds
268 # each env setting here is a dedicated build
269 - name: "buildman arc"
273 - name: "buildman arm11 arm7 arm920t arm946es"
275 - BUILDMAN="arm11 arm7 arm920t arm946es"
276 - name: "buildman arm926ejs (non-NXP,siemens,at91,kirkwood,spear)"
279 BUILDMAN="arm926ejs -x freescale,siemens,at91,kirkwood,spear,omap"
280 - name: "buildman at91 (non arm v7)"
282 - BUILDMAN="at91 -x armv7"
283 - name: "buildman at91 (non arm926ejs)"
285 - BUILDMAN="at91 -x arm926ejs"
286 - name: "buildman boundary engicam toradex"
288 - BUILDMAN="boundary engicam toradex"
289 - name: "buildman ARM bcm"
291 - BUILDMAN="bcm -x mips"
292 - name: "buildman NXP ARM32 (catch-all)"
294 - BUILDMAN="freescale -x powerpc,m68k,aarch64,ls101,ls102,ls104,ls108,ls20,lx216"
295 - name: "buildman NXP LS101x"
297 - BUILDMAN="freescale&ls101"
298 - name: "buildman NXP LS102x"
300 - BUILDMAN="freescale&ls102"
301 - name: "buildman NXP LS104x"
303 - BUILDMAN="freescale&ls104"
304 - name: "buildman NXP LS108x"
306 - BUILDMAN="freescale&ls108"
307 - name: "buildman NXP LS20xx"
309 - BUILDMAN="freescale&ls20"
310 - name: "buildman NXP LX216x"
312 - BUILDMAN="freescale&lx216"
313 - name: "buildman i.MX6 tqc"
316 - name: "buildman i.MX6 (catch-all)"
318 - BUILDMAN="mx6 -x boundary,engicam,freescale,technexion,toradex,tqc"
319 - name: "buildman i.MX (non-i.MX6 catch-all)"
321 - BUILDMAN="mx -x freescale,mx6,toradex,technexion"
322 - name: "buildman keystone 2/3"
325 - name: "buildman samsung socfpga"
327 - BUILDMAN="samsung socfpga"
328 - name: "buildman spear"
331 - name: "buildman sun4i"
334 - name: "buildman sun5i"
337 - name: "buildman sun6i"
340 - name: "buildman sun7i"
343 - name: "buildman 64bit sun8i"
345 - BUILDMAN="sun8i&aarch64 -x orangepi"
346 - name: "buildman 32bit sun8i"
348 - BUILDMAN="sun8i&armv7 -x orangepi"
349 - name: "buildman sun9i"
352 - name: "buildman sun50i"
354 - BUILDMAN="sun50i -x orangepi"
355 - name: "buildman catch-all ARM"
357 - BUILDMAN="arm -x arm11,arm7,arm9,aarch64,at91,bcm,freescale,kirkwood,mvebu,siemens,tegra,uniphier,mx,samsung,sunxi,am33xx,omap,rk,toradex,socfpga,k2,k3,zynq"
358 - name: "buildman sandbox x86"
360 - BUILDMAN="sandbox x86"
362 - name: "buildman technexion"
364 - BUILDMAN="technexion"
365 - name: "buildman kirkwood"
367 - BUILDMAN="kirkwood"
368 - name: "buildman mvebu"
371 - name: "buildman m68k"
375 - name: "buildman microblaze"
377 - BUILDMAN="microblaze"
378 TOOLCHAIN="microblaze"
379 - name: "buildman mips"
383 - name: "buildman non-Freescale PowerPC"
385 - BUILDMAN="powerpc -x freescale"
387 - name: "buildman mpc85xx&freescale (excluding many)"
389 - BUILDMAN="mpc85xx&freescale -x t208xrdb -x t4qds -x t102* -x p1_p2_rdb_pc -x p1010rdb -x corenet_ds -x b4860qds -x bsc91*"
391 - name: "buildman t208xrdb corenet_ds"
393 - BUILDMAN="t208xrdb corenet_ds"
395 - name: "buildman Freescale PowerPC"
397 - BUILDMAN="t4qds b4860qds mpc83xx&freescale mpc86xx&freescale"
399 - name: "buildman t102*"
403 - name: "buildman p1_p2_rdb_pc"
405 - BUILDMAN="p1_p2_rdb_pc"
407 - name: "buildman p1010rdb bsc91"
409 - BUILDMAN="p1010rdb bsc91"
411 - name: "buildman siemens"
414 - name: "buildman tegra"
416 - BUILDMAN="tegra -x toradex"
417 - name: "buildman am33xx (no siemens)"
419 - BUILDMAN="am33xx -x siemens"
420 - name: "buildman omap"
423 - name: "buildman orangepi"
425 - BUILDMAN="orangepi"
426 - name: "buildman uniphier"
428 - BUILDMAN="uniphier"
429 - name: "buildman catch-all AArch64"
431 - BUILDMAN="aarch64 -x bcm,k3,tegra,ls1,ls2,lx216,mvebu,uniphier,sunxi,samsung,socfpga,rk,versal,zynq"
432 - name: "buildman rockchip"
434 - BUILDMAN="rk -x orangepi"
435 - name: "buildman sh"
437 - BUILDMAN="sh -x arm"
439 - name: "buildman Zynq* (ARMv7)"
441 - BUILDMAN="zynq&armv7"
442 - name: "buildman ZynqMP and Versal"
444 - BUILDMAN="versal|zynqmp&aarch64"
445 - name: "buildman xtensa"
448 TOOLCHAIN="xtensa-dc233c-elf"
449 - name: "buildman riscv"
453 - name: "buildman nds32"
458 # QA jobs for code analytics
459 # static code analysis with cppcheck (we can add --enable=all later)
462 - cppcheck -j$(nproc) --force --quiet --inline-suppr .
463 # build HTML documentation
467 # search for TODO within source tree
471 # search for FIXME within source tree
472 - name: "grep FIXME HACK"
475 # search for HACK within source tree and ignore HACKKIT board
477 - grep -r HACK . | grep -v HACKKIT
478 # some statistics about the code base
482 # ensure all configs have MAINTAINERS entries
483 - name: "Check for configs without MAINTAINERS entry"
485 - if [ `./tools/genboardscfg.py -f 2>&1 | wc -l` -ne 0 ]; then exit 1; fi
486 # Ensure host tools build
487 - name: "Build tools-only"
489 - make tools-only_config tools-only -j$(nproc)
490 # Ensure env tools build
491 - name: "Build envtools"
493 - make tools-only_config envtools -j$(nproc)
496 - name: "test/py sandbox"
498 - TEST_PY_BD="sandbox"
500 - name: "test/py sandbox with clang"
502 - TEST_PY_BD="sandbox"
503 OVERRIDE="-O clang-10"
504 - name: "test/py sandbox_spl"
506 - TEST_PY_BD="sandbox_spl"
507 TEST_PY_TEST_SPEC="test_ofplatdata or test_handoff"
510 - name: "test/py sandbox_flattree"
512 - TEST_PY_BD="sandbox_flattree"
514 - name: "test/py evb-ast2500"
516 - TEST_PY_BD="evb-ast2500"
517 TEST_PY_ID="--id qemu"
518 QEMU_TARGET="arm-softmmu"
519 - name: "test/py vexpress_ca15_tc2"
521 - TEST_PY_BD="vexpress_ca15_tc2"
522 TEST_PY_ID="--id qemu"
523 QEMU_TARGET="arm-softmmu"
524 - name: "test/py vexpress_ca9x4"
526 - TEST_PY_BD="vexpress_ca9x4"
527 TEST_PY_ID="--id qemu"
528 QEMU_TARGET="arm-softmmu"
529 - name: "test/py integratorcp_cm926ejs"
531 - TEST_PY_BD="integratorcp_cm926ejs"
532 TEST_PY_TEST_SPEC="not sleep"
533 TEST_PY_ID="--id qemu"
534 QEMU_TARGET="arm-softmmu"
535 - name: "test/py qemu_arm"
537 - TEST_PY_BD="qemu_arm"
538 TEST_PY_TEST_SPEC="not sleep"
539 QEMU_TARGET="arm-softmmu"
540 - name: "test/py qemu_arm64"
542 - TEST_PY_BD="qemu_arm64"
543 TEST_PY_TEST_SPEC="not sleep"
544 QEMU_TARGET="aarch64-softmmu"
545 - name: "test/py qemu_mips"
547 - TEST_PY_BD="qemu_mips"
548 TEST_PY_TEST_SPEC="not sleep"
549 QEMU_TARGET="mips-softmmu"
551 - name: "test/py qemu_mipsel"
553 - TEST_PY_BD="qemu_mipsel"
554 TEST_PY_TEST_SPEC="not sleep"
555 QEMU_TARGET="mipsel-softmmu"
557 - name: "test/py qemu_mips64"
559 - TEST_PY_BD="qemu_mips64"
560 TEST_PY_TEST_SPEC="not sleep"
561 QEMU_TARGET="mips64-softmmu"
563 - name: "test/py qemu_mips64el"
565 - TEST_PY_BD="qemu_mips64el"
566 TEST_PY_TEST_SPEC="not sleep"
567 QEMU_TARGET="mips64el-softmmu"
569 - name: "test/py qemu-ppce500"
571 - TEST_PY_BD="qemu-ppce500"
572 TEST_PY_TEST_SPEC="not sleep"
573 QEMU_TARGET="ppc-softmmu"
575 - name: "test/py qemu-riscv32"
577 - TEST_PY_BD="qemu-riscv32"
578 TEST_PY_TEST_SPEC="not sleep"
579 QEMU_TARGET="riscv32-softmmu"
581 - name: "test/py qemu-riscv64"
583 - TEST_PY_BD="qemu-riscv64"
584 TEST_PY_TEST_SPEC="not sleep"
585 QEMU_TARGET="riscv64-softmmu"
587 - name: "test/py qemu-riscv32_spl"
589 - TEST_PY_BD="qemu-riscv32_spl"
590 TEST_PY_TEST_SPEC="not sleep"
591 QEMU_TARGET="riscv32-softmmu"
593 - name: "test/py qemu-riscv64_spl"
595 - TEST_PY_BD="qemu-riscv64_spl"
596 TEST_PY_TEST_SPEC="not sleep"
597 QEMU_TARGET="riscv64-softmmu"
599 - name: "test/py qemu-x86"
601 - TEST_PY_BD="qemu-x86"
602 TEST_PY_TEST_SPEC="not sleep"
603 QEMU_TARGET="i386-softmmu"
606 - name: "test/py qemu-x86_64"
608 - TEST_PY_BD="qemu-x86_64"
609 TEST_PY_TEST_SPEC="not sleep"
610 QEMU_TARGET="x86_64-softmmu"
613 - name: "test/py xilinx_zynq_virt"
615 - TEST_PY_BD="xilinx_zynq_virt"
616 TEST_PY_TEST_SPEC="not sleep"
617 QEMU_TARGET="arm-softmmu"
618 TEST_PY_ID="--id qemu"
619 - name: "test/py xilinx_versal_virt"
621 - TEST_PY_BD="xilinx_versal_virt"
622 TEST_PY_TEST_SPEC="not sleep"
623 QEMU_TARGET="aarch64-softmmu"
624 TEST_PY_ID="--id qemu"
625 - name: "test/py xtfpga"
627 - TEST_PY_BD="xtfpga"
628 TEST_PY_TEST_SPEC="not sleep"
629 QEMU_TARGET="xtensa-softmmu"
630 TEST_PY_ID="--id qemu"
631 TOOLCHAIN="xtensa-dc233c-elf"
633 # TODO make it perfect ;-r