]> git.ipfire.org Git - thirdparty/u-boot.git/blame - .travis.yml
spi: Zap lpc32xx_ssp driver-related code
[thirdparty/u-boot.git] / .travis.yml
CommitLineData
83d290c5 1# SPDX-License-Identifier: GPL-2.0+
c7cb334d 2# Copyright Roger Meier <r.meier@siemens.com>
c7cb334d
MR
3
4# build U-Boot on Travis CI - https://travis-ci.org/
5
2bb76f33 6sudo: required
8b13e9bf 7dist: bionic
e4c1b4d8 8
c7cb334d
MR
9language: c
10
050c7569
RM
11addons:
12 apt:
98178bdc 13 update: true
4030f166 14 sources:
98178bdc
TR
15 - sourceline: 'deb http://apt.llvm.org/bionic/ llvm-toolchain-bionic-10 main'
16 key_url: 'https://apt.llvm.org/llvm-snapshot.gpg.key'
050c7569 17 packages:
091b48e0 18 - autopoint
050c7569
RM
19 - cppcheck
20 - sloccount
21 - sparse
22 - bc
23 - build-essential
96d0cd46 24 - libsdl2-dev
07bf2122 25 - python
085b8978 26 - python-pyelftools
f36f15b6 27 - python3-sphinx
085b8978
TR
28 - python3-virtualenv
29 - python3-pip
f2b0c007
TR
30 - swig
31 - libpython-dev
cd402e01 32 - iasl
0e4e38ae 33 - grub-efi-ia32-bin
66a3a9cf 34 - grub-efi-amd64-bin
0e4e38ae
AG
35 - rpm2cpio
36 - wget
36dd5f1b 37 - device-tree-compiler
706f0775 38 - lzop
83d73c2f 39 - liblz4-tool
4997a7ed 40 - lzma-alone
4030f166 41 - libisl15
98178bdc 42 - clang-10
aa2e9c9e 43 - srecord
bb9a76ea 44 - graphviz
5bf1ea63
AT
45 - coreutils
46 - util-linux
47 - dosfstools
48 - gdisk
49 - mount
50 - mtools
51 - openssl
52 - sbsigntool
4c58d273 53
c7cb334d 54install:
5ac5861c
TR
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`
c7cb334d 59 # prepare buildman environment
43a68e49 60 - echo -e "[toolchain]\nroot = /usr" > ~/.buildman
7b8a43e7 61 - echo -e "arc = /tmp/arc_gnu_2019.09_prebuilt_uclibc_le_archs_linux_install" >> ~/.buildman
14d39c9e
TR
62 - echo -e "\n[toolchain-alias]\nsh = sh2" >> ~/.buildman
63 - echo -e "x86 = i386" >> ~/.buildman;
64 - echo -e "riscv = riscv64" >> ~/.buildman;
c7cb334d 65 - cat ~/.buildman
8b13e9bf
TR
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
8b13e9bf 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
5bf1ea63 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
c7cb334d
MR
70
71env:
72 global:
5bf1ea63 73 - PATH=/tmp/qemu-install/bin:/tmp/uboot-test-hooks/bin:/sbin:/usr/bin:/bin:/usr/local/bin
e019660a 74 - PYTHONPATH=/tmp/uboot-test-hooks/py/travis-ci
c7cb334d 75 - BUILD_DIR=build
c7cb334d
MR
76 - HOSTCC="cc"
77 - HOSTCXX="c++"
88366b96 78 - QEMU_VERSION="v4.2.0"
c7cb334d
MR
79
80before_script:
050c7569 81 # install toolchains based on TOOLCHAIN} variable
050c7569 82 - if [[ "${TOOLCHAIN}" == *m68k* ]]; then ./tools/buildman/buildman --fetch-arch m68k ; fi
cd402e01 83 - if [[ "${TOOLCHAIN}" == *microblaze* ]]; then ./tools/buildman/buildman --fetch-arch microblaze ; fi
050c7569 84 - if [[ "${TOOLCHAIN}" == *mips* ]]; then ./tools/buildman/buildman --fetch-arch mips ; fi
4c58d273 85 - if [[ "${TOOLCHAIN}" == *sh* ]]; then ./tools/buildman/buildman --fetch-arch sh2 ; fi
0533fb8b
BM
86 - if [[ "${TOOLCHAIN}" == *i386* ]]; then
87 ./tools/buildman/buildman --fetch-arch i386;
2ded4bf9 88 fi
80e4bbfc 89 - if [[ "${TOOLCHAIN}" == arc ]]; then
7b8a43e7
TR
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;
80e4bbfc 92 fi
f715ed45
RC
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
b6f3a12e
MF
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
8399538c
TR
103 # If TOOLCHAIN is unset, we're on some flavour of ARM.
104 - if [[ "${TOOLCHAIN}" == "" ]]; then
4c58d273
DS
105 ./tools/buildman/buildman --fetch-arch arm &&
106 ./tools/buildman/buildman --fetch-arch aarch64;
8399538c 107 fi
4c58d273 108 - if [[ "${TOOLCHAIN}" == "powerpc" ]]; then ./tools/buildman/buildman --fetch-arch powerpc; fi
b6896fcb 109 - if [[ "${TOOLCHAIN}" == "riscv" ]]; then
9eed8cdd 110 ./tools/buildman/buildman --fetch-arch riscv32 &&
b5135e45 111 ./tools/buildman/buildman --fetch-arch riscv64;
b6896fcb 112 fi
3c643fb0
TR
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 &&
984a1feb 117 git checkout ${QEMU_VERSION} &&
3c643fb0
TR
118 ./configure --prefix=/tmp/qemu-install --target-list=${QEMU_TARGET} &&
119 make -j4 all install;
120 popd;
121 fi
c7cb334d 122
091b48e0
BM
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
ddd4d992
BM
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 &&
091b48e0
BM
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
ddd4d992
BM
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 &&
091b48e0
BM
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
9eed8cdd
BM
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
ddd4d992
BM
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 &&
9eed8cdd
BM
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
ddd4d992
BM
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 &&
9eed8cdd
BM
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
49fb28a4
BM
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
091b48e0 212
c7cb334d 213script:
8304f053
SW
214 # Comments must be outside the command strings below, or the Travis parser
215 # will get confused.
216 #
dd5c954e
SG
217 # If we've been asked to use clang only do one configuration.
218 #
e7c05b1f 219 # Build a selection of boards if TEST_PY_BD is empty
573605d4 220 - if [[ "${BUILDMAN}" != "" ]]; then
08140dba
SG
221 ret=0
222 tools/buildman/buildman -P -E -W ${BUILDMAN} ${OVERRIDE} || ret=$?;
dd5c954e 223 if [[ $ret -ne 0 ]]; then
b52f5a19 224 tools/buildman/buildman -seP ${BUILDMAN};
0c5145fc
SW
225 exit $ret;
226 fi;
050c7569 227 fi
e7c05b1f 228 # Build just the one board needed for testing, if TEST_PY_BD is non-empty
4080d097 229 # Note: "${var:+"-k $var"}" expands to "" if $var is empty, "-k $var" if not
f08c8ef9 230 - if [[ "${TEST_PY_BD}" != "" ]]; then
e7c05b1f 231 export UBOOT_TRAVIS_BUILD_DIR=`cd .. && pwd`/${TEST_PY_BD};
f08c8ef9
SG
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;
7ec1255c
SG
246 tools/buildman/buildman -o ${UBOOT_TRAVIS_BUILD_DIR} -w -E -W -e
247 --board ${TEST_PY_BD} ${OVERRIDE} || exit;
085b8978
TR
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}
4080d097 252 ${TEST_PY_TEST_SPEC:+"-k ${TEST_PY_TEST_SPEC}"}
cec1e856 253 --build-dir "$UBOOT_TRAVIS_BUILD_DIR" || exit;
26a426a1
TR
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 &&
7261833f
TR
260 ./tools/dtoc/dtoc -t &&
261 make testconfig;
26a426a1 262 fi;
8304f053 263 fi
c7cb334d
MR
264
265matrix:
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
a032e0a6
SW
269 - name: "buildman arc"
270 env:
80e4bbfc
AB
271 - BUILDMAN="arc"
272 TOOLCHAIN="arc"
a032e0a6
SW
273 - name: "buildman arm11 arm7 arm920t arm946es"
274 env:
dca268a8 275 - BUILDMAN="arm11 arm7 arm920t arm946es"
72522749 276 - name: "buildman arm926ejs (non-NXP,siemens,at91,kirkwood,spear)"
a032e0a6 277 env:
baade496 278 - JOB="arm926ejs"
72522749
EH
279 BUILDMAN="arm926ejs -x freescale,siemens,at91,kirkwood,spear,omap"
280 - name: "buildman at91 (non arm v7)"
a032e0a6 281 env:
72522749
EH
282 - BUILDMAN="at91 -x armv7"
283 - name: "buildman at91 (non arm926ejs)"
284 env:
285 - BUILDMAN="at91 -x arm926ejs"
a032e0a6
SW
286 - name: "buildman boundary engicam toradex"
287 env:
288 - BUILDMAN="boundary engicam toradex"
7a779ed1 289 - name: "buildman ARM bcm"
50aeb3ae 290 env:
7a779ed1 291 - BUILDMAN="bcm -x mips"
af771625 292 - name: "buildman NXP ARM32 (catch-all)"
a032e0a6 293 env:
af771625
HS
294 - BUILDMAN="freescale -x powerpc,m68k,aarch64,ls101,ls102,ls104,ls108,ls20,lx216"
295 - name: "buildman NXP LS101x"
a032e0a6 296 env:
af771625
HS
297 - BUILDMAN="freescale&ls101"
298 - name: "buildman NXP LS102x"
5845ac12 299 env:
af771625
HS
300 - BUILDMAN="freescale&ls102"
301 - name: "buildman NXP LS104x"
818408e2 302 env:
af771625
HS
303 - BUILDMAN="freescale&ls104"
304 - name: "buildman NXP LS108x"
aa132612 305 env:
af771625
HS
306 - BUILDMAN="freescale&ls108"
307 - name: "buildman NXP LS20xx"
aa132612 308 env:
af771625
HS
309 - BUILDMAN="freescale&ls20"
310 - name: "buildman NXP LX216x"
5845ac12 311 env:
af771625 312 - BUILDMAN="freescale&lx216"
984c0051 313 - name: "buildman i.MX6 tqc"
a032e0a6 314 env:
984c0051
TR
315 - BUILDMAN="mx6&tqc"
316 - name: "buildman i.MX6 (catch-all)"
a032e0a6 317 env:
984c0051
TR
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"
548aefa5 322 - name: "buildman keystone 2/3"
a032e0a6 323 env:
548aefa5 324 - BUILDMAN="k2 k3"
a032e0a6
SW
325 - name: "buildman samsung socfpga"
326 env:
dca268a8 327 - BUILDMAN="samsung socfpga"
818408e2
TR
328 - name: "buildman spear"
329 env:
330 - BUILDMAN="spear"
a032e0a6
SW
331 - name: "buildman sun4i"
332 env:
baade496 333 - BUILDMAN="sun4i"
a032e0a6
SW
334 - name: "buildman sun5i"
335 env:
baade496 336 - BUILDMAN="sun5i"
a032e0a6
SW
337 - name: "buildman sun6i"
338 env:
baade496 339 - BUILDMAN="sun6i"
b5ddd070 340 - name: "buildman sun7i"
a032e0a6 341 env:
baade496 342 - BUILDMAN="sun7i"
95b22154 343 - name: "buildman 64bit sun8i"
a032e0a6 344 env:
56d35f2e 345 - BUILDMAN="sun8i&aarch64 -x orangepi"
95b22154
TR
346 - name: "buildman 32bit sun8i"
347 env:
56d35f2e 348 - BUILDMAN="sun8i&armv7 -x orangepi"
a032e0a6
SW
349 - name: "buildman sun9i"
350 env:
baade496 351 - BUILDMAN="sun9i"
a032e0a6
SW
352 - name: "buildman sun50i"
353 env:
56d35f2e 354 - BUILDMAN="sun50i -x orangepi"
a032e0a6
SW
355 - name: "buildman catch-all ARM"
356 env:
2d4cd12d 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"
a032e0a6
SW
358 - name: "buildman sandbox x86"
359 env:
050c7569 360 - BUILDMAN="sandbox x86"
0533fb8b 361 TOOLCHAIN="i386"
984c0051
TR
362 - name: "buildman technexion"
363 env:
364 - BUILDMAN="technexion"
b684d403 365 - name: "buildman kirkwood"
a032e0a6 366 env:
b684d403 367 - BUILDMAN="kirkwood"
a032e0a6
SW
368 - name: "buildman mvebu"
369 env:
0bf1bc44 370 - BUILDMAN="mvebu"
a032e0a6
SW
371 - name: "buildman m68k"
372 env:
050c7569
RM
373 - BUILDMAN="m68k"
374 TOOLCHAIN="m68k"
a032e0a6
SW
375 - name: "buildman microblaze"
376 env:
0d3aaa35 377 - BUILDMAN="microblaze"
76761e7f 378 TOOLCHAIN="microblaze"
a032e0a6
SW
379 - name: "buildman mips"
380 env:
050c7569
RM
381 - BUILDMAN="mips"
382 TOOLCHAIN="mips"
a032e0a6
SW
383 - name: "buildman non-Freescale PowerPC"
384 env:
385 - BUILDMAN="powerpc -x freescale"
4c58d273 386 TOOLCHAIN="powerpc"
a032e0a6
SW
387 - name: "buildman mpc85xx&freescale (excluding many)"
388 env:
dca268a8 389 - BUILDMAN="mpc85xx&freescale -x t208xrdb -x t4qds -x t102* -x p1_p2_rdb_pc -x p1010rdb -x corenet_ds -x b4860qds -x bsc91*"
4c58d273 390 TOOLCHAIN="powerpc"
a032e0a6
SW
391 - name: "buildman t208xrdb corenet_ds"
392 env:
dca268a8 393 - BUILDMAN="t208xrdb corenet_ds"
4c58d273 394 TOOLCHAIN="powerpc"
a032e0a6
SW
395 - name: "buildman Freescale PowerPC"
396 env:
dca268a8 397 - BUILDMAN="t4qds b4860qds mpc83xx&freescale mpc86xx&freescale"
4c58d273 398 TOOLCHAIN="powerpc"
a032e0a6
SW
399 - name: "buildman t102*"
400 env:
9464dd56 401 - BUILDMAN="t102*"
4c58d273 402 TOOLCHAIN="powerpc"
a032e0a6
SW
403 - name: "buildman p1_p2_rdb_pc"
404 env:
afdf09ac 405 - BUILDMAN="p1_p2_rdb_pc"
4c58d273 406 TOOLCHAIN="powerpc"
a032e0a6
SW
407 - name: "buildman p1010rdb bsc91"
408 env:
dca268a8 409 - BUILDMAN="p1010rdb bsc91"
4c58d273 410 TOOLCHAIN="powerpc"
a032e0a6
SW
411 - name: "buildman siemens"
412 env:
050c7569 413 - BUILDMAN="siemens"
a032e0a6
SW
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:
dca268a8 422 - BUILDMAN="omap"
56d35f2e
HS
423 - name: "buildman orangepi"
424 env:
425 - BUILDMAN="orangepi"
a032e0a6
SW
426 - name: "buildman uniphier"
427 env:
5eba31c3 428 - BUILDMAN="uniphier"
a032e0a6
SW
429 - name: "buildman catch-all AArch64"
430 env:
2d4cd12d 431 - BUILDMAN="aarch64 -x bcm,k3,tegra,ls1,ls2,lx216,mvebu,uniphier,sunxi,samsung,socfpga,rk,versal,zynq"
a032e0a6
SW
432 - name: "buildman rockchip"
433 env:
2d4cd12d 434 - BUILDMAN="rk -x orangepi"
a032e0a6
SW
435 - name: "buildman sh"
436 env:
437 - BUILDMAN="sh -x arm"
4c58d273 438 TOOLCHAIN="sh"
568356d8 439 - name: "buildman Zynq* (ARMv7)"
a032e0a6 440 env:
568356d8
TR
441 - BUILDMAN="zynq&armv7"
442 - name: "buildman ZynqMP and Versal"
443 env:
444 - BUILDMAN="versal|zynqmp&aarch64"
a032e0a6
SW
445 - name: "buildman xtensa"
446 env:
76761e7f 447 - BUILDMAN="xtensa"
b6f3a12e 448 TOOLCHAIN="xtensa-dc233c-elf"
a032e0a6
SW
449 - name: "buildman riscv"
450 env:
b6896fcb
RC
451 - BUILDMAN="riscv"
452 TOOLCHAIN="riscv"
f715ed45
RC
453 - name: "buildman nds32"
454 env:
455 - BUILDMAN="nds32"
456 TOOLCHAIN="nds32"
c7cb334d
MR
457
458 # QA jobs for code analytics
459 # static code analysis with cppcheck (we can add --enable=all later)
a032e0a6 460 - name: "cppcheck"
d7882210 461 script:
4ee7f527 462 - cppcheck -j$(nproc) --force --quiet --inline-suppr .
bb9a76ea
HS
463 # build HTML documentation
464 - name: "htmldocs"
465 script:
466 - make htmldocs
c7cb334d 467 # search for TODO within source tree
a032e0a6 468 - name: "grep TODO"
d7882210 469 script:
c85b52e4 470 - grep -r TODO .
c7cb334d 471 # search for FIXME within source tree
a032e0a6 472 - name: "grep FIXME HACK"
d7882210 473 script:
c85b52e4 474 - grep -r FIXME .
c7cb334d 475 # search for HACK within source tree and ignore HACKKIT board
c7cb334d
MR
476 script:
477 - grep -r HACK . | grep -v HACKKIT
478 # some statistics about the code base
a032e0a6 479 - name: "sloccount"
d7882210 480 script:
c85b52e4 481 - sloccount .
ee168783
TR
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
80870e2a
OS
486 # Ensure host tools build
487 - name: "Build tools-only"
488 script:
489 - make tools-only_config tools-only -j$(nproc)
1f3910da
PJT
490 # Ensure env tools build
491 - name: "Build envtools"
492 script:
493 - make tools-only_config envtools -j$(nproc)
8304f053 494
07bf2122 495 # test/py
a032e0a6
SW
496 - name: "test/py sandbox"
497 env:
8304f053 498 - TEST_PY_BD="sandbox"
0533fb8b 499 TOOLCHAIN="i386"
4030f166
TR
500 - name: "test/py sandbox with clang"
501 env:
502 - TEST_PY_BD="sandbox"
98178bdc 503 OVERRIDE="-O clang-10"
a032e0a6
SW
504 - name: "test/py sandbox_spl"
505 env:
40c8d26a 506 - TEST_PY_BD="sandbox_spl"
e28e9db6 507 TEST_PY_TEST_SPEC="test_ofplatdata or test_handoff"
0533fb8b 508 TOOLCHAIN="i386"
f2d07788 509 TEST_PY_TOOLS="yes"
a032e0a6
SW
510 - name: "test/py sandbox_flattree"
511 env:
40c8d26a 512 - TEST_PY_BD="sandbox_flattree"
0533fb8b 513 TOOLCHAIN="i386"
998dc83a
JS
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"
a032e0a6
SW
519 - name: "test/py vexpress_ca15_tc2"
520 env:
8304f053
SW
521 - TEST_PY_BD="vexpress_ca15_tc2"
522 TEST_PY_ID="--id qemu"
3c643fb0 523 QEMU_TARGET="arm-softmmu"
a032e0a6
SW
524 - name: "test/py vexpress_ca9x4"
525 env:
8304f053
SW
526 - TEST_PY_BD="vexpress_ca9x4"
527 TEST_PY_ID="--id qemu"
3c643fb0 528 QEMU_TARGET="arm-softmmu"
a032e0a6
SW
529 - name: "test/py integratorcp_cm926ejs"
530 env:
8304f053 531 - TEST_PY_BD="integratorcp_cm926ejs"
78992845 532 TEST_PY_TEST_SPEC="not sleep"
8304f053 533 TEST_PY_ID="--id qemu"
3c643fb0 534 QEMU_TARGET="arm-softmmu"
a032e0a6
SW
535 - name: "test/py qemu_arm"
536 env:
7b09dffc
TT
537 - TEST_PY_BD="qemu_arm"
538 TEST_PY_TEST_SPEC="not sleep"
539 QEMU_TARGET="arm-softmmu"
a032e0a6
SW
540 - name: "test/py qemu_arm64"
541 env:
a5bee507
TT
542 - TEST_PY_BD="qemu_arm64"
543 TEST_PY_TEST_SPEC="not sleep"
544 QEMU_TARGET="aarch64-softmmu"
a032e0a6
SW
545 - name: "test/py qemu_mips"
546 env:
8304f053
SW
547 - TEST_PY_BD="qemu_mips"
548 TEST_PY_TEST_SPEC="not sleep"
3c643fb0 549 QEMU_TARGET="mips-softmmu"
8304f053 550 TOOLCHAIN="mips"
a032e0a6
SW
551 - name: "test/py qemu_mipsel"
552 env:
8304f053
SW
553 - TEST_PY_BD="qemu_mipsel"
554 TEST_PY_TEST_SPEC="not sleep"
3c643fb0 555 QEMU_TARGET="mipsel-softmmu"
8304f053 556 TOOLCHAIN="mips"
a032e0a6
SW
557 - name: "test/py qemu_mips64"
558 env:
8304f053
SW
559 - TEST_PY_BD="qemu_mips64"
560 TEST_PY_TEST_SPEC="not sleep"
3c643fb0 561 QEMU_TARGET="mips64-softmmu"
8304f053 562 TOOLCHAIN="mips"
a032e0a6
SW
563 - name: "test/py qemu_mips64el"
564 env:
8304f053
SW
565 - TEST_PY_BD="qemu_mips64el"
566 TEST_PY_TEST_SPEC="not sleep"
3c643fb0 567 QEMU_TARGET="mips64el-softmmu"
8304f053 568 TOOLCHAIN="mips"
a032e0a6
SW
569 - name: "test/py qemu-ppce500"
570 env:
8304f053
SW
571 - TEST_PY_BD="qemu-ppce500"
572 TEST_PY_TEST_SPEC="not sleep"
3c643fb0 573 QEMU_TARGET="ppc-softmmu"
4c58d273 574 TOOLCHAIN="powerpc"
a379d330
BM
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"
a379d330 580 TOOLCHAIN="riscv"
22c7b7d6
HS
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"
22c7b7d6 586 TOOLCHAIN="riscv"
49fb28a4
BM
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"
49fb28a4
BM
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"
49fb28a4 598 TOOLCHAIN="riscv"
a032e0a6
SW
599 - name: "test/py qemu-x86"
600 env:
8304f053
SW
601 - TEST_PY_BD="qemu-x86"
602 TEST_PY_TEST_SPEC="not sleep"
3c643fb0 603 QEMU_TARGET="i386-softmmu"
0533fb8b 604 TOOLCHAIN="i386"
8304f053 605 BUILD_ROM="yes"
3fdfca7a
BM
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"
3fdfca7a
BM
611 TOOLCHAIN="i386"
612 BUILD_ROM="yes"
f7c6ee7f 613 - name: "test/py xilinx_zynq_virt"
a032e0a6 614 env:
f7c6ee7f 615 - TEST_PY_BD="xilinx_zynq_virt"
41122d37
MS
616 TEST_PY_TEST_SPEC="not sleep"
617 QEMU_TARGET="arm-softmmu"
618 TEST_PY_ID="--id qemu"
d9eaae3b
MS
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"
a032e0a6
SW
625 - name: "test/py xtfpga"
626 env:
4d690094
MF
627 - TEST_PY_BD="xtfpga"
628 TEST_PY_TEST_SPEC="not sleep"
629 QEMU_TARGET="xtensa-softmmu"
630 TEST_PY_ID="--id qemu"
4d690094 631 TOOLCHAIN="xtensa-dc233c-elf"
c7cb334d 632
c7cb334d 633# TODO make it perfect ;-r