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