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