colibri_vf_defconfig: enable part cmd
[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     update: true
14     sources:
15     - sourceline: 'deb http://apt.llvm.org/bionic/ llvm-toolchain-bionic-10 main'
16       key_url: 'https://apt.llvm.org/llvm-snapshot.gpg.key'
17     packages:
18     - autopoint
19     - cppcheck
20     - sloccount
21     - sparse
22     - bc
23     - build-essential
24     - libsdl2-dev
25     - python
26     - python-pyelftools
27     - python3-sphinx
28     - python3-virtualenv
29     - python3-pip
30     - swig
31     - libpython-dev
32     - iasl
33     - grub-efi-ia32-bin
34     - grub-efi-amd64-bin
35     - rpm2cpio
36     - wget
37     - device-tree-compiler
38     - lzop
39     - liblz4-tool
40     - lzma-alone
41     - libisl15
42     - clang-10
43     - srecord
44     - graphviz
45     - coreutils
46     - util-linux
47     - dosfstools
48     - gdisk
49     - mount
50     - mtools
51     - openssl
52     - sbsigntool
53     - fakeroot
54     - mtd-utils
55
56 install:
57  # Clone uboot-test-hooks
58  - git clone --depth=1 git://github.com/swarren/uboot-test-hooks.git /tmp/uboot-test-hooks
59  - ln -s travis-ci /tmp/uboot-test-hooks/bin/`hostname`
60  - ln -s travis-ci /tmp/uboot-test-hooks/py/`hostname`
61  # prepare buildman environment
62  - echo -e "[toolchain]\nroot = /usr" > ~/.buildman
63  - echo -e "arc = /tmp/arc_gnu_2019.09_prebuilt_uclibc_le_archs_linux_install" >> ~/.buildman
64  - echo -e "\n[toolchain-alias]\nsh = sh2" >> ~/.buildman
65  - echo -e "x86 = i386" >> ~/.buildman;
66  - echo -e "riscv = riscv64" >> ~/.buildman;
67  - cat ~/.buildman
68  - grub-mkimage --prefix="" -o ~/grub_x86.efi -O i386-efi normal  echo lsefimmap lsefi lsefisystab efinet tftp minicmd
69  - grub-mkimage --prefix="" -o ~/grub_x64.efi -O x86_64-efi normal  echo lsefimmap lsefi lsefisystab efinet tftp minicmd
70  - 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
71  - 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
72
73 env:
74   global:
75     - PATH=/tmp/qemu-install/bin:/tmp/uboot-test-hooks/bin:/sbin:/usr/bin:/bin:/usr/local/bin
76     - PYTHONPATH=/tmp/uboot-test-hooks/py/travis-ci
77     - BUILD_DIR=build
78     - HOSTCC="cc"
79     - HOSTCXX="c++"
80     - QEMU_VERSION="v4.2.0"
81
82 before_script:
83   # install toolchains based on TOOLCHAIN} variable
84   - if [[ "${TOOLCHAIN}" == *m68k* ]]; then ./tools/buildman/buildman --fetch-arch m68k ; fi
85   - if [[ "${TOOLCHAIN}" == *microblaze* ]]; then ./tools/buildman/buildman --fetch-arch microblaze ; fi
86   - if [[ "${TOOLCHAIN}" == *mips* ]]; then ./tools/buildman/buildman --fetch-arch mips ; fi
87   - if [[ "${TOOLCHAIN}" == *sh* ]]; then ./tools/buildman/buildman --fetch-arch sh2 ; fi
88   - if [[ "${TOOLCHAIN}" == *i386* ]]; then
89       ./tools/buildman/buildman --fetch-arch i386;
90     fi
91   - if [[ "${TOOLCHAIN}" == arc ]]; then
92        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 &&
93        tar -C /tmp -xf arc_gnu_2019.09_prebuilt_uclibc_le_archs_linux_install.tar.gz;
94     fi
95   - if [[ "${TOOLCHAIN}" == "nds32" ]]; then
96        wget https://github.com/vincentzwc/prebuilt-nds32-toolchain/releases/download/20180521/nds32le-linux-glibc-v3-upstream.tar.gz &&
97        tar -C /tmp -xf nds32le-linux-glibc-v3-upstream.tar.gz &&
98        echo -e "\n[toolchain-prefix]\nnds32 = /tmp/nds32le-linux-glibc-v3-upstream/bin/nds32le-linux-" >> ~/.buildman;
99     fi
100   - if [[ "${TOOLCHAIN}" == *xtensa* ]]; then
101        wget https://github.com/foss-xtensa/toolchain/releases/download/2018.02/x86_64-2018.02-${TOOLCHAIN}.tar.gz &&
102        tar -C /tmp -xf x86_64-2018.02-${TOOLCHAIN}.tar.gz &&
103        echo -e "\n[toolchain-prefix]\nxtensa = /tmp/2018.02/${TOOLCHAIN}/bin/${TOOLCHAIN}-" >> ~/.buildman;
104     fi
105   # If TOOLCHAIN is unset, we're on some flavour of ARM.
106   - if [[ "${TOOLCHAIN}" == "" ]]; then
107        ./tools/buildman/buildman --fetch-arch arm &&
108        ./tools/buildman/buildman --fetch-arch aarch64;
109     fi
110   - if [[ "${TOOLCHAIN}" == "powerpc" ]]; then ./tools/buildman/buildman --fetch-arch powerpc; fi
111   - if [[ "${TOOLCHAIN}" == "riscv" ]]; then
112        ./tools/buildman/buildman --fetch-arch riscv32 &&
113        ./tools/buildman/buildman --fetch-arch riscv64;
114     fi
115   - if [[ "${QEMU_TARGET}" != "" ]]; then
116        git clone git://git.qemu.org/qemu.git /tmp/qemu;
117        pushd /tmp/qemu;
118        git submodule update --init dtc &&
119        git checkout ${QEMU_VERSION} &&
120        ./configure --prefix=/tmp/qemu-install --target-list=${QEMU_TARGET} &&
121        make -j4 all install;
122        popd;
123     fi
124
125   # Build GRUB UEFI targets
126   - if [[ "${QEMU_TARGET}" == "arm-softmmu" ]]; then
127        git clone git://git.savannah.gnu.org/grub.git /tmp/grub &&
128        pushd /tmp/grub &&
129        git checkout grub-2.04 &&
130        ./bootstrap &&
131        ./configure --target=arm --with-platform=efi
132        CC=gcc
133        TARGET_CC=~/.buildman-toolchains/gcc-9.2.0-nolibc/arm-linux-gnueabi/bin/arm-linux-gnueabi-gcc
134        TARGET_OBJCOPY=~/.buildman-toolchains/gcc-9.2.0-nolibc/arm-linux-gnueabi/bin/arm-linux-gnueabi-objcopy
135        TARGET_STRIP=~/.buildman-toolchains/gcc-9.2.0-nolibc/arm-linux-gnueabi/bin/arm-linux-gnueabi-strip
136        TARGET_NM=~/.buildman-toolchains/gcc-9.2.0-nolibc/arm-linux-gnueabi/bin/arm-linux-gnueabi-nm
137        TARGET_RANLIB=~/.buildman-toolchains/gcc-9.2.0-nolibc/arm-linux-gnueabi/bin/arm-linux-gnueabi-ranlib &&
138        make -j4 &&
139        ./grub-mkimage -O arm-efi -o ~/grub_arm.efi --prefix= -d
140        grub-core cat chain configfile echo efinet ext2 fat halt help linux
141        lsefisystab loadenv lvm minicmd normal part_msdos part_gpt reboot
142        search search_fs_file search_fs_uuid search_label serial sleep test
143        true &&
144        popd;
145     fi
146   - if [[ "${QEMU_TARGET}" == "aarch64-softmmu" ]]; then
147        git clone git://git.savannah.gnu.org/grub.git /tmp/grub &&
148        pushd /tmp/grub &&
149        git checkout grub-2.04 &&
150        ./bootstrap &&
151        ./configure --target=aarch64 --with-platform=efi
152        CC=gcc
153        TARGET_CC=~/.buildman-toolchains/gcc-9.2.0-nolibc/aarch64-linux/bin/aarch64-linux-gcc
154        TARGET_OBJCOPY=~/.buildman-toolchains/gcc-9.2.0-nolibc/aarch64-linux/bin/aarch64-linux-objcopy
155        TARGET_STRIP=~/.buildman-toolchains/gcc-9.2.0-nolibc/aarch64-linux/bin/aarch64-linux-strip
156        TARGET_NM=~/.buildman-toolchains/gcc-9.2.0-nolibc/aarch64-linux/bin/aarch64-linux-nm
157        TARGET_RANLIB=~/.buildman-toolchains/gcc-9.2.0-nolibc/aarch64-linux/bin/aarch64-linux-ranlib &&
158        make -j4 &&
159        ./grub-mkimage -O arm64-efi -o ~/grub_arm64.efi --prefix= -d
160        grub-core cat chain configfile echo efinet ext2 fat halt help linux
161        lsefisystab loadenv lvm minicmd normal part_msdos part_gpt reboot
162        search search_fs_file search_fs_uuid search_label serial sleep test
163        true &&
164        popd;
165     fi
166   - if [[ "${QEMU_TARGET}" == "riscv32-softmmu" ]]; then
167        git clone git://git.savannah.gnu.org/grub.git /tmp/grub &&
168        pushd /tmp/grub &&
169        git checkout grub-2.04 &&
170        ./bootstrap &&
171        ./configure --target=riscv32 --with-platform=efi
172        CC=gcc
173        TARGET_CC=~/.buildman-toolchains/gcc-9.2.0-nolibc/riscv32-linux/bin/riscv32-linux-gcc
174        TARGET_OBJCOPY=~/.buildman-toolchains/gcc-9.2.0-nolibc/riscv32-linux/bin/riscv32-linux-objcopy
175        TARGET_STRIP=~/.buildman-toolchains/gcc-9.2.0-nolibc/riscv32-linux/bin/riscv32-linux-strip
176        TARGET_NM=~/.buildman-toolchains/gcc-9.2.0-nolibc/riscv32-linux/bin/riscv32-linux-nm
177        TARGET_RANLIB=~/.buildman-toolchains/gcc-9.2.0-nolibc/riscv32-linux/bin/riscv32-linux-ranlib &&
178        make -j4 &&
179        ./grub-mkimage -O riscv32-efi -o ~/grub_riscv32.efi --prefix= -d
180        grub-core cat chain configfile echo efinet ext2 fat halt help linux
181        lsefisystab loadenv lvm minicmd normal part_msdos part_gpt reboot
182        search search_fs_file search_fs_uuid search_label serial sleep test
183        true &&
184        popd;
185     fi
186   - if [[ "${QEMU_TARGET}" == "riscv64-softmmu" ]]; then
187        git clone git://git.savannah.gnu.org/grub.git /tmp/grub &&
188        pushd /tmp/grub &&
189        git checkout grub-2.04 &&
190        ./bootstrap &&
191        ./configure --target=riscv64 --with-platform=efi
192        CC=gcc
193        TARGET_CC=~/.buildman-toolchains/gcc-9.2.0-nolibc/riscv64-linux/bin/riscv64-linux-gcc
194        TARGET_OBJCOPY=~/.buildman-toolchains/gcc-9.2.0-nolibc/riscv64-linux/bin/riscv64-linux-objcopy
195        TARGET_STRIP=~/.buildman-toolchains/gcc-9.2.0-nolibc/riscv64-linux/bin/riscv64-linux-strip
196        TARGET_NM=~/.buildman-toolchains/gcc-9.2.0-nolibc/riscv64-linux/bin/riscv64-linux-nm
197        TARGET_RANLIB=~/.buildman-toolchains/gcc-9.2.0-nolibc/riscv64-linux/bin/riscv64-linux-ranlib &&
198        make -j4 &&
199        ./grub-mkimage -O riscv64-efi -o ~/grub_riscv64.efi --prefix= -d
200        grub-core cat chain configfile echo efinet ext2 fat halt help linux
201        lsefisystab loadenv lvm minicmd normal part_msdos part_gpt reboot
202        search search_fs_file search_fs_uuid search_label serial sleep test
203        true &&
204        popd;
205     fi
206   - if [[ "${TEST_PY_BD}" == "qemu-riscv32_spl" ]]; then
207        wget -O - https://github.com/riscv/opensbi/releases/download/v0.6/opensbi-0.6-rv32-bin.tar.xz | tar -C /tmp -xJ;
208        export OPENSBI=/tmp/opensbi-0.6-rv32-bin/platform/qemu/virt/firmware/fw_dynamic.bin;
209     fi
210   - if [[ "${TEST_PY_BD}" == "qemu-riscv64_spl" ]]; then
211        wget -O - https://github.com/riscv/opensbi/releases/download/v0.6/opensbi-0.6-rv64-bin.tar.xz | tar -C /tmp -xJ;
212        export OPENSBI=/tmp/opensbi-0.6-rv64-bin/platform/qemu/virt/firmware/fw_dynamic.bin;
213     fi
214
215 script:
216  # Comments must be outside the command strings below, or the Travis parser
217  # will get confused.
218  #
219  # If we've been asked to use clang only do one configuration.
220  #
221  # Build a selection of boards if TEST_PY_BD is empty
222  - if [[ "${BUILDMAN}" != "" ]]; then
223      ret=0
224      tools/buildman/buildman -P -E -W ${BUILDMAN} ${OVERRIDE} || ret=$?;
225      if [[ $ret -ne 0 ]]; then
226        tools/buildman/buildman -seP ${BUILDMAN};
227        exit $ret;
228      fi;
229    fi
230  # Build just the one board needed for testing, if TEST_PY_BD is non-empty
231  # Note: "${var:+"-k $var"}" expands to "" if $var is empty, "-k $var" if not
232  - if [[ "${TEST_PY_BD}" != "" ]]; then
233      export UBOOT_TRAVIS_BUILD_DIR=`cd .. && pwd`/${TEST_PY_BD};
234      cp ~/grub_x86.efi $UBOOT_TRAVIS_BUILD_DIR/;
235      cp ~/grub_x64.efi $UBOOT_TRAVIS_BUILD_DIR/;
236      if [[ -e ~/grub_arm.efi ]]; then
237        cp ~/grub_arm.efi $UBOOT_TRAVIS_BUILD_DIR/;
238      fi;
239      if [[ -e ~/grub_arm64.efi ]]; then
240        cp ~/grub_arm64.efi $UBOOT_TRAVIS_BUILD_DIR/;
241      fi;
242      if [[ -e ~/grub_riscv32.efi ]]; then
243        cp ~/grub_riscv32.efi $UBOOT_TRAVIS_BUILD_DIR/;
244      fi;
245      if [[ -e ~/grub_riscv64.efi ]]; then
246        cp ~/grub_riscv64.efi $UBOOT_TRAVIS_BUILD_DIR/;
247      fi;
248      tools/buildman/buildman -o ${UBOOT_TRAVIS_BUILD_DIR} -w -E -W -e
249        --board ${TEST_PY_BD} ${OVERRIDE} || exit;
250      virtualenv -p /usr/bin/python3 /tmp/venv;
251      . /tmp/venv/bin/activate;
252      pip install -r test/py/requirements.txt;
253      ./test/py/test.py --bd ${TEST_PY_BD} ${TEST_PY_ID}
254        ${TEST_PY_TEST_SPEC:+"-k ${TEST_PY_TEST_SPEC}"}
255        --build-dir "$UBOOT_TRAVIS_BUILD_DIR" || exit;
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 -j$(nproc) --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     - name: "Run tests for Nokia RX-51 (aka N900)"
498       script:
499         - export PATH=~/.buildman-toolchains/gcc-9.2.0-nolibc/arm-linux-gnueabi/bin/:$PATH
500         - test/nokia_rx51_test.sh
501
502     # test/py
503     - name: "test/py sandbox"
504       env:
505         - TEST_PY_BD="sandbox"
506           TOOLCHAIN="i386"
507     - name: "test/py sandbox with clang"
508       env:
509         - TEST_PY_BD="sandbox"
510           OVERRIDE="-O clang-10"
511     - name: "test/py sandbox_spl"
512       env:
513         - TEST_PY_BD="sandbox_spl"
514           TEST_PY_TEST_SPEC="test_ofplatdata or test_handoff"
515           TOOLCHAIN="i386"
516           TEST_PY_TOOLS="yes"
517     - name: "test/py sandbox_flattree"
518       env:
519         - TEST_PY_BD="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     - 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     - name: "test/py vexpress_ca9x4"
532       env:
533         - TEST_PY_BD="vexpress_ca9x4"
534           TEST_PY_ID="--id qemu"
535           QEMU_TARGET="arm-softmmu"
536     - name: "test/py integratorcp_cm926ejs"
537       env:
538         - TEST_PY_BD="integratorcp_cm926ejs"
539           TEST_PY_TEST_SPEC="not sleep"
540           TEST_PY_ID="--id qemu"
541           QEMU_TARGET="arm-softmmu"
542     - name: "test/py qemu_arm"
543       env:
544         - TEST_PY_BD="qemu_arm"
545           TEST_PY_TEST_SPEC="not sleep"
546           QEMU_TARGET="arm-softmmu"
547     - name: "test/py qemu_arm64"
548       env:
549         - TEST_PY_BD="qemu_arm64"
550           TEST_PY_TEST_SPEC="not sleep"
551           QEMU_TARGET="aarch64-softmmu"
552     - name: "test/py qemu_mips"
553       env:
554         - TEST_PY_BD="qemu_mips"
555           TEST_PY_TEST_SPEC="not sleep"
556           QEMU_TARGET="mips-softmmu"
557           TOOLCHAIN="mips"
558     - name: "test/py qemu_mipsel"
559       env:
560         - TEST_PY_BD="qemu_mipsel"
561           TEST_PY_TEST_SPEC="not sleep"
562           QEMU_TARGET="mipsel-softmmu"
563           TOOLCHAIN="mips"
564     - name: "test/py qemu_mips64"
565       env:
566         - TEST_PY_BD="qemu_mips64"
567           TEST_PY_TEST_SPEC="not sleep"
568           QEMU_TARGET="mips64-softmmu"
569           TOOLCHAIN="mips"
570     - name: "test/py qemu_mips64el"
571       env:
572         - TEST_PY_BD="qemu_mips64el"
573           TEST_PY_TEST_SPEC="not sleep"
574           QEMU_TARGET="mips64el-softmmu"
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           TOOLCHAIN="powerpc"
582     - name: "test/py qemu-riscv32"
583       env:
584         - TEST_PY_BD="qemu-riscv32"
585           TEST_PY_TEST_SPEC="not sleep"
586           QEMU_TARGET="riscv32-softmmu"
587           TOOLCHAIN="riscv"
588     - name: "test/py qemu-riscv64"
589       env:
590         - TEST_PY_BD="qemu-riscv64"
591           TEST_PY_TEST_SPEC="not sleep"
592           QEMU_TARGET="riscv64-softmmu"
593           TOOLCHAIN="riscv"
594     - name: "test/py qemu-riscv32_spl"
595       env:
596         - TEST_PY_BD="qemu-riscv32_spl"
597           TEST_PY_TEST_SPEC="not sleep"
598           QEMU_TARGET="riscv32-softmmu"
599           TOOLCHAIN="riscv"
600     - name: "test/py qemu-riscv64_spl"
601       env:
602         - TEST_PY_BD="qemu-riscv64_spl"
603           TEST_PY_TEST_SPEC="not sleep"
604           QEMU_TARGET="riscv64-softmmu"
605           TOOLCHAIN="riscv"
606     - name: "test/py qemu-x86"
607       env:
608         - TEST_PY_BD="qemu-x86"
609           TEST_PY_TEST_SPEC="not sleep"
610           QEMU_TARGET="i386-softmmu"
611           TOOLCHAIN="i386"
612           BUILD_ROM="yes"
613     - name: "test/py qemu-x86_64"
614       env:
615         - TEST_PY_BD="qemu-x86_64"
616           TEST_PY_TEST_SPEC="not sleep"
617           QEMU_TARGET="x86_64-softmmu"
618           TOOLCHAIN="i386"
619           BUILD_ROM="yes"
620     - name: "test/py xilinx_zynq_virt"
621       env:
622         - TEST_PY_BD="xilinx_zynq_virt"
623           TEST_PY_TEST_SPEC="not sleep"
624           QEMU_TARGET="arm-softmmu"
625           TEST_PY_ID="--id qemu"
626     - name: "test/py xilinx_versal_virt"
627       env:
628         - TEST_PY_BD="xilinx_versal_virt"
629           TEST_PY_TEST_SPEC="not sleep"
630           QEMU_TARGET="aarch64-softmmu"
631           TEST_PY_ID="--id qemu"
632     - name: "test/py xtfpga"
633       env:
634         - TEST_PY_BD="xtfpga"
635           TEST_PY_TEST_SPEC="not sleep"
636           QEMU_TARGET="xtensa-softmmu"
637           TEST_PY_ID="--id qemu"
638           TOOLCHAIN="xtensa-dc233c-elf"
639
640 # TODO make it perfect ;-r