Merge branch '2020-04-10-gitlab-travis-gcc9' into next
[oweals/u-boot.git] / .travis.yml
1 # SPDX-License-Identifier: GPL-2.0+
2 # Copyright Roger Meier <r.meier@siemens.com>
3
4 # build U-Boot on Travis CI - https://travis-ci.org/
5
6 sudo: required
7 dist: bionic
8
9 language: c
10
11 addons:
12   apt:
13     sources:
14     - ubuntu-toolchain-r-test
15     - llvm-toolchain-bionic-7
16     packages:
17     - autopoint
18     - cppcheck
19     - sloccount
20     - sparse
21     - bc
22     - build-essential
23     - libsdl2-dev
24     - python
25     - python-pyelftools
26     - python3-sphinx
27     - python3-virtualenv
28     - python3-pip
29     - swig
30     - libpython-dev
31     - iasl
32     - grub-efi-ia32-bin
33     - grub-efi-amd64-bin
34     - rpm2cpio
35     - wget
36     - device-tree-compiler
37     - lzop
38     - liblz4-tool
39     - lzma-alone
40     - libisl15
41     - clang-7
42     - srecord
43     - graphviz
44
45 install:
46  # Clone uboot-test-hooks
47  - git clone --depth=1 git://github.com/swarren/uboot-test-hooks.git /tmp/uboot-test-hooks
48  - ln -s travis-ci /tmp/uboot-test-hooks/bin/`hostname`
49  - ln -s travis-ci /tmp/uboot-test-hooks/py/`hostname`
50  # prepare buildman environment
51  - echo -e "[toolchain]\nroot = /usr" > ~/.buildman
52  - echo -e "arc = /tmp/arc_gnu_2018.09_prebuilt_uclibc_le_archs_linux_install" >> ~/.buildman
53  - echo -e "\n[toolchain-alias]\nsh = sh2" >> ~/.buildman
54  - echo -e "x86 = i386" >> ~/.buildman;
55  - echo -e "riscv = riscv64" >> ~/.buildman;
56  - cat ~/.buildman
57  - grub-mkimage --prefix="" -o ~/grub_x86.efi -O i386-efi normal  echo lsefimmap lsefi lsefisystab efinet tftp minicmd
58  - grub-mkimage --prefix="" -o ~/grub_x64.efi -O x86_64-efi normal  echo lsefimmap lsefi lsefisystab efinet tftp minicmd
59  - 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
60
61 env:
62   global:
63     - PATH=/tmp/qemu-install/bin:/tmp/uboot-test-hooks/bin:/usr/bin:/bin:/usr/local/bin
64     - PYTHONPATH=/tmp/uboot-test-hooks/py/travis-ci
65     - BUILD_DIR=build
66     - HOSTCC="cc"
67     - HOSTCXX="c++"
68     - QEMU_VERSION="v4.2.0"
69
70 before_script:
71   # install toolchains based on TOOLCHAIN} variable
72   - if [[ "${TOOLCHAIN}" == *m68k* ]]; then ./tools/buildman/buildman --fetch-arch m68k ; fi
73   - if [[ "${TOOLCHAIN}" == *microblaze* ]]; then ./tools/buildman/buildman --fetch-arch microblaze ; fi
74   - if [[ "${TOOLCHAIN}" == *mips* ]]; then ./tools/buildman/buildman --fetch-arch mips ; fi
75   - if [[ "${TOOLCHAIN}" == *sh* ]]; then ./tools/buildman/buildman --fetch-arch sh2 ; fi
76   - if [[ "${TOOLCHAIN}" == *i386* ]]; then
77       ./tools/buildman/buildman --fetch-arch i386;
78     fi
79   - if [[ "${TOOLCHAIN}" == arc ]]; then
80        wget https://github.com/foss-for-synopsys-dwc-arc-processors/toolchain/releases/download/arc-2018.09-release/arc_gnu_2018.09_prebuilt_uclibc_le_archs_linux_install.tar.gz &&
81        tar -C /tmp -xf arc_gnu_2018.09_prebuilt_uclibc_le_archs_linux_install.tar.gz;
82     fi
83   - if [[ "${TOOLCHAIN}" == "nds32" ]]; then
84        wget https://github.com/vincentzwc/prebuilt-nds32-toolchain/releases/download/20180521/nds32le-linux-glibc-v3-upstream.tar.gz &&
85        tar -C /tmp -xf nds32le-linux-glibc-v3-upstream.tar.gz &&
86        echo -e "\n[toolchain-prefix]\nnds32 = /tmp/nds32le-linux-glibc-v3-upstream/bin/nds32le-linux-" >> ~/.buildman;
87     fi
88   - if [[ "${TOOLCHAIN}" == *xtensa* ]]; then
89        wget https://github.com/foss-xtensa/toolchain/releases/download/2018.02/x86_64-2018.02-${TOOLCHAIN}.tar.gz &&
90        tar -C /tmp -xf x86_64-2018.02-${TOOLCHAIN}.tar.gz &&
91        echo -e "\n[toolchain-prefix]\nxtensa = /tmp/2018.02/${TOOLCHAIN}/bin/${TOOLCHAIN}-" >> ~/.buildman;
92     fi
93   # If TOOLCHAIN is unset, we're on some flavour of ARM.
94   - if [[ "${TOOLCHAIN}" == "" ]]; then
95        ./tools/buildman/buildman --fetch-arch arm &&
96        ./tools/buildman/buildman --fetch-arch aarch64;
97     fi
98   - if [[ "${TOOLCHAIN}" == "powerpc" ]]; then ./tools/buildman/buildman --fetch-arch powerpc; fi
99   - if [[ "${TOOLCHAIN}" == "riscv" ]]; then
100        ./tools/buildman/buildman --fetch-arch riscv32 &&
101        ./tools/buildman/buildman --fetch-arch riscv64;
102     fi
103   - if [[ "${QEMU_TARGET}" != "" ]]; then
104        git clone git://git.qemu.org/qemu.git /tmp/qemu;
105        pushd /tmp/qemu;
106        git submodule update --init dtc &&
107        git checkout ${QEMU_VERSION} &&
108        ./configure --prefix=/tmp/qemu-install --target-list=${QEMU_TARGET} &&
109        make -j4 all install;
110        popd;
111     fi
112
113   # Build GRUB UEFI targets
114   - if [[ "${QEMU_TARGET}" == "arm-softmmu" ]]; then
115        git clone git://git.savannah.gnu.org/grub.git /tmp/grub &&
116        pushd /tmp/grub &&
117        git checkout grub-2.04 &&
118        ./bootstrap &&
119        ./configure --target=arm --with-platform=efi
120        CC=gcc
121        TARGET_CC=~/.buildman-toolchains/gcc-9.2.0-nolibc/arm-linux-gnueabi/bin/arm-linux-gnueabi-gcc
122        TARGET_OBJCOPY=~/.buildman-toolchains/gcc-9.2.0-nolibc/arm-linux-gnueabi/bin/arm-linux-gnueabi-objcopy
123        TARGET_STRIP=~/.buildman-toolchains/gcc-9.2.0-nolibc/arm-linux-gnueabi/bin/arm-linux-gnueabi-strip
124        TARGET_NM=~/.buildman-toolchains/gcc-9.2.0-nolibc/arm-linux-gnueabi/bin/arm-linux-gnueabi-nm
125        TARGET_RANLIB=~/.buildman-toolchains/gcc-9.2.0-nolibc/arm-linux-gnueabi/bin/arm-linux-gnueabi-ranlib &&
126        make -j4 &&
127        ./grub-mkimage -O arm-efi -o ~/grub_arm.efi --prefix= -d
128        grub-core cat chain configfile echo efinet ext2 fat halt help linux
129        lsefisystab loadenv lvm minicmd normal part_msdos part_gpt reboot
130        search search_fs_file search_fs_uuid search_label serial sleep test
131        true &&
132        popd;
133     fi
134   - if [[ "${QEMU_TARGET}" == "aarch64-softmmu" ]]; then
135        git clone git://git.savannah.gnu.org/grub.git /tmp/grub &&
136        pushd /tmp/grub &&
137        git checkout grub-2.04 &&
138        ./bootstrap &&
139        ./configure --target=aarch64 --with-platform=efi
140        CC=gcc
141        TARGET_CC=~/.buildman-toolchains/gcc-9.2.0-nolibc/aarch64-linux/bin/aarch64-linux-gcc
142        TARGET_OBJCOPY=~/.buildman-toolchains/gcc-9.2.0-nolibc/aarch64-linux/bin/aarch64-linux-objcopy
143        TARGET_STRIP=~/.buildman-toolchains/gcc-9.2.0-nolibc/aarch64-linux/bin/aarch64-linux-strip
144        TARGET_NM=~/.buildman-toolchains/gcc-9.2.0-nolibc/aarch64-linux/bin/aarch64-linux-nm
145        TARGET_RANLIB=~/.buildman-toolchains/gcc-9.2.0-nolibc/aarch64-linux/bin/aarch64-linux-ranlib &&
146        make -j4 &&
147        ./grub-mkimage -O arm64-efi -o ~/grub_arm64.efi --prefix= -d
148        grub-core cat chain configfile echo efinet ext2 fat halt help linux
149        lsefisystab loadenv lvm minicmd normal part_msdos part_gpt reboot
150        search search_fs_file search_fs_uuid search_label serial sleep test
151        true &&
152        popd;
153     fi
154   - if [[ "${QEMU_TARGET}" == "riscv32-softmmu" ]]; then
155        git clone git://git.savannah.gnu.org/grub.git /tmp/grub &&
156        pushd /tmp/grub &&
157        git checkout grub-2.04 &&
158        ./bootstrap &&
159        ./configure --target=riscv32 --with-platform=efi
160        CC=gcc
161        TARGET_CC=~/.buildman-toolchains/gcc-9.2.0-nolibc/riscv32-linux/bin/riscv32-linux-gcc
162        TARGET_OBJCOPY=~/.buildman-toolchains/gcc-9.2.0-nolibc/riscv32-linux/bin/riscv32-linux-objcopy
163        TARGET_STRIP=~/.buildman-toolchains/gcc-9.2.0-nolibc/riscv32-linux/bin/riscv32-linux-strip
164        TARGET_NM=~/.buildman-toolchains/gcc-9.2.0-nolibc/riscv32-linux/bin/riscv32-linux-nm
165        TARGET_RANLIB=~/.buildman-toolchains/gcc-9.2.0-nolibc/riscv32-linux/bin/riscv32-linux-ranlib &&
166        make -j4 &&
167        ./grub-mkimage -O riscv32-efi -o ~/grub_riscv32.efi --prefix= -d
168        grub-core cat chain configfile echo efinet ext2 fat halt help linux
169        lsefisystab loadenv lvm minicmd normal part_msdos part_gpt reboot
170        search search_fs_file search_fs_uuid search_label serial sleep test
171        true &&
172        popd;
173     fi
174   - if [[ "${QEMU_TARGET}" == "riscv64-softmmu" ]]; then
175        git clone git://git.savannah.gnu.org/grub.git /tmp/grub &&
176        pushd /tmp/grub &&
177        git checkout grub-2.04 &&
178        ./bootstrap &&
179        ./configure --target=riscv64 --with-platform=efi
180        CC=gcc
181        TARGET_CC=~/.buildman-toolchains/gcc-9.2.0-nolibc/riscv64-linux/bin/riscv64-linux-gcc
182        TARGET_OBJCOPY=~/.buildman-toolchains/gcc-9.2.0-nolibc/riscv64-linux/bin/riscv64-linux-objcopy
183        TARGET_STRIP=~/.buildman-toolchains/gcc-9.2.0-nolibc/riscv64-linux/bin/riscv64-linux-strip
184        TARGET_NM=~/.buildman-toolchains/gcc-9.2.0-nolibc/riscv64-linux/bin/riscv64-linux-nm
185        TARGET_RANLIB=~/.buildman-toolchains/gcc-9.2.0-nolibc/riscv64-linux/bin/riscv64-linux-ranlib &&
186        make -j4 &&
187        ./grub-mkimage -O riscv64-efi -o ~/grub_riscv64.efi --prefix= -d
188        grub-core cat chain configfile echo efinet ext2 fat halt help linux
189        lsefisystab loadenv lvm minicmd normal part_msdos part_gpt reboot
190        search search_fs_file search_fs_uuid search_label serial sleep test
191        true &&
192        popd;
193     fi
194   - if [[ "${TEST_PY_BD}" == "qemu-riscv32_spl" ]]; then
195        wget -O - https://github.com/riscv/opensbi/releases/download/v0.6/opensbi-0.6-rv32-bin.tar.xz | tar -C /tmp -xJ;
196        export OPENSBI=/tmp/opensbi-0.6-rv32-bin/platform/qemu/virt/firmware/fw_dynamic.bin;
197     fi
198   - if [[ "${TEST_PY_BD}" == "qemu-riscv64_spl" ]]; then
199        wget -O - https://github.com/riscv/opensbi/releases/download/v0.6/opensbi-0.6-rv64-bin.tar.xz | tar -C /tmp -xJ;
200        export OPENSBI=/tmp/opensbi-0.6-rv64-bin/platform/qemu/virt/firmware/fw_dynamic.bin;
201     fi
202
203 script:
204  # Comments must be outside the command strings below, or the Travis parser
205  # will get confused.
206  #
207  # From buildman, exit code 129 means warnings only.  If we've been asked to
208  # use clang only do one configuration.
209  - if [[ "${BUILDMAN}" != "" ]]; then
210      ret=0;
211      tools/buildman/buildman -P -E ${BUILDMAN} ${OVERRIDE}|| ret=$?;
212      if [[ $ret -ne 0 && $ret -ne 129 ]]; then
213        tools/buildman/buildman -sdeP ${BUILDMAN};
214        exit $ret;
215      fi;
216    fi
217  # "not a_test_which_does_not_exist" is a dummy -k parameter which will
218  # never prevent any test from running. That way, we can always pass
219  # "-k something" even when $TEST_PY_TEST_SPEC doesnt need a custom
220  # value.
221  - export UBOOT_TRAVIS_BUILD_DIR=`cd .. && pwd`/.bm-work/${TEST_PY_BD};
222    cp ~/grub_x86.efi $UBOOT_TRAVIS_BUILD_DIR/;
223    cp ~/grub_x64.efi $UBOOT_TRAVIS_BUILD_DIR/;
224    if [[ -e ~/grub_arm.efi ]]; then
225      cp ~/grub_arm.efi $UBOOT_TRAVIS_BUILD_DIR/;
226    fi;
227    if [[ -e ~/grub_arm64.efi ]]; then
228      cp ~/grub_arm64.efi $UBOOT_TRAVIS_BUILD_DIR/;
229    fi;
230    if [[ -e ~/grub_riscv32.efi ]]; then
231      cp ~/grub_riscv32.efi $UBOOT_TRAVIS_BUILD_DIR/;
232    fi;
233    if [[ -e ~/grub_riscv64.efi ]]; then
234      cp ~/grub_riscv64.efi $UBOOT_TRAVIS_BUILD_DIR/;
235    fi;
236    if [[ "${TEST_PY_BD}" != "" ]]; then
237      virtualenv -p /usr/bin/python3 /tmp/venv;
238      . /tmp/venv/bin/activate;
239      pip install -r test/py/requirements.txt;
240      ./test/py/test.py --bd ${TEST_PY_BD} ${TEST_PY_ID}
241        -k "${TEST_PY_TEST_SPEC:-not a_test_which_does_not_exist}"
242        --build-dir "$UBOOT_TRAVIS_BUILD_DIR";
243      ret=$?;
244      if [[ $ret -ne 0 ]]; then
245        exit $ret;
246      fi;
247      if [[ -n "${TEST_PY_TOOLS}" ]]; then
248        export PYTHONPATH="${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc/pylibfdt";
249        export PATH="${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc:${PATH}";
250        ./tools/binman/binman --toolpath ${UBOOT_TRAVIS_BUILD_DIR}/tools test &&
251        ./tools/patman/patman --test &&
252        ./tools/buildman/buildman -t &&
253        ./tools/dtoc/dtoc -t &&
254        make testconfig;
255      fi;
256    fi
257
258 matrix:
259   include:
260   # we need to build by vendor due to 50min time limit for builds
261   # each env setting here is a dedicated build
262     - name: "buildman arc"
263       env:
264         - BUILDMAN="arc"
265           TOOLCHAIN="arc"
266     - name: "buildman arm11 arm7 arm920t arm946es"
267       env:
268         - BUILDMAN="arm11 arm7 arm920t arm946es"
269     - name: "buildman arm926ejs (non-NXP,siemens,at91,kirkwood,spear)"
270       env:
271         - JOB="arm926ejs"
272           BUILDMAN="arm926ejs -x freescale,siemens,at91,kirkwood,spear,omap"
273     - name: "buildman at91 (non arm v7)"
274       env:
275         - BUILDMAN="at91 -x armv7"
276     - name: "buildman at91 (non arm926ejs)"
277       env:
278         - BUILDMAN="at91 -x arm926ejs"
279     - name: "buildman boundary engicam toradex"
280       env:
281         - BUILDMAN="boundary engicam toradex"
282     - name: "buildman ARM bcm"
283       env:
284         - BUILDMAN="bcm -x mips"
285     - name: "buildman NXP ARM32 (catch-all)"
286       env:
287         - BUILDMAN="freescale -x powerpc,m68k,aarch64,ls101,ls102,ls104,ls108,ls20,lx216"
288     - name: "buildman NXP LS101x"
289       env:
290         - BUILDMAN="freescale&ls101"
291     - name: "buildman NXP LS102x"
292       env:
293         - BUILDMAN="freescale&ls102"
294     - name: "buildman NXP LS104x"
295       env:
296         - BUILDMAN="freescale&ls104"
297     - name: "buildman NXP LS108x"
298       env:
299         - BUILDMAN="freescale&ls108"
300     - name: "buildman NXP LS20xx"
301       env:
302         - BUILDMAN="freescale&ls20"
303     - name: "buildman NXP LX216x"
304       env:
305         - BUILDMAN="freescale&lx216"
306     - name: "buildman i.MX6 tqc"
307       env:
308         - BUILDMAN="mx6&tqc"
309     - name: "buildman i.MX6 (catch-all)"
310       env:
311         - BUILDMAN="mx6 -x boundary,engicam,freescale,technexion,toradex,tqc"
312     - name: "buildman i.MX (non-i.MX6 catch-all)"
313       env:
314         - BUILDMAN="mx -x freescale,mx6,toradex,technexion"
315     - name: "buildman keystone 2/3"
316       env:
317         - BUILDMAN="k2 k3"
318     - name: "buildman samsung socfpga"
319       env:
320         - BUILDMAN="samsung socfpga"
321     - name: "buildman spear"
322       env:
323         - BUILDMAN="spear"
324     - name: "buildman sun4i"
325       env:
326         - BUILDMAN="sun4i"
327     - name: "buildman sun5i"
328       env:
329         - BUILDMAN="sun5i"
330     - name: "buildman sun6i"
331       env:
332         - BUILDMAN="sun6i"
333     - name: "buildman sun7i"
334       env:
335         - BUILDMAN="sun7i"
336     - name: "buildman 64bit sun8i"
337       env:
338         - BUILDMAN="sun8i&aarch64 -x orangepi"
339     - name: "buildman 32bit sun8i"
340       env:
341         - BUILDMAN="sun8i&armv7 -x orangepi"
342     - name: "buildman sun9i"
343       env:
344         - BUILDMAN="sun9i"
345     - name: "buildman sun50i"
346       env:
347         - BUILDMAN="sun50i -x orangepi"
348     - name: "buildman catch-all ARM"
349       env:
350         - 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"
351     - name: "buildman sandbox x86"
352       env:
353         - BUILDMAN="sandbox x86"
354           TOOLCHAIN="i386"
355     - name: "buildman technexion"
356       env:
357         - BUILDMAN="technexion"
358     - name: "buildman kirkwood"
359       env:
360         - BUILDMAN="kirkwood"
361     - name: "buildman mvebu"
362       env:
363         - BUILDMAN="mvebu"
364     - name: "buildman m68k"
365       env:
366         - BUILDMAN="m68k"
367           TOOLCHAIN="m68k"
368     - name: "buildman microblaze"
369       env:
370         - BUILDMAN="microblaze"
371           TOOLCHAIN="microblaze"
372     - name: "buildman mips"
373       env:
374         - BUILDMAN="mips"
375           TOOLCHAIN="mips"
376     - name: "buildman non-Freescale PowerPC"
377       env:
378         - BUILDMAN="powerpc -x freescale"
379           TOOLCHAIN="powerpc"
380     - name: "buildman mpc85xx&freescale (excluding many)"
381       env:
382         - BUILDMAN="mpc85xx&freescale -x t208xrdb -x t4qds -x t102* -x p1_p2_rdb_pc -x p1010rdb -x corenet_ds -x b4860qds -x bsc91*"
383           TOOLCHAIN="powerpc"
384     - name: "buildman t208xrdb corenet_ds"
385       env:
386         - BUILDMAN="t208xrdb corenet_ds"
387           TOOLCHAIN="powerpc"
388     - name: "buildman Freescale PowerPC"
389       env:
390         - BUILDMAN="t4qds b4860qds mpc83xx&freescale mpc86xx&freescale"
391           TOOLCHAIN="powerpc"
392     - name: "buildman t102*"
393       env:
394         - BUILDMAN="t102*"
395           TOOLCHAIN="powerpc"
396     - name: "buildman p1_p2_rdb_pc"
397       env:
398         - BUILDMAN="p1_p2_rdb_pc"
399           TOOLCHAIN="powerpc"
400     - name: "buildman p1010rdb bsc91"
401       env:
402         - BUILDMAN="p1010rdb bsc91"
403           TOOLCHAIN="powerpc"
404     - name: "buildman siemens"
405       env:
406         - BUILDMAN="siemens"
407     - name: "buildman tegra"
408       env:
409         - BUILDMAN="tegra -x toradex"
410     - name: "buildman am33xx (no siemens)"
411       env:
412         - BUILDMAN="am33xx -x siemens"
413     - name: "buildman omap"
414       env:
415         - BUILDMAN="omap"
416     - name: "buildman orangepi"
417       env:
418         - BUILDMAN="orangepi"
419     - name: "buildman uniphier"
420       env:
421         - BUILDMAN="uniphier"
422     - name: "buildman catch-all AArch64"
423       env:
424         - BUILDMAN="aarch64 -x bcm,k3,tegra,ls1,ls2,lx216,mvebu,uniphier,sunxi,samsung,socfpga,rk,versal,zynq"
425     - name: "buildman rockchip"
426       env:
427         - BUILDMAN="rk -x orangepi"
428     - name: "buildman sh"
429       env:
430         - BUILDMAN="sh -x arm"
431           TOOLCHAIN="sh"
432     - name: "buildman Zynq* (ARMv7)"
433       env:
434         - BUILDMAN="zynq&armv7"
435     - name: "buildman ZynqMP and Versal"
436       env:
437         - BUILDMAN="versal|zynqmp&aarch64"
438     - name: "buildman xtensa"
439       env:
440         - BUILDMAN="xtensa"
441           TOOLCHAIN="xtensa-dc233c-elf"
442     - name: "buildman riscv"
443       env:
444         - BUILDMAN="riscv"
445           TOOLCHAIN="riscv"
446     - name: "buildman nds32"
447       env:
448         - BUILDMAN="nds32"
449           TOOLCHAIN="nds32"
450
451     # QA jobs for code analytics
452     # static code analysis with cppcheck (we can add --enable=all later)
453     - name: "cppcheck"
454       script:
455         - cppcheck --force --quiet --inline-suppr .
456     # build HTML documentation
457     - name: "htmldocs"
458       script:
459         - make htmldocs
460     # search for TODO within source tree
461     - name: "grep TODO"
462       script:
463         - grep -r TODO .
464     # search for FIXME within source tree
465     - name: "grep FIXME HACK"
466       script:
467         - grep -r FIXME .
468     # search for HACK within source tree and ignore HACKKIT board
469       script:
470         - grep -r HACK . | grep -v HACKKIT
471     # some statistics about the code base
472     - name: "sloccount"
473       script:
474         - sloccount .
475     # ensure all configs have MAINTAINERS entries
476     - name: "Check for configs without MAINTAINERS entry"
477       script:
478         - if [ `./tools/genboardscfg.py -f 2>&1 | wc -l` -ne 0 ]; then exit 1; fi
479     # Ensure host tools build
480     - name: "Build tools-only"
481       script:
482         - make tools-only_config tools-only -j$(nproc)
483     # Ensure env tools build
484     - name: "Build envtools"
485       script:
486         - make tools-only_config envtools -j$(nproc)
487
488     # test/py
489     - name: "test/py sandbox"
490       env:
491         - TEST_PY_BD="sandbox"
492           BUILDMAN="^sandbox$"
493           TOOLCHAIN="i386"
494     - name: "test/py sandbox with clang"
495       env:
496         - TEST_PY_BD="sandbox"
497           BUILDMAN="^sandbox$"
498           OVERRIDE="-O clang-7"
499     - name: "test/py sandbox_spl"
500       env:
501         - TEST_PY_BD="sandbox_spl"
502           TEST_PY_TEST_SPEC="test_ofplatdata"
503           BUILDMAN="^sandbox$"
504           TOOLCHAIN="i386"
505           TEST_PY_TOOLS="yes"
506     - name: "test/py sandbox_flattree"
507       env:
508         - TEST_PY_BD="sandbox_flattree"
509           BUILDMAN="^sandbox_flattree$"
510           TOOLCHAIN="i386"
511     - name: "test/py evb-ast2500"
512       env:
513         - TEST_PY_BD="evb-ast2500"
514           TEST_PY_ID="--id qemu"
515           QEMU_TARGET="arm-softmmu"
516           BUILDMAN="^evb-ast2500$"
517     - name: "test/py vexpress_ca15_tc2"
518       env:
519         - TEST_PY_BD="vexpress_ca15_tc2"
520           TEST_PY_ID="--id qemu"
521           QEMU_TARGET="arm-softmmu"
522           BUILDMAN="^vexpress_ca15_tc2$"
523     - name: "test/py vexpress_ca9x4"
524       env:
525         - TEST_PY_BD="vexpress_ca9x4"
526           TEST_PY_ID="--id qemu"
527           QEMU_TARGET="arm-softmmu"
528           BUILDMAN="^vexpress_ca9x4$"
529     - name: "test/py integratorcp_cm926ejs"
530       env:
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           BUILDMAN="^integratorcp_cm926ejs$"
536     - name: "test/py qemu_arm"
537       env:
538         - TEST_PY_BD="qemu_arm"
539           TEST_PY_TEST_SPEC="not sleep"
540           QEMU_TARGET="arm-softmmu"
541           BUILDMAN="^qemu_arm$"
542     - name: "test/py qemu_arm64"
543       env:
544         - TEST_PY_BD="qemu_arm64"
545           TEST_PY_TEST_SPEC="not sleep"
546           QEMU_TARGET="aarch64-softmmu"
547           BUILDMAN="^qemu_arm64$"
548     - name: "test/py qemu_mips"
549       env:
550         - TEST_PY_BD="qemu_mips"
551           TEST_PY_TEST_SPEC="not sleep"
552           QEMU_TARGET="mips-softmmu"
553           BUILDMAN="^qemu_mips$"
554           TOOLCHAIN="mips"
555     - name: "test/py qemu_mipsel"
556       env:
557         - TEST_PY_BD="qemu_mipsel"
558           TEST_PY_TEST_SPEC="not sleep"
559           QEMU_TARGET="mipsel-softmmu"
560           BUILDMAN="^qemu_mipsel$"
561           TOOLCHAIN="mips"
562     - name: "test/py qemu_mips64"
563       env:
564         - TEST_PY_BD="qemu_mips64"
565           TEST_PY_TEST_SPEC="not sleep"
566           QEMU_TARGET="mips64-softmmu"
567           BUILDMAN="^qemu_mips64$"
568           TOOLCHAIN="mips"
569     - name: "test/py qemu_mips64el"
570       env:
571         - TEST_PY_BD="qemu_mips64el"
572           TEST_PY_TEST_SPEC="not sleep"
573           QEMU_TARGET="mips64el-softmmu"
574           BUILDMAN="^qemu_mips64el$"
575           TOOLCHAIN="mips"
576     - name: "test/py qemu-ppce500"
577       env:
578         - TEST_PY_BD="qemu-ppce500"
579           TEST_PY_TEST_SPEC="not sleep"
580           QEMU_TARGET="ppc-softmmu"
581           BUILDMAN="^qemu-ppce500$"
582           TOOLCHAIN="powerpc"
583     - name: "test/py qemu-riscv32"
584       env:
585         - TEST_PY_BD="qemu-riscv32"
586           TEST_PY_TEST_SPEC="not sleep"
587           QEMU_TARGET="riscv32-softmmu"
588           BUILDMAN="^qemu-riscv32$"
589           TOOLCHAIN="riscv"
590     - name: "test/py qemu-riscv64"
591       env:
592         - TEST_PY_BD="qemu-riscv64"
593           TEST_PY_TEST_SPEC="not sleep"
594           QEMU_TARGET="riscv64-softmmu"
595           BUILDMAN="^qemu-riscv64$"
596           TOOLCHAIN="riscv"
597     - name: "test/py qemu-riscv32_spl"
598       env:
599         - TEST_PY_BD="qemu-riscv32_spl"
600           TEST_PY_TEST_SPEC="not sleep"
601           QEMU_TARGET="riscv32-softmmu"
602           BUILDMAN="^qemu-riscv32_spl$"
603           TOOLCHAIN="riscv"
604     - name: "test/py qemu-riscv64_spl"
605       env:
606         - TEST_PY_BD="qemu-riscv64_spl"
607           TEST_PY_TEST_SPEC="not sleep"
608           QEMU_TARGET="riscv64-softmmu"
609           BUILDMAN="^qemu-riscv64_spl$"
610           TOOLCHAIN="riscv"
611     - name: "test/py qemu-x86"
612       env:
613         - TEST_PY_BD="qemu-x86"
614           TEST_PY_TEST_SPEC="not sleep"
615           QEMU_TARGET="i386-softmmu"
616           BUILDMAN="^qemu-x86$"
617           TOOLCHAIN="i386"
618           BUILD_ROM="yes"
619     - name: "test/py qemu-x86_64"
620       env:
621         - TEST_PY_BD="qemu-x86_64"
622           TEST_PY_TEST_SPEC="not sleep"
623           QEMU_TARGET="x86_64-softmmu"
624           BUILDMAN="^qemu-x86_64$"
625           TOOLCHAIN="i386"
626           BUILD_ROM="yes"
627     - name: "test/py xilinx_zynq_virt"
628       env:
629         - TEST_PY_BD="xilinx_zynq_virt"
630           TEST_PY_TEST_SPEC="not sleep"
631           QEMU_TARGET="arm-softmmu"
632           TEST_PY_ID="--id qemu"
633           BUILDMAN="^xilinx_zynq_virt$"
634     - name: "test/py xilinx_versal_virt"
635       env:
636         - TEST_PY_BD="xilinx_versal_virt"
637           TEST_PY_TEST_SPEC="not sleep"
638           QEMU_TARGET="aarch64-softmmu"
639           TEST_PY_ID="--id qemu"
640           BUILDMAN="^xilinx_versal_virt$"
641     - name: "test/py xtfpga"
642       env:
643         - TEST_PY_BD="xtfpga"
644           TEST_PY_TEST_SPEC="not sleep"
645           QEMU_TARGET="xtensa-softmmu"
646           TEST_PY_ID="--id qemu"
647           BUILDMAN="^xtfpga$"
648           TOOLCHAIN="xtensa-dc233c-elf"
649
650 # TODO make it perfect ;-r