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