travis/gitlab/azure: Use --board buildman flag with test.py
[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  # Build a selection of boards if TEST_PY_BD is empty
210  - if [[ "${BUILDMAN}" != "" ]] && [[ "${TEST_PY_BD}" == "" ]]; then
211      ret=0;
212      tools/buildman/buildman -P -E ${BUILDMAN} ${OVERRIDE}|| ret=$?;
213      if [[ $ret -ne 0 && $ret -ne 129 ]]; then
214        tools/buildman/buildman -sdeP ${BUILDMAN};
215        exit $ret;
216      fi;
217    fi
218  # "not a_test_which_does_not_exist" is a dummy -k parameter which will
219  # never prevent any test from running. That way, we can always pass
220  # "-k something" even when $TEST_PY_TEST_SPEC doesnt need a custom
221  # value.
222  # Build just the one board needed for testing, if TEST_PY_BD is non-empty
223  - if [[ "${TEST_PY_BD}" != "" ]]; then
224      export UBOOT_TRAVIS_BUILD_DIR=`cd .. && pwd`/${TEST_PY_BD};
225      cp ~/grub_x86.efi $UBOOT_TRAVIS_BUILD_DIR/;
226      cp ~/grub_x64.efi $UBOOT_TRAVIS_BUILD_DIR/;
227      if [[ -e ~/grub_arm.efi ]]; then
228        cp ~/grub_arm.efi $UBOOT_TRAVIS_BUILD_DIR/;
229      fi;
230      if [[ -e ~/grub_arm64.efi ]]; then
231        cp ~/grub_arm64.efi $UBOOT_TRAVIS_BUILD_DIR/;
232      fi;
233      if [[ -e ~/grub_riscv32.efi ]]; then
234        cp ~/grub_riscv32.efi $UBOOT_TRAVIS_BUILD_DIR/;
235      fi;
236      if [[ -e ~/grub_riscv64.efi ]]; then
237        cp ~/grub_riscv64.efi $UBOOT_TRAVIS_BUILD_DIR/;
238      fi;
239      ret=0;
240      tools/buildman/buildman -o ${UBOOT_TRAVIS_BUILD_DIR} -w -E
241        --board ${BUILDMAN} ${OVERRIDE}|| ret=$?;
242      if [[ $ret -ne 0 && $ret -ne 129 ]]; then
243        tools/buildman/buildman -sde -o ${UBOOT_TRAVIS_BUILD_DIR} -w
244          --board ${BUILDMAN};
245        exit $ret;
246      fi;
247      virtualenv -p /usr/bin/python3 /tmp/venv;
248      . /tmp/venv/bin/activate;
249      pip install -r test/py/requirements.txt;
250      ./test/py/test.py --bd ${TEST_PY_BD} ${TEST_PY_ID}
251        -k "${TEST_PY_TEST_SPEC:-not a_test_which_does_not_exist}"
252        --build-dir "$UBOOT_TRAVIS_BUILD_DIR";
253      ret=$?;
254      if [[ $ret -ne 0 ]]; then
255        exit $ret;
256      fi;
257      if [[ -n "${TEST_PY_TOOLS}" ]]; then
258        export PYTHONPATH="${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc/pylibfdt";
259        export PATH="${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc:${PATH}";
260        ./tools/binman/binman --toolpath ${UBOOT_TRAVIS_BUILD_DIR}/tools test &&
261        ./tools/patman/patman --test &&
262        ./tools/buildman/buildman -t &&
263        ./tools/dtoc/dtoc -t &&
264        make testconfig;
265      fi;
266    fi
267
268 matrix:
269   include:
270   # we need to build by vendor due to 50min time limit for builds
271   # each env setting here is a dedicated build
272     - name: "buildman arc"
273       env:
274         - BUILDMAN="arc"
275           TOOLCHAIN="arc"
276     - name: "buildman arm11 arm7 arm920t arm946es"
277       env:
278         - BUILDMAN="arm11 arm7 arm920t arm946es"
279     - name: "buildman arm926ejs (non-NXP,siemens,at91,kirkwood,spear)"
280       env:
281         - JOB="arm926ejs"
282           BUILDMAN="arm926ejs -x freescale,siemens,at91,kirkwood,spear,omap"
283     - name: "buildman at91 (non arm v7)"
284       env:
285         - BUILDMAN="at91 -x armv7"
286     - name: "buildman at91 (non arm926ejs)"
287       env:
288         - BUILDMAN="at91 -x arm926ejs"
289     - name: "buildman boundary engicam toradex"
290       env:
291         - BUILDMAN="boundary engicam toradex"
292     - name: "buildman ARM bcm"
293       env:
294         - BUILDMAN="bcm -x mips"
295     - name: "buildman NXP ARM32 (catch-all)"
296       env:
297         - BUILDMAN="freescale -x powerpc,m68k,aarch64,ls101,ls102,ls104,ls108,ls20,lx216"
298     - name: "buildman NXP LS101x"
299       env:
300         - BUILDMAN="freescale&ls101"
301     - name: "buildman NXP LS102x"
302       env:
303         - BUILDMAN="freescale&ls102"
304     - name: "buildman NXP LS104x"
305       env:
306         - BUILDMAN="freescale&ls104"
307     - name: "buildman NXP LS108x"
308       env:
309         - BUILDMAN="freescale&ls108"
310     - name: "buildman NXP LS20xx"
311       env:
312         - BUILDMAN="freescale&ls20"
313     - name: "buildman NXP LX216x"
314       env:
315         - BUILDMAN="freescale&lx216"
316     - name: "buildman i.MX6 tqc"
317       env:
318         - BUILDMAN="mx6&tqc"
319     - name: "buildman i.MX6 (catch-all)"
320       env:
321         - BUILDMAN="mx6 -x boundary,engicam,freescale,technexion,toradex,tqc"
322     - name: "buildman i.MX (non-i.MX6 catch-all)"
323       env:
324         - BUILDMAN="mx -x freescale,mx6,toradex,technexion"
325     - name: "buildman keystone 2/3"
326       env:
327         - BUILDMAN="k2 k3"
328     - name: "buildman samsung socfpga"
329       env:
330         - BUILDMAN="samsung socfpga"
331     - name: "buildman spear"
332       env:
333         - BUILDMAN="spear"
334     - name: "buildman sun4i"
335       env:
336         - BUILDMAN="sun4i"
337     - name: "buildman sun5i"
338       env:
339         - BUILDMAN="sun5i"
340     - name: "buildman sun6i"
341       env:
342         - BUILDMAN="sun6i"
343     - name: "buildman sun7i"
344       env:
345         - BUILDMAN="sun7i"
346     - name: "buildman 64bit sun8i"
347       env:
348         - BUILDMAN="sun8i&aarch64 -x orangepi"
349     - name: "buildman 32bit sun8i"
350       env:
351         - BUILDMAN="sun8i&armv7 -x orangepi"
352     - name: "buildman sun9i"
353       env:
354         - BUILDMAN="sun9i"
355     - name: "buildman sun50i"
356       env:
357         - BUILDMAN="sun50i -x orangepi"
358     - name: "buildman catch-all ARM"
359       env:
360         - 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"
361     - name: "buildman sandbox x86"
362       env:
363         - BUILDMAN="sandbox x86"
364           TOOLCHAIN="i386"
365     - name: "buildman technexion"
366       env:
367         - BUILDMAN="technexion"
368     - name: "buildman kirkwood"
369       env:
370         - BUILDMAN="kirkwood"
371     - name: "buildman mvebu"
372       env:
373         - BUILDMAN="mvebu"
374     - name: "buildman m68k"
375       env:
376         - BUILDMAN="m68k"
377           TOOLCHAIN="m68k"
378     - name: "buildman microblaze"
379       env:
380         - BUILDMAN="microblaze"
381           TOOLCHAIN="microblaze"
382     - name: "buildman mips"
383       env:
384         - BUILDMAN="mips"
385           TOOLCHAIN="mips"
386     - name: "buildman non-Freescale PowerPC"
387       env:
388         - BUILDMAN="powerpc -x freescale"
389           TOOLCHAIN="powerpc"
390     - name: "buildman mpc85xx&freescale (excluding many)"
391       env:
392         - BUILDMAN="mpc85xx&freescale -x t208xrdb -x t4qds -x t102* -x p1_p2_rdb_pc -x p1010rdb -x corenet_ds -x b4860qds -x bsc91*"
393           TOOLCHAIN="powerpc"
394     - name: "buildman t208xrdb corenet_ds"
395       env:
396         - BUILDMAN="t208xrdb corenet_ds"
397           TOOLCHAIN="powerpc"
398     - name: "buildman Freescale PowerPC"
399       env:
400         - BUILDMAN="t4qds b4860qds mpc83xx&freescale mpc86xx&freescale"
401           TOOLCHAIN="powerpc"
402     - name: "buildman t102*"
403       env:
404         - BUILDMAN="t102*"
405           TOOLCHAIN="powerpc"
406     - name: "buildman p1_p2_rdb_pc"
407       env:
408         - BUILDMAN="p1_p2_rdb_pc"
409           TOOLCHAIN="powerpc"
410     - name: "buildman p1010rdb bsc91"
411       env:
412         - BUILDMAN="p1010rdb bsc91"
413           TOOLCHAIN="powerpc"
414     - name: "buildman siemens"
415       env:
416         - BUILDMAN="siemens"
417     - name: "buildman tegra"
418       env:
419         - BUILDMAN="tegra -x toradex"
420     - name: "buildman am33xx (no siemens)"
421       env:
422         - BUILDMAN="am33xx -x siemens"
423     - name: "buildman omap"
424       env:
425         - BUILDMAN="omap"
426     - name: "buildman orangepi"
427       env:
428         - BUILDMAN="orangepi"
429     - name: "buildman uniphier"
430       env:
431         - BUILDMAN="uniphier"
432     - name: "buildman catch-all AArch64"
433       env:
434         - BUILDMAN="aarch64 -x bcm,k3,tegra,ls1,ls2,lx216,mvebu,uniphier,sunxi,samsung,socfpga,rk,versal,zynq"
435     - name: "buildman rockchip"
436       env:
437         - BUILDMAN="rk -x orangepi"
438     - name: "buildman sh"
439       env:
440         - BUILDMAN="sh -x arm"
441           TOOLCHAIN="sh"
442     - name: "buildman Zynq* (ARMv7)"
443       env:
444         - BUILDMAN="zynq&armv7"
445     - name: "buildman ZynqMP and Versal"
446       env:
447         - BUILDMAN="versal|zynqmp&aarch64"
448     - name: "buildman xtensa"
449       env:
450         - BUILDMAN="xtensa"
451           TOOLCHAIN="xtensa-dc233c-elf"
452     - name: "buildman riscv"
453       env:
454         - BUILDMAN="riscv"
455           TOOLCHAIN="riscv"
456     - name: "buildman nds32"
457       env:
458         - BUILDMAN="nds32"
459           TOOLCHAIN="nds32"
460
461     # QA jobs for code analytics
462     # static code analysis with cppcheck (we can add --enable=all later)
463     - name: "cppcheck"
464       script:
465         - cppcheck --force --quiet --inline-suppr .
466     # build HTML documentation
467     - name: "htmldocs"
468       script:
469         - make htmldocs
470     # search for TODO within source tree
471     - name: "grep TODO"
472       script:
473         - grep -r TODO .
474     # search for FIXME within source tree
475     - name: "grep FIXME HACK"
476       script:
477         - grep -r FIXME .
478     # search for HACK within source tree and ignore HACKKIT board
479       script:
480         - grep -r HACK . | grep -v HACKKIT
481     # some statistics about the code base
482     - name: "sloccount"
483       script:
484         - sloccount .
485     # ensure all configs have MAINTAINERS entries
486     - name: "Check for configs without MAINTAINERS entry"
487       script:
488         - if [ `./tools/genboardscfg.py -f 2>&1 | wc -l` -ne 0 ]; then exit 1; fi
489     # Ensure host tools build
490     - name: "Build tools-only"
491       script:
492         - make tools-only_config tools-only -j$(nproc)
493     # Ensure env tools build
494     - name: "Build envtools"
495       script:
496         - make tools-only_config envtools -j$(nproc)
497
498     # test/py
499     - name: "test/py sandbox"
500       env:
501         - TEST_PY_BD="sandbox"
502           BUILDMAN="sandbox"
503           TOOLCHAIN="i386"
504     - name: "test/py sandbox with clang"
505       env:
506         - TEST_PY_BD="sandbox"
507           BUILDMAN="sandbox"
508           OVERRIDE="-O clang-7"
509     - name: "test/py sandbox_spl"
510       env:
511         - TEST_PY_BD="sandbox_spl"
512           TEST_PY_TEST_SPEC="test_ofplatdata"
513           BUILDMAN="sandbox"
514           TOOLCHAIN="i386"
515           TEST_PY_TOOLS="yes"
516     - name: "test/py sandbox_flattree"
517       env:
518         - TEST_PY_BD="sandbox_flattree"
519           BUILDMAN="sandbox_flattree"
520           TOOLCHAIN="i386"
521     - name: "test/py evb-ast2500"
522       env:
523         - TEST_PY_BD="evb-ast2500"
524           TEST_PY_ID="--id qemu"
525           QEMU_TARGET="arm-softmmu"
526           BUILDMAN="evb-ast2500"
527     - name: "test/py vexpress_ca15_tc2"
528       env:
529         - TEST_PY_BD="vexpress_ca15_tc2"
530           TEST_PY_ID="--id qemu"
531           QEMU_TARGET="arm-softmmu"
532           BUILDMAN="vexpress_ca15_tc2"
533     - name: "test/py vexpress_ca9x4"
534       env:
535         - TEST_PY_BD="vexpress_ca9x4"
536           TEST_PY_ID="--id qemu"
537           QEMU_TARGET="arm-softmmu"
538           BUILDMAN="vexpress_ca9x4"
539     - name: "test/py integratorcp_cm926ejs"
540       env:
541         - TEST_PY_BD="integratorcp_cm926ejs"
542           TEST_PY_TEST_SPEC="not sleep"
543           TEST_PY_ID="--id qemu"
544           QEMU_TARGET="arm-softmmu"
545           BUILDMAN="integratorcp_cm926ejs"
546     - name: "test/py qemu_arm"
547       env:
548         - TEST_PY_BD="qemu_arm"
549           TEST_PY_TEST_SPEC="not sleep"
550           QEMU_TARGET="arm-softmmu"
551           BUILDMAN="qemu_arm"
552     - name: "test/py qemu_arm64"
553       env:
554         - TEST_PY_BD="qemu_arm64"
555           TEST_PY_TEST_SPEC="not sleep"
556           QEMU_TARGET="aarch64-softmmu"
557           BUILDMAN="qemu_arm64"
558     - name: "test/py qemu_mips"
559       env:
560         - TEST_PY_BD="qemu_mips"
561           TEST_PY_TEST_SPEC="not sleep"
562           QEMU_TARGET="mips-softmmu"
563           BUILDMAN="qemu_mips"
564           TOOLCHAIN="mips"
565     - name: "test/py qemu_mipsel"
566       env:
567         - TEST_PY_BD="qemu_mipsel"
568           TEST_PY_TEST_SPEC="not sleep"
569           QEMU_TARGET="mipsel-softmmu"
570           BUILDMAN="qemu_mipsel"
571           TOOLCHAIN="mips"
572     - name: "test/py qemu_mips64"
573       env:
574         - TEST_PY_BD="qemu_mips64"
575           TEST_PY_TEST_SPEC="not sleep"
576           QEMU_TARGET="mips64-softmmu"
577           BUILDMAN="qemu_mips64"
578           TOOLCHAIN="mips"
579     - name: "test/py qemu_mips64el"
580       env:
581         - TEST_PY_BD="qemu_mips64el"
582           TEST_PY_TEST_SPEC="not sleep"
583           QEMU_TARGET="mips64el-softmmu"
584           BUILDMAN="qemu_mips64el"
585           TOOLCHAIN="mips"
586     - name: "test/py qemu-ppce500"
587       env:
588         - TEST_PY_BD="qemu-ppce500"
589           TEST_PY_TEST_SPEC="not sleep"
590           QEMU_TARGET="ppc-softmmu"
591           BUILDMAN="qemu-ppce500"
592           TOOLCHAIN="powerpc"
593     - name: "test/py qemu-riscv32"
594       env:
595         - TEST_PY_BD="qemu-riscv32"
596           TEST_PY_TEST_SPEC="not sleep"
597           QEMU_TARGET="riscv32-softmmu"
598           BUILDMAN="qemu-riscv32"
599           TOOLCHAIN="riscv"
600     - name: "test/py qemu-riscv64"
601       env:
602         - TEST_PY_BD="qemu-riscv64"
603           TEST_PY_TEST_SPEC="not sleep"
604           QEMU_TARGET="riscv64-softmmu"
605           BUILDMAN="qemu-riscv64"
606           TOOLCHAIN="riscv"
607     - name: "test/py qemu-riscv32_spl"
608       env:
609         - TEST_PY_BD="qemu-riscv32_spl"
610           TEST_PY_TEST_SPEC="not sleep"
611           QEMU_TARGET="riscv32-softmmu"
612           BUILDMAN="qemu-riscv32_spl"
613           TOOLCHAIN="riscv"
614     - name: "test/py qemu-riscv64_spl"
615       env:
616         - TEST_PY_BD="qemu-riscv64_spl"
617           TEST_PY_TEST_SPEC="not sleep"
618           QEMU_TARGET="riscv64-softmmu"
619           BUILDMAN="qemu-riscv64_spl"
620           TOOLCHAIN="riscv"
621     - name: "test/py qemu-x86"
622       env:
623         - TEST_PY_BD="qemu-x86"
624           TEST_PY_TEST_SPEC="not sleep"
625           QEMU_TARGET="i386-softmmu"
626           BUILDMAN="qemu-x86"
627           TOOLCHAIN="i386"
628           BUILD_ROM="yes"
629     - name: "test/py qemu-x86_64"
630       env:
631         - TEST_PY_BD="qemu-x86_64"
632           TEST_PY_TEST_SPEC="not sleep"
633           QEMU_TARGET="x86_64-softmmu"
634           BUILDMAN="qemu-x86_64"
635           TOOLCHAIN="i386"
636           BUILD_ROM="yes"
637     - name: "test/py xilinx_zynq_virt"
638       env:
639         - TEST_PY_BD="xilinx_zynq_virt"
640           TEST_PY_TEST_SPEC="not sleep"
641           QEMU_TARGET="arm-softmmu"
642           TEST_PY_ID="--id qemu"
643           BUILDMAN="xilinx_zynq_virt"
644     - name: "test/py xilinx_versal_virt"
645       env:
646         - TEST_PY_BD="xilinx_versal_virt"
647           TEST_PY_TEST_SPEC="not sleep"
648           QEMU_TARGET="aarch64-softmmu"
649           TEST_PY_ID="--id qemu"
650           BUILDMAN="xilinx_versal_virt"
651     - name: "test/py xtfpga"
652       env:
653         - TEST_PY_BD="xtfpga"
654           TEST_PY_TEST_SPEC="not sleep"
655           QEMU_TARGET="xtensa-softmmu"
656           TEST_PY_ID="--id qemu"
657           BUILDMAN="xtfpga"
658           TOOLCHAIN="xtensa-dc233c-elf"
659
660 # TODO make it perfect ;-r