]>
Commit | Line | Data |
---|---|---|
83d290c5 | 1 | # SPDX-License-Identifier: GPL-2.0+ |
c7cb334d | 2 | # Copyright Roger Meier <[email protected]> |
c7cb334d MR |
3 | |
4 | # build U-Boot on Travis CI - https://travis-ci.org/ | |
5 | ||
2bb76f33 | 6 | sudo: required |
8b13e9bf | 7 | dist: bionic |
e4c1b4d8 | 8 | |
c7cb334d MR |
9 | language: c |
10 | ||
050c7569 RM |
11 | addons: |
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 | |
6cfd09d4 T |
53 | - fakeroot |
54 | - mtd-utils | |
4c58d273 | 55 | |
c7cb334d | 56 | install: |
5ac5861c TR |
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` | |
c7cb334d | 61 | # prepare buildman environment |
43a68e49 | 62 | - echo -e "[toolchain]\nroot = /usr" > ~/.buildman |
7b8a43e7 | 63 | - echo -e "arc = /tmp/arc_gnu_2019.09_prebuilt_uclibc_le_archs_linux_install" >> ~/.buildman |
14d39c9e TR |
64 | - echo -e "\n[toolchain-alias]\nsh = sh2" >> ~/.buildman |
65 | - echo -e "x86 = i386" >> ~/.buildman; | |
66 | - echo -e "riscv = riscv64" >> ~/.buildman; | |
c7cb334d | 67 | - cat ~/.buildman |
8b13e9bf TR |
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 | |
8b13e9bf | 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 |
5bf1ea63 | 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 |
c7cb334d MR |
72 | |
73 | env: | |
74 | global: | |
5bf1ea63 | 75 | - PATH=/tmp/qemu-install/bin:/tmp/uboot-test-hooks/bin:/sbin:/usr/bin:/bin:/usr/local/bin |
e019660a | 76 | - PYTHONPATH=/tmp/uboot-test-hooks/py/travis-ci |
c7cb334d | 77 | - BUILD_DIR=build |
c7cb334d MR |
78 | - HOSTCC="cc" |
79 | - HOSTCXX="c++" | |
88366b96 | 80 | - QEMU_VERSION="v4.2.0" |
c7cb334d MR |
81 | |
82 | before_script: | |
050c7569 | 83 | # install toolchains based on TOOLCHAIN} variable |
050c7569 | 84 | - if [[ "${TOOLCHAIN}" == *m68k* ]]; then ./tools/buildman/buildman --fetch-arch m68k ; fi |
cd402e01 | 85 | - if [[ "${TOOLCHAIN}" == *microblaze* ]]; then ./tools/buildman/buildman --fetch-arch microblaze ; fi |
050c7569 | 86 | - if [[ "${TOOLCHAIN}" == *mips* ]]; then ./tools/buildman/buildman --fetch-arch mips ; fi |
4c58d273 | 87 | - if [[ "${TOOLCHAIN}" == *sh* ]]; then ./tools/buildman/buildman --fetch-arch sh2 ; fi |
0533fb8b BM |
88 | - if [[ "${TOOLCHAIN}" == *i386* ]]; then |
89 | ./tools/buildman/buildman --fetch-arch i386; | |
2ded4bf9 | 90 | fi |
80e4bbfc | 91 | - if [[ "${TOOLCHAIN}" == arc ]]; then |
7b8a43e7 TR |
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; | |
80e4bbfc | 94 | fi |
f715ed45 RC |
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 | |
b6f3a12e MF |
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 | |
8399538c TR |
105 | # If TOOLCHAIN is unset, we're on some flavour of ARM. |
106 | - if [[ "${TOOLCHAIN}" == "" ]]; then | |
4c58d273 DS |
107 | ./tools/buildman/buildman --fetch-arch arm && |
108 | ./tools/buildman/buildman --fetch-arch aarch64; | |
8399538c | 109 | fi |
4c58d273 | 110 | - if [[ "${TOOLCHAIN}" == "powerpc" ]]; then ./tools/buildman/buildman --fetch-arch powerpc; fi |
b6896fcb | 111 | - if [[ "${TOOLCHAIN}" == "riscv" ]]; then |
9eed8cdd | 112 | ./tools/buildman/buildman --fetch-arch riscv32 && |
b5135e45 | 113 | ./tools/buildman/buildman --fetch-arch riscv64; |
b6896fcb | 114 | fi |
3c643fb0 TR |
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 && | |
984a1feb | 119 | git checkout ${QEMU_VERSION} && |
3c643fb0 TR |
120 | ./configure --prefix=/tmp/qemu-install --target-list=${QEMU_TARGET} && |
121 | make -j4 all install; | |
122 | popd; | |
123 | fi | |
c7cb334d | 124 | |
091b48e0 BM |
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 | |
ddd4d992 BM |
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 && | |
091b48e0 BM |
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 | |
ddd4d992 BM |
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 && | |
091b48e0 BM |
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 | |
9eed8cdd BM |
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 | |
ddd4d992 BM |
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 && | |
9eed8cdd BM |
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 | |
ddd4d992 BM |
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 && | |
9eed8cdd BM |
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 | |
49fb28a4 BM |
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 | |
091b48e0 | 214 | |
c7cb334d | 215 | script: |
8304f053 SW |
216 | # Comments must be outside the command strings below, or the Travis parser |
217 | # will get confused. | |
218 | # | |
dd5c954e SG |
219 | # If we've been asked to use clang only do one configuration. |
220 | # | |
e7c05b1f | 221 | # Build a selection of boards if TEST_PY_BD is empty |
573605d4 | 222 | - if [[ "${BUILDMAN}" != "" ]]; then |
08140dba SG |
223 | ret=0 |
224 | tools/buildman/buildman -P -E -W ${BUILDMAN} ${OVERRIDE} || ret=$?; | |
dd5c954e | 225 | if [[ $ret -ne 0 ]]; then |
b52f5a19 | 226 | tools/buildman/buildman -seP ${BUILDMAN}; |
0c5145fc SW |
227 | exit $ret; |
228 | fi; | |
050c7569 | 229 | fi |
e7c05b1f | 230 | # Build just the one board needed for testing, if TEST_PY_BD is non-empty |
4080d097 | 231 | # Note: "${var:+"-k $var"}" expands to "" if $var is empty, "-k $var" if not |
f08c8ef9 | 232 | - if [[ "${TEST_PY_BD}" != "" ]]; then |
e7c05b1f | 233 | export UBOOT_TRAVIS_BUILD_DIR=`cd .. && pwd`/${TEST_PY_BD}; |
f08c8ef9 SG |
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; | |
7ec1255c SG |
248 | tools/buildman/buildman -o ${UBOOT_TRAVIS_BUILD_DIR} -w -E -W -e |
249 | --board ${TEST_PY_BD} ${OVERRIDE} || exit; | |
085b8978 TR |
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} | |
4080d097 | 254 | ${TEST_PY_TEST_SPEC:+"-k ${TEST_PY_TEST_SPEC}"} |
cec1e856 | 255 | --build-dir "$UBOOT_TRAVIS_BUILD_DIR" || exit; |
26a426a1 TR |
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 && | |
7261833f TR |
262 | ./tools/dtoc/dtoc -t && |
263 | make testconfig; | |
26a426a1 | 264 | fi; |
8304f053 | 265 | fi |
c7cb334d MR |
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 | |
a032e0a6 SW |
271 | - name: "buildman arc" |
272 | env: | |
80e4bbfc AB |
273 | - BUILDMAN="arc" |
274 | TOOLCHAIN="arc" | |
a032e0a6 SW |
275 | - name: "buildman arm11 arm7 arm920t arm946es" |
276 | env: | |
dca268a8 | 277 | - BUILDMAN="arm11 arm7 arm920t arm946es" |
72522749 | 278 | - name: "buildman arm926ejs (non-NXP,siemens,at91,kirkwood,spear)" |
a032e0a6 | 279 | env: |
baade496 | 280 | - JOB="arm926ejs" |
72522749 EH |
281 | BUILDMAN="arm926ejs -x freescale,siemens,at91,kirkwood,spear,omap" |
282 | - name: "buildman at91 (non arm v7)" | |
a032e0a6 | 283 | env: |
72522749 EH |
284 | - BUILDMAN="at91 -x armv7" |
285 | - name: "buildman at91 (non arm926ejs)" | |
286 | env: | |
287 | - BUILDMAN="at91 -x arm926ejs" | |
a032e0a6 SW |
288 | - name: "buildman boundary engicam toradex" |
289 | env: | |
290 | - BUILDMAN="boundary engicam toradex" | |
7a779ed1 | 291 | - name: "buildman ARM bcm" |
50aeb3ae | 292 | env: |
7a779ed1 | 293 | - BUILDMAN="bcm -x mips" |
af771625 | 294 | - name: "buildman NXP ARM32 (catch-all)" |
a032e0a6 | 295 | env: |
af771625 HS |
296 | - BUILDMAN="freescale -x powerpc,m68k,aarch64,ls101,ls102,ls104,ls108,ls20,lx216" |
297 | - name: "buildman NXP LS101x" | |
a032e0a6 | 298 | env: |
af771625 HS |
299 | - BUILDMAN="freescale&ls101" |
300 | - name: "buildman NXP LS102x" | |
5845ac12 | 301 | env: |
af771625 HS |
302 | - BUILDMAN="freescale&ls102" |
303 | - name: "buildman NXP LS104x" | |
818408e2 | 304 | env: |
af771625 HS |
305 | - BUILDMAN="freescale&ls104" |
306 | - name: "buildman NXP LS108x" | |
aa132612 | 307 | env: |
af771625 HS |
308 | - BUILDMAN="freescale&ls108" |
309 | - name: "buildman NXP LS20xx" | |
aa132612 | 310 | env: |
af771625 HS |
311 | - BUILDMAN="freescale&ls20" |
312 | - name: "buildman NXP LX216x" | |
5845ac12 | 313 | env: |
af771625 | 314 | - BUILDMAN="freescale&lx216" |
984c0051 | 315 | - name: "buildman i.MX6 tqc" |
a032e0a6 | 316 | env: |
984c0051 TR |
317 | - BUILDMAN="mx6&tqc" |
318 | - name: "buildman i.MX6 (catch-all)" | |
a032e0a6 | 319 | env: |
984c0051 TR |
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" | |
548aefa5 | 324 | - name: "buildman keystone 2/3" |
a032e0a6 | 325 | env: |
548aefa5 | 326 | - BUILDMAN="k2 k3" |
a032e0a6 SW |
327 | - name: "buildman samsung socfpga" |
328 | env: | |
dca268a8 | 329 | - BUILDMAN="samsung socfpga" |
818408e2 TR |
330 | - name: "buildman spear" |
331 | env: | |
332 | - BUILDMAN="spear" | |
a032e0a6 SW |
333 | - name: "buildman sun4i" |
334 | env: | |
baade496 | 335 | - BUILDMAN="sun4i" |
a032e0a6 SW |
336 | - name: "buildman sun5i" |
337 | env: | |
baade496 | 338 | - BUILDMAN="sun5i" |
a032e0a6 SW |
339 | - name: "buildman sun6i" |
340 | env: | |
baade496 | 341 | - BUILDMAN="sun6i" |
b5ddd070 | 342 | - name: "buildman sun7i" |
a032e0a6 | 343 | env: |
baade496 | 344 | - BUILDMAN="sun7i" |
95b22154 | 345 | - name: "buildman 64bit sun8i" |
a032e0a6 | 346 | env: |
56d35f2e | 347 | - BUILDMAN="sun8i&aarch64 -x orangepi" |
95b22154 TR |
348 | - name: "buildman 32bit sun8i" |
349 | env: | |
56d35f2e | 350 | - BUILDMAN="sun8i&armv7 -x orangepi" |
a032e0a6 SW |
351 | - name: "buildman sun9i" |
352 | env: | |
baade496 | 353 | - BUILDMAN="sun9i" |
a032e0a6 SW |
354 | - name: "buildman sun50i" |
355 | env: | |
56d35f2e | 356 | - BUILDMAN="sun50i -x orangepi" |
a032e0a6 SW |
357 | - name: "buildman catch-all ARM" |
358 | env: | |
2d4cd12d | 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" |
a032e0a6 SW |
360 | - name: "buildman sandbox x86" |
361 | env: | |
050c7569 | 362 | - BUILDMAN="sandbox x86" |
0533fb8b | 363 | TOOLCHAIN="i386" |
984c0051 TR |
364 | - name: "buildman technexion" |
365 | env: | |
366 | - BUILDMAN="technexion" | |
b684d403 | 367 | - name: "buildman kirkwood" |
a032e0a6 | 368 | env: |
b684d403 | 369 | - BUILDMAN="kirkwood" |
a032e0a6 SW |
370 | - name: "buildman mvebu" |
371 | env: | |
0bf1bc44 | 372 | - BUILDMAN="mvebu" |
a032e0a6 SW |
373 | - name: "buildman m68k" |
374 | env: | |
050c7569 RM |
375 | - BUILDMAN="m68k" |
376 | TOOLCHAIN="m68k" | |
a032e0a6 SW |
377 | - name: "buildman microblaze" |
378 | env: | |
0d3aaa35 | 379 | - BUILDMAN="microblaze" |
76761e7f | 380 | TOOLCHAIN="microblaze" |
a032e0a6 SW |
381 | - name: "buildman mips" |
382 | env: | |
050c7569 RM |
383 | - BUILDMAN="mips" |
384 | TOOLCHAIN="mips" | |
a032e0a6 SW |
385 | - name: "buildman non-Freescale PowerPC" |
386 | env: | |
387 | - BUILDMAN="powerpc -x freescale" | |
4c58d273 | 388 | TOOLCHAIN="powerpc" |
a032e0a6 SW |
389 | - name: "buildman mpc85xx&freescale (excluding many)" |
390 | env: | |
dca268a8 | 391 | - BUILDMAN="mpc85xx&freescale -x t208xrdb -x t4qds -x t102* -x p1_p2_rdb_pc -x p1010rdb -x corenet_ds -x b4860qds -x bsc91*" |
4c58d273 | 392 | TOOLCHAIN="powerpc" |
a032e0a6 SW |
393 | - name: "buildman t208xrdb corenet_ds" |
394 | env: | |
dca268a8 | 395 | - BUILDMAN="t208xrdb corenet_ds" |
4c58d273 | 396 | TOOLCHAIN="powerpc" |
a032e0a6 SW |
397 | - name: "buildman Freescale PowerPC" |
398 | env: | |
dca268a8 | 399 | - BUILDMAN="t4qds b4860qds mpc83xx&freescale mpc86xx&freescale" |
4c58d273 | 400 | TOOLCHAIN="powerpc" |
a032e0a6 SW |
401 | - name: "buildman t102*" |
402 | env: | |
9464dd56 | 403 | - BUILDMAN="t102*" |
4c58d273 | 404 | TOOLCHAIN="powerpc" |
a032e0a6 SW |
405 | - name: "buildman p1_p2_rdb_pc" |
406 | env: | |
afdf09ac | 407 | - BUILDMAN="p1_p2_rdb_pc" |
4c58d273 | 408 | TOOLCHAIN="powerpc" |
a032e0a6 SW |
409 | - name: "buildman p1010rdb bsc91" |
410 | env: | |
dca268a8 | 411 | - BUILDMAN="p1010rdb bsc91" |
4c58d273 | 412 | TOOLCHAIN="powerpc" |
a032e0a6 SW |
413 | - name: "buildman siemens" |
414 | env: | |
050c7569 | 415 | - BUILDMAN="siemens" |
a032e0a6 SW |
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: | |
dca268a8 | 424 | - BUILDMAN="omap" |
56d35f2e HS |
425 | - name: "buildman orangepi" |
426 | env: | |
427 | - BUILDMAN="orangepi" | |
a032e0a6 SW |
428 | - name: "buildman uniphier" |
429 | env: | |
5eba31c3 | 430 | - BUILDMAN="uniphier" |
a032e0a6 SW |
431 | - name: "buildman catch-all AArch64" |
432 | env: | |
2d4cd12d | 433 | - BUILDMAN="aarch64 -x bcm,k3,tegra,ls1,ls2,lx216,mvebu,uniphier,sunxi,samsung,socfpga,rk,versal,zynq" |
a032e0a6 SW |
434 | - name: "buildman rockchip" |
435 | env: | |
2d4cd12d | 436 | - BUILDMAN="rk -x orangepi" |
a032e0a6 SW |
437 | - name: "buildman sh" |
438 | env: | |
439 | - BUILDMAN="sh -x arm" | |
4c58d273 | 440 | TOOLCHAIN="sh" |
568356d8 | 441 | - name: "buildman Zynq* (ARMv7)" |
a032e0a6 | 442 | env: |
568356d8 TR |
443 | - BUILDMAN="zynq&armv7" |
444 | - name: "buildman ZynqMP and Versal" | |
445 | env: | |
446 | - BUILDMAN="versal|zynqmp&aarch64" | |
a032e0a6 SW |
447 | - name: "buildman xtensa" |
448 | env: | |
76761e7f | 449 | - BUILDMAN="xtensa" |
b6f3a12e | 450 | TOOLCHAIN="xtensa-dc233c-elf" |
a032e0a6 SW |
451 | - name: "buildman riscv" |
452 | env: | |
b6896fcb RC |
453 | - BUILDMAN="riscv" |
454 | TOOLCHAIN="riscv" | |
f715ed45 RC |
455 | - name: "buildman nds32" |
456 | env: | |
457 | - BUILDMAN="nds32" | |
458 | TOOLCHAIN="nds32" | |
c7cb334d MR |
459 | |
460 | # QA jobs for code analytics | |
461 | # static code analysis with cppcheck (we can add --enable=all later) | |
a032e0a6 | 462 | - name: "cppcheck" |
d7882210 | 463 | script: |
4ee7f527 | 464 | - cppcheck -j$(nproc) --force --quiet --inline-suppr . |
bb9a76ea HS |
465 | # build HTML documentation |
466 | - name: "htmldocs" | |
467 | script: | |
468 | - make htmldocs | |
c7cb334d | 469 | # search for TODO within source tree |
a032e0a6 | 470 | - name: "grep TODO" |
d7882210 | 471 | script: |
c85b52e4 | 472 | - grep -r TODO . |
c7cb334d | 473 | # search for FIXME within source tree |
a032e0a6 | 474 | - name: "grep FIXME HACK" |
d7882210 | 475 | script: |
c85b52e4 | 476 | - grep -r FIXME . |
c7cb334d | 477 | # search for HACK within source tree and ignore HACKKIT board |
c7cb334d MR |
478 | script: |
479 | - grep -r HACK . | grep -v HACKKIT | |
480 | # some statistics about the code base | |
a032e0a6 | 481 | - name: "sloccount" |
d7882210 | 482 | script: |
c85b52e4 | 483 | - sloccount . |
ee168783 TR |
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 | |
80870e2a OS |
488 | # Ensure host tools build |
489 | - name: "Build tools-only" | |
490 | script: | |
491 | - make tools-only_config tools-only -j$(nproc) | |
1f3910da PJT |
492 | # Ensure env tools build |
493 | - name: "Build envtools" | |
494 | script: | |
495 | - make tools-only_config envtools -j$(nproc) | |
8304f053 | 496 | |
6cfd09d4 T |
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 | ||
07bf2122 | 502 | # test/py |
a032e0a6 SW |
503 | - name: "test/py sandbox" |
504 | env: | |
8304f053 | 505 | - TEST_PY_BD="sandbox" |
0533fb8b | 506 | TOOLCHAIN="i386" |
4030f166 TR |
507 | - name: "test/py sandbox with clang" |
508 | env: | |
509 | - TEST_PY_BD="sandbox" | |
98178bdc | 510 | OVERRIDE="-O clang-10" |
a032e0a6 SW |
511 | - name: "test/py sandbox_spl" |
512 | env: | |
40c8d26a | 513 | - TEST_PY_BD="sandbox_spl" |
e28e9db6 | 514 | TEST_PY_TEST_SPEC="test_ofplatdata or test_handoff" |
0533fb8b | 515 | TOOLCHAIN="i386" |
f2d07788 | 516 | TEST_PY_TOOLS="yes" |
a032e0a6 SW |
517 | - name: "test/py sandbox_flattree" |
518 | env: | |
40c8d26a | 519 | - TEST_PY_BD="sandbox_flattree" |
0533fb8b | 520 | TOOLCHAIN="i386" |
998dc83a JS |
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" | |
a032e0a6 SW |
526 | - name: "test/py vexpress_ca15_tc2" |
527 | env: | |
8304f053 SW |
528 | - TEST_PY_BD="vexpress_ca15_tc2" |
529 | TEST_PY_ID="--id qemu" | |
3c643fb0 | 530 | QEMU_TARGET="arm-softmmu" |
a032e0a6 SW |
531 | - name: "test/py vexpress_ca9x4" |
532 | env: | |
8304f053 SW |
533 | - TEST_PY_BD="vexpress_ca9x4" |
534 | TEST_PY_ID="--id qemu" | |
3c643fb0 | 535 | QEMU_TARGET="arm-softmmu" |
a032e0a6 SW |
536 | - name: "test/py integratorcp_cm926ejs" |
537 | env: | |
8304f053 | 538 | - TEST_PY_BD="integratorcp_cm926ejs" |
78992845 | 539 | TEST_PY_TEST_SPEC="not sleep" |
8304f053 | 540 | TEST_PY_ID="--id qemu" |
3c643fb0 | 541 | QEMU_TARGET="arm-softmmu" |
a032e0a6 SW |
542 | - name: "test/py qemu_arm" |
543 | env: | |
7b09dffc TT |
544 | - TEST_PY_BD="qemu_arm" |
545 | TEST_PY_TEST_SPEC="not sleep" | |
546 | QEMU_TARGET="arm-softmmu" | |
a032e0a6 SW |
547 | - name: "test/py qemu_arm64" |
548 | env: | |
a5bee507 TT |
549 | - TEST_PY_BD="qemu_arm64" |
550 | TEST_PY_TEST_SPEC="not sleep" | |
551 | QEMU_TARGET="aarch64-softmmu" | |
a032e0a6 SW |
552 | - name: "test/py qemu_mips" |
553 | env: | |
8304f053 SW |
554 | - TEST_PY_BD="qemu_mips" |
555 | TEST_PY_TEST_SPEC="not sleep" | |
3c643fb0 | 556 | QEMU_TARGET="mips-softmmu" |
8304f053 | 557 | TOOLCHAIN="mips" |
a032e0a6 SW |
558 | - name: "test/py qemu_mipsel" |
559 | env: | |
8304f053 SW |
560 | - TEST_PY_BD="qemu_mipsel" |
561 | TEST_PY_TEST_SPEC="not sleep" | |
3c643fb0 | 562 | QEMU_TARGET="mipsel-softmmu" |
8304f053 | 563 | TOOLCHAIN="mips" |
a032e0a6 SW |
564 | - name: "test/py qemu_mips64" |
565 | env: | |
8304f053 SW |
566 | - TEST_PY_BD="qemu_mips64" |
567 | TEST_PY_TEST_SPEC="not sleep" | |
3c643fb0 | 568 | QEMU_TARGET="mips64-softmmu" |
8304f053 | 569 | TOOLCHAIN="mips" |
a032e0a6 SW |
570 | - name: "test/py qemu_mips64el" |
571 | env: | |
8304f053 SW |
572 | - TEST_PY_BD="qemu_mips64el" |
573 | TEST_PY_TEST_SPEC="not sleep" | |
3c643fb0 | 574 | QEMU_TARGET="mips64el-softmmu" |
8304f053 | 575 | TOOLCHAIN="mips" |
a032e0a6 SW |
576 | - name: "test/py qemu-ppce500" |
577 | env: | |
8304f053 SW |
578 | - TEST_PY_BD="qemu-ppce500" |
579 | TEST_PY_TEST_SPEC="not sleep" | |
3c643fb0 | 580 | QEMU_TARGET="ppc-softmmu" |
4c58d273 | 581 | TOOLCHAIN="powerpc" |
a379d330 BM |
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" | |
a379d330 | 587 | TOOLCHAIN="riscv" |
22c7b7d6 HS |
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" | |
22c7b7d6 | 593 | TOOLCHAIN="riscv" |
49fb28a4 BM |
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" | |
49fb28a4 BM |
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" | |
49fb28a4 | 605 | TOOLCHAIN="riscv" |
a032e0a6 SW |
606 | - name: "test/py qemu-x86" |
607 | env: | |
8304f053 SW |
608 | - TEST_PY_BD="qemu-x86" |
609 | TEST_PY_TEST_SPEC="not sleep" | |
3c643fb0 | 610 | QEMU_TARGET="i386-softmmu" |
0533fb8b | 611 | TOOLCHAIN="i386" |
8304f053 | 612 | BUILD_ROM="yes" |
3fdfca7a BM |
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" | |
3fdfca7a BM |
618 | TOOLCHAIN="i386" |
619 | BUILD_ROM="yes" | |
f7c6ee7f | 620 | - name: "test/py xilinx_zynq_virt" |
a032e0a6 | 621 | env: |
f7c6ee7f | 622 | - TEST_PY_BD="xilinx_zynq_virt" |
41122d37 MS |
623 | TEST_PY_TEST_SPEC="not sleep" |
624 | QEMU_TARGET="arm-softmmu" | |
625 | TEST_PY_ID="--id qemu" | |
d9eaae3b MS |
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" | |
a032e0a6 SW |
632 | - name: "test/py xtfpga" |
633 | env: | |
4d690094 MF |
634 | - TEST_PY_BD="xtfpga" |
635 | TEST_PY_TEST_SPEC="not sleep" | |
636 | QEMU_TARGET="xtensa-softmmu" | |
637 | TEST_PY_ID="--id qemu" | |
4d690094 | 638 | TOOLCHAIN="xtensa-dc233c-elf" |
c7cb334d | 639 | |
c7cb334d | 640 | # TODO make it perfect ;-r |