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