]>
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 |
f36f15b6 | 26 | - python3-sphinx |
085b8978 TR |
27 | - python3-virtualenv |
28 | - python3-pip | |
f2b0c007 TR |
29 | - swig |
30 | - libpython-dev | |
cd402e01 | 31 | - iasl |
0e4e38ae | 32 | - grub-efi-ia32-bin |
66a3a9cf | 33 | - grub-efi-amd64-bin |
0e4e38ae AG |
34 | - rpm2cpio |
35 | - wget | |
36dd5f1b | 36 | - device-tree-compiler |
706f0775 | 37 | - lzop |
83d73c2f | 38 | - liblz4-tool |
4997a7ed | 39 | - lzma-alone |
4030f166 | 40 | - libisl15 |
98178bdc | 41 | - clang-10 |
aa2e9c9e | 42 | - srecord |
bb9a76ea | 43 | - graphviz |
5bf1ea63 AT |
44 | - coreutils |
45 | - util-linux | |
46 | - dosfstools | |
47 | - gdisk | |
48 | - mount | |
49 | - mtools | |
50 | - openssl | |
51 | - sbsigntool | |
6cfd09d4 T |
52 | - fakeroot |
53 | - mtd-utils | |
e1ecfc12 | 54 | - squashfs-tools |
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 | 206 | - if [[ "${TEST_PY_BD}" == "qemu-riscv32_spl" ]]; then |
d20d0a57 BM |
207 | wget -O - https://github.com/riscv/opensbi/releases/download/v0.8/opensbi-0.8-rv-bin.tar.xz | tar -C /tmp -xJ; |
208 | export OPENSBI=/tmp/opensbi-0.8-rv-bin/share/opensbi/ilp32/generic/firmware/fw_dynamic.bin; | |
49fb28a4 BM |
209 | fi |
210 | - if [[ "${TEST_PY_BD}" == "qemu-riscv64_spl" ]]; then | |
d20d0a57 BM |
211 | wget -O - https://github.com/riscv/opensbi/releases/download/v0.8/opensbi-0.8-rv-bin.tar.xz | tar -C /tmp -xJ; |
212 | export OPENSBI=/tmp/opensbi-0.8-rv-bin/share/opensbi/lp64/generic/firmware/fw_dynamic.bin; | |
49fb28a4 | 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; | |
f3092473 | 253 | ./test/py/test.py -ra --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}"; | |
fc341421 | 259 | pip install pyelftools && |
26a426a1 | 260 | ./tools/binman/binman --toolpath ${UBOOT_TRAVIS_BUILD_DIR}/tools test && |
6bb74de7 | 261 | ./tools/patman/patman test && |
26a426a1 | 262 | ./tools/buildman/buildman -t && |
7261833f TR |
263 | ./tools/dtoc/dtoc -t && |
264 | make testconfig; | |
26a426a1 | 265 | fi; |
8304f053 | 266 | fi |
c7cb334d MR |
267 | |
268 | matrix: | |
269 | include: | |
270 | # we need to build by vendor due to 50min time limit for builds | |
271 | # each env setting here is a dedicated build | |
a032e0a6 SW |
272 | - name: "buildman arc" |
273 | env: | |
80e4bbfc AB |
274 | - BUILDMAN="arc" |
275 | TOOLCHAIN="arc" | |
a032e0a6 SW |
276 | - name: "buildman arm11 arm7 arm920t arm946es" |
277 | env: | |
dca268a8 | 278 | - BUILDMAN="arm11 arm7 arm920t arm946es" |
72522749 | 279 | - name: "buildman arm926ejs (non-NXP,siemens,at91,kirkwood,spear)" |
a032e0a6 | 280 | env: |
baade496 | 281 | - JOB="arm926ejs" |
72522749 EH |
282 | BUILDMAN="arm926ejs -x freescale,siemens,at91,kirkwood,spear,omap" |
283 | - name: "buildman at91 (non arm v7)" | |
a032e0a6 | 284 | env: |
72522749 EH |
285 | - BUILDMAN="at91 -x armv7" |
286 | - name: "buildman at91 (non arm926ejs)" | |
287 | env: | |
288 | - BUILDMAN="at91 -x arm926ejs" | |
a032e0a6 SW |
289 | - name: "buildman boundary engicam toradex" |
290 | env: | |
291 | - BUILDMAN="boundary engicam toradex" | |
7a779ed1 | 292 | - name: "buildman ARM bcm" |
50aeb3ae | 293 | env: |
7a779ed1 | 294 | - BUILDMAN="bcm -x mips" |
af771625 | 295 | - name: "buildman NXP ARM32 (catch-all)" |
a032e0a6 | 296 | env: |
af771625 HS |
297 | - BUILDMAN="freescale -x powerpc,m68k,aarch64,ls101,ls102,ls104,ls108,ls20,lx216" |
298 | - name: "buildman NXP LS101x" | |
a032e0a6 | 299 | env: |
af771625 HS |
300 | - BUILDMAN="freescale&ls101" |
301 | - name: "buildman NXP LS102x" | |
5845ac12 | 302 | env: |
af771625 HS |
303 | - BUILDMAN="freescale&ls102" |
304 | - name: "buildman NXP LS104x" | |
818408e2 | 305 | env: |
af771625 HS |
306 | - BUILDMAN="freescale&ls104" |
307 | - name: "buildman NXP LS108x" | |
aa132612 | 308 | env: |
af771625 HS |
309 | - BUILDMAN="freescale&ls108" |
310 | - name: "buildman NXP LS20xx" | |
aa132612 | 311 | env: |
af771625 HS |
312 | - BUILDMAN="freescale&ls20" |
313 | - name: "buildman NXP LX216x" | |
5845ac12 | 314 | env: |
af771625 | 315 | - BUILDMAN="freescale&lx216" |
984c0051 | 316 | - name: "buildman i.MX6 tqc" |
a032e0a6 | 317 | env: |
984c0051 TR |
318 | - BUILDMAN="mx6&tqc" |
319 | - name: "buildman i.MX6 (catch-all)" | |
a032e0a6 | 320 | env: |
984c0051 TR |
321 | - BUILDMAN="mx6 -x boundary,engicam,freescale,technexion,toradex,tqc" |
322 | - name: "buildman i.MX (non-i.MX6 catch-all)" | |
323 | env: | |
324 | - BUILDMAN="mx -x freescale,mx6,toradex,technexion" | |
548aefa5 | 325 | - name: "buildman keystone 2/3" |
a032e0a6 | 326 | env: |
548aefa5 | 327 | - BUILDMAN="k2 k3" |
a032e0a6 SW |
328 | - name: "buildman samsung socfpga" |
329 | env: | |
dca268a8 | 330 | - BUILDMAN="samsung socfpga" |
818408e2 TR |
331 | - name: "buildman spear" |
332 | env: | |
333 | - BUILDMAN="spear" | |
a032e0a6 SW |
334 | - name: "buildman sun4i" |
335 | env: | |
baade496 | 336 | - BUILDMAN="sun4i" |
a032e0a6 SW |
337 | - name: "buildman sun5i" |
338 | env: | |
baade496 | 339 | - BUILDMAN="sun5i" |
a032e0a6 SW |
340 | - name: "buildman sun6i" |
341 | env: | |
baade496 | 342 | - BUILDMAN="sun6i" |
b5ddd070 | 343 | - name: "buildman sun7i" |
a032e0a6 | 344 | env: |
baade496 | 345 | - BUILDMAN="sun7i" |
95b22154 | 346 | - name: "buildman 64bit sun8i" |
a032e0a6 | 347 | env: |
56d35f2e | 348 | - BUILDMAN="sun8i&aarch64 -x orangepi" |
95b22154 TR |
349 | - name: "buildman 32bit sun8i" |
350 | env: | |
56d35f2e | 351 | - BUILDMAN="sun8i&armv7 -x orangepi" |
a032e0a6 SW |
352 | - name: "buildman sun9i" |
353 | env: | |
baade496 | 354 | - BUILDMAN="sun9i" |
a032e0a6 SW |
355 | - name: "buildman sun50i" |
356 | env: | |
56d35f2e | 357 | - BUILDMAN="sun50i -x orangepi" |
a032e0a6 SW |
358 | - name: "buildman catch-all ARM" |
359 | env: | |
2d4cd12d | 360 | - 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 |
361 | - name: "buildman sandbox x86" |
362 | env: | |
050c7569 | 363 | - BUILDMAN="sandbox x86" |
0533fb8b | 364 | TOOLCHAIN="i386" |
984c0051 TR |
365 | - name: "buildman technexion" |
366 | env: | |
367 | - BUILDMAN="technexion" | |
b684d403 | 368 | - name: "buildman kirkwood" |
a032e0a6 | 369 | env: |
b684d403 | 370 | - BUILDMAN="kirkwood" |
a032e0a6 SW |
371 | - name: "buildman mvebu" |
372 | env: | |
0bf1bc44 | 373 | - BUILDMAN="mvebu" |
a032e0a6 SW |
374 | - name: "buildman m68k" |
375 | env: | |
050c7569 RM |
376 | - BUILDMAN="m68k" |
377 | TOOLCHAIN="m68k" | |
a032e0a6 SW |
378 | - name: "buildman microblaze" |
379 | env: | |
0d3aaa35 | 380 | - BUILDMAN="microblaze" |
76761e7f | 381 | TOOLCHAIN="microblaze" |
a032e0a6 SW |
382 | - name: "buildman mips" |
383 | env: | |
050c7569 RM |
384 | - BUILDMAN="mips" |
385 | TOOLCHAIN="mips" | |
a032e0a6 SW |
386 | - name: "buildman non-Freescale PowerPC" |
387 | env: | |
388 | - BUILDMAN="powerpc -x freescale" | |
4c58d273 | 389 | TOOLCHAIN="powerpc" |
a032e0a6 SW |
390 | - name: "buildman mpc85xx&freescale (excluding many)" |
391 | env: | |
dca268a8 | 392 | - BUILDMAN="mpc85xx&freescale -x t208xrdb -x t4qds -x t102* -x p1_p2_rdb_pc -x p1010rdb -x corenet_ds -x b4860qds -x bsc91*" |
4c58d273 | 393 | TOOLCHAIN="powerpc" |
a032e0a6 SW |
394 | - name: "buildman t208xrdb corenet_ds" |
395 | env: | |
dca268a8 | 396 | - BUILDMAN="t208xrdb corenet_ds" |
4c58d273 | 397 | TOOLCHAIN="powerpc" |
a032e0a6 SW |
398 | - name: "buildman Freescale PowerPC" |
399 | env: | |
dca268a8 | 400 | - BUILDMAN="t4qds b4860qds mpc83xx&freescale mpc86xx&freescale" |
4c58d273 | 401 | TOOLCHAIN="powerpc" |
a032e0a6 SW |
402 | - name: "buildman t102*" |
403 | env: | |
9464dd56 | 404 | - BUILDMAN="t102*" |
4c58d273 | 405 | TOOLCHAIN="powerpc" |
a032e0a6 SW |
406 | - name: "buildman p1_p2_rdb_pc" |
407 | env: | |
afdf09ac | 408 | - BUILDMAN="p1_p2_rdb_pc" |
4c58d273 | 409 | TOOLCHAIN="powerpc" |
a032e0a6 SW |
410 | - name: "buildman p1010rdb bsc91" |
411 | env: | |
dca268a8 | 412 | - BUILDMAN="p1010rdb bsc91" |
4c58d273 | 413 | TOOLCHAIN="powerpc" |
a032e0a6 SW |
414 | - name: "buildman siemens" |
415 | env: | |
050c7569 | 416 | - BUILDMAN="siemens" |
a032e0a6 SW |
417 | - name: "buildman tegra" |
418 | env: | |
419 | - BUILDMAN="tegra -x toradex" | |
420 | - name: "buildman am33xx (no siemens)" | |
421 | env: | |
422 | - BUILDMAN="am33xx -x siemens" | |
423 | - name: "buildman omap" | |
424 | env: | |
dca268a8 | 425 | - BUILDMAN="omap" |
56d35f2e HS |
426 | - name: "buildman orangepi" |
427 | env: | |
428 | - BUILDMAN="orangepi" | |
a032e0a6 SW |
429 | - name: "buildman uniphier" |
430 | env: | |
5eba31c3 | 431 | - BUILDMAN="uniphier" |
a032e0a6 SW |
432 | - name: "buildman catch-all AArch64" |
433 | env: | |
2d4cd12d | 434 | - BUILDMAN="aarch64 -x bcm,k3,tegra,ls1,ls2,lx216,mvebu,uniphier,sunxi,samsung,socfpga,rk,versal,zynq" |
a032e0a6 SW |
435 | - name: "buildman rockchip" |
436 | env: | |
2d4cd12d | 437 | - BUILDMAN="rk -x orangepi" |
a032e0a6 SW |
438 | - name: "buildman sh" |
439 | env: | |
440 | - BUILDMAN="sh -x arm" | |
4c58d273 | 441 | TOOLCHAIN="sh" |
568356d8 | 442 | - name: "buildman Zynq* (ARMv7)" |
a032e0a6 | 443 | env: |
568356d8 TR |
444 | - BUILDMAN="zynq&armv7" |
445 | - name: "buildman ZynqMP and Versal" | |
446 | env: | |
447 | - BUILDMAN="versal|zynqmp&aarch64" | |
a032e0a6 SW |
448 | - name: "buildman xtensa" |
449 | env: | |
76761e7f | 450 | - BUILDMAN="xtensa" |
b6f3a12e | 451 | TOOLCHAIN="xtensa-dc233c-elf" |
a032e0a6 SW |
452 | - name: "buildman riscv" |
453 | env: | |
b6896fcb RC |
454 | - BUILDMAN="riscv" |
455 | TOOLCHAIN="riscv" | |
f715ed45 RC |
456 | - name: "buildman nds32" |
457 | env: | |
458 | - BUILDMAN="nds32" | |
459 | TOOLCHAIN="nds32" | |
c7cb334d MR |
460 | |
461 | # QA jobs for code analytics | |
462 | # static code analysis with cppcheck (we can add --enable=all later) | |
a032e0a6 | 463 | - name: "cppcheck" |
d7882210 | 464 | script: |
4ee7f527 | 465 | - cppcheck -j$(nproc) --force --quiet --inline-suppr . |
bb9a76ea HS |
466 | # build HTML documentation |
467 | - name: "htmldocs" | |
468 | script: | |
469 | - make htmldocs | |
c7cb334d | 470 | # search for TODO within source tree |
a032e0a6 | 471 | - name: "grep TODO" |
d7882210 | 472 | script: |
c85b52e4 | 473 | - grep -r TODO . |
c7cb334d | 474 | # search for FIXME within source tree |
a032e0a6 | 475 | - name: "grep FIXME HACK" |
d7882210 | 476 | script: |
c85b52e4 | 477 | - grep -r FIXME . |
c7cb334d | 478 | # search for HACK within source tree and ignore HACKKIT board |
c7cb334d MR |
479 | script: |
480 | - grep -r HACK . | grep -v HACKKIT | |
481 | # some statistics about the code base | |
a032e0a6 | 482 | - name: "sloccount" |
d7882210 | 483 | script: |
c85b52e4 | 484 | - sloccount . |
ee168783 TR |
485 | # ensure all configs have MAINTAINERS entries |
486 | - name: "Check for configs without MAINTAINERS entry" | |
487 | script: | |
488 | - if [ `./tools/genboardscfg.py -f 2>&1 | wc -l` -ne 0 ]; then exit 1; fi | |
80870e2a OS |
489 | # Ensure host tools build |
490 | - name: "Build tools-only" | |
491 | script: | |
492 | - make tools-only_config tools-only -j$(nproc) | |
1f3910da PJT |
493 | # Ensure env tools build |
494 | - name: "Build envtools" | |
495 | script: | |
496 | - make tools-only_config envtools -j$(nproc) | |
8304f053 | 497 | |
6cfd09d4 T |
498 | - name: "Run tests for Nokia RX-51 (aka N900)" |
499 | script: | |
500 | - export PATH=~/.buildman-toolchains/gcc-9.2.0-nolibc/arm-linux-gnueabi/bin/:$PATH | |
501 | - test/nokia_rx51_test.sh | |
502 | ||
07bf2122 | 503 | # test/py |
a032e0a6 SW |
504 | - name: "test/py sandbox" |
505 | env: | |
8304f053 | 506 | - TEST_PY_BD="sandbox" |
0533fb8b | 507 | TOOLCHAIN="i386" |
4030f166 TR |
508 | - name: "test/py sandbox with clang" |
509 | env: | |
510 | - TEST_PY_BD="sandbox" | |
98178bdc | 511 | OVERRIDE="-O clang-10" |
a032e0a6 SW |
512 | - name: "test/py sandbox_spl" |
513 | env: | |
40c8d26a | 514 | - TEST_PY_BD="sandbox_spl" |
e28e9db6 | 515 | TEST_PY_TEST_SPEC="test_ofplatdata or test_handoff" |
0533fb8b | 516 | TOOLCHAIN="i386" |
f2d07788 | 517 | TEST_PY_TOOLS="yes" |
a032e0a6 SW |
518 | - name: "test/py sandbox_flattree" |
519 | env: | |
40c8d26a | 520 | - TEST_PY_BD="sandbox_flattree" |
0533fb8b | 521 | TOOLCHAIN="i386" |
998dc83a JS |
522 | - name: "test/py evb-ast2500" |
523 | env: | |
524 | - TEST_PY_BD="evb-ast2500" | |
525 | TEST_PY_ID="--id qemu" | |
526 | QEMU_TARGET="arm-softmmu" | |
a032e0a6 SW |
527 | - name: "test/py vexpress_ca15_tc2" |
528 | env: | |
8304f053 SW |
529 | - TEST_PY_BD="vexpress_ca15_tc2" |
530 | TEST_PY_ID="--id qemu" | |
3c643fb0 | 531 | QEMU_TARGET="arm-softmmu" |
a032e0a6 SW |
532 | - name: "test/py vexpress_ca9x4" |
533 | env: | |
8304f053 SW |
534 | - TEST_PY_BD="vexpress_ca9x4" |
535 | TEST_PY_ID="--id qemu" | |
3c643fb0 | 536 | QEMU_TARGET="arm-softmmu" |
a032e0a6 SW |
537 | - name: "test/py integratorcp_cm926ejs" |
538 | env: | |
8304f053 | 539 | - TEST_PY_BD="integratorcp_cm926ejs" |
78992845 | 540 | TEST_PY_TEST_SPEC="not sleep" |
8304f053 | 541 | TEST_PY_ID="--id qemu" |
3c643fb0 | 542 | QEMU_TARGET="arm-softmmu" |
a032e0a6 SW |
543 | - name: "test/py qemu_arm" |
544 | env: | |
7b09dffc TT |
545 | - TEST_PY_BD="qemu_arm" |
546 | TEST_PY_TEST_SPEC="not sleep" | |
547 | QEMU_TARGET="arm-softmmu" | |
a032e0a6 SW |
548 | - name: "test/py qemu_arm64" |
549 | env: | |
a5bee507 TT |
550 | - TEST_PY_BD="qemu_arm64" |
551 | TEST_PY_TEST_SPEC="not sleep" | |
552 | QEMU_TARGET="aarch64-softmmu" | |
a032e0a6 SW |
553 | - name: "test/py qemu_mips" |
554 | env: | |
8304f053 SW |
555 | - TEST_PY_BD="qemu_mips" |
556 | TEST_PY_TEST_SPEC="not sleep" | |
3c643fb0 | 557 | QEMU_TARGET="mips-softmmu" |
8304f053 | 558 | TOOLCHAIN="mips" |
a032e0a6 SW |
559 | - name: "test/py qemu_mipsel" |
560 | env: | |
8304f053 SW |
561 | - TEST_PY_BD="qemu_mipsel" |
562 | TEST_PY_TEST_SPEC="not sleep" | |
3c643fb0 | 563 | QEMU_TARGET="mipsel-softmmu" |
8304f053 | 564 | TOOLCHAIN="mips" |
a032e0a6 SW |
565 | - name: "test/py qemu_mips64" |
566 | env: | |
8304f053 SW |
567 | - TEST_PY_BD="qemu_mips64" |
568 | TEST_PY_TEST_SPEC="not sleep" | |
3c643fb0 | 569 | QEMU_TARGET="mips64-softmmu" |
8304f053 | 570 | TOOLCHAIN="mips" |
a032e0a6 SW |
571 | - name: "test/py qemu_mips64el" |
572 | env: | |
8304f053 SW |
573 | - TEST_PY_BD="qemu_mips64el" |
574 | TEST_PY_TEST_SPEC="not sleep" | |
3c643fb0 | 575 | QEMU_TARGET="mips64el-softmmu" |
8304f053 | 576 | TOOLCHAIN="mips" |
d985aaa5 DS |
577 | - name: "test/py qemu-malta" |
578 | env: | |
579 | - TEST_PY_BD="malta" | |
580 | TEST_PY_TEST_SPEC="not sleep and not efi" | |
581 | TEST_PY_ID="--id qemu" | |
582 | QEMU_TARGET="mips-softmmu" | |
583 | TOOLCHAIN="mips" | |
584 | - name: "test/py qemu-maltael" | |
585 | env: | |
586 | - TEST_PY_BD="maltael" | |
587 | TEST_PY_TEST_SPEC="not sleep and not efi" | |
588 | TEST_PY_ID="--id qemu" | |
589 | QEMU_TARGET="mipsel-softmmu" | |
590 | TOOLCHAIN="mips" | |
591 | - name: "test/py qemu-malta64" | |
592 | env: | |
593 | - TEST_PY_BD="malta64" | |
594 | TEST_PY_TEST_SPEC="not sleep and not efi" | |
595 | TEST_PY_ID="--id qemu" | |
596 | QEMU_TARGET="mips64-softmmu" | |
597 | TOOLCHAIN="mips" | |
598 | - name: "test/py qemu-malta64el" | |
599 | env: | |
600 | - TEST_PY_BD="malta64el" | |
601 | TEST_PY_TEST_SPEC="not sleep and not efi" | |
602 | TEST_PY_ID="--id qemu" | |
603 | QEMU_TARGET="mips64el-softmmu" | |
604 | TOOLCHAIN="mips" | |
a032e0a6 SW |
605 | - name: "test/py qemu-ppce500" |
606 | env: | |
8304f053 SW |
607 | - TEST_PY_BD="qemu-ppce500" |
608 | TEST_PY_TEST_SPEC="not sleep" | |
3c643fb0 | 609 | QEMU_TARGET="ppc-softmmu" |
4c58d273 | 610 | TOOLCHAIN="powerpc" |
a379d330 BM |
611 | - name: "test/py qemu-riscv32" |
612 | env: | |
613 | - TEST_PY_BD="qemu-riscv32" | |
614 | TEST_PY_TEST_SPEC="not sleep" | |
615 | QEMU_TARGET="riscv32-softmmu" | |
a379d330 | 616 | TOOLCHAIN="riscv" |
22c7b7d6 HS |
617 | - name: "test/py qemu-riscv64" |
618 | env: | |
619 | - TEST_PY_BD="qemu-riscv64" | |
620 | TEST_PY_TEST_SPEC="not sleep" | |
621 | QEMU_TARGET="riscv64-softmmu" | |
22c7b7d6 | 622 | TOOLCHAIN="riscv" |
49fb28a4 BM |
623 | - name: "test/py qemu-riscv32_spl" |
624 | env: | |
625 | - TEST_PY_BD="qemu-riscv32_spl" | |
626 | TEST_PY_TEST_SPEC="not sleep" | |
627 | QEMU_TARGET="riscv32-softmmu" | |
49fb28a4 BM |
628 | TOOLCHAIN="riscv" |
629 | - name: "test/py qemu-riscv64_spl" | |
630 | env: | |
631 | - TEST_PY_BD="qemu-riscv64_spl" | |
632 | TEST_PY_TEST_SPEC="not sleep" | |
633 | QEMU_TARGET="riscv64-softmmu" | |
49fb28a4 | 634 | TOOLCHAIN="riscv" |
a032e0a6 SW |
635 | - name: "test/py qemu-x86" |
636 | env: | |
8304f053 SW |
637 | - TEST_PY_BD="qemu-x86" |
638 | TEST_PY_TEST_SPEC="not sleep" | |
3c643fb0 | 639 | QEMU_TARGET="i386-softmmu" |
0533fb8b | 640 | TOOLCHAIN="i386" |
8304f053 | 641 | BUILD_ROM="yes" |
3fdfca7a BM |
642 | - name: "test/py qemu-x86_64" |
643 | env: | |
644 | - TEST_PY_BD="qemu-x86_64" | |
645 | TEST_PY_TEST_SPEC="not sleep" | |
646 | QEMU_TARGET="x86_64-softmmu" | |
3fdfca7a BM |
647 | TOOLCHAIN="i386" |
648 | BUILD_ROM="yes" | |
0e125756 MV |
649 | - name: "test/py r2dplus_i82557c" |
650 | env: | |
651 | - TEST_PY_BD="r2dplus" | |
652 | TEST_PY_ID="--id i82557c_qemu" | |
653 | QEMU_TARGET="sh4-softmmu" | |
654 | BUILDMAN="sh -x arm" | |
655 | TOOLCHAIN="sh" | |
656 | - name: "test/py r2dplus_pcnet" | |
657 | env: | |
658 | - TEST_PY_BD="r2dplus" | |
659 | TEST_PY_ID="--id pcnet_qemu" | |
660 | QEMU_TARGET="sh4-softmmu" | |
661 | BUILDMAN="sh -x arm" | |
662 | TOOLCHAIN="sh" | |
663 | - name: "test/py r2dplus_rtl8139" | |
664 | env: | |
665 | - TEST_PY_BD="r2dplus" | |
666 | TEST_PY_ID="--id rtl8139_qemu" | |
667 | QEMU_TARGET="sh4-softmmu" | |
668 | BUILDMAN="sh -x arm" | |
669 | TOOLCHAIN="sh" | |
670 | - name: "test/py r2dplus_tulip" | |
671 | env: | |
672 | - TEST_PY_BD="r2dplus" | |
673 | TEST_PY_ID="--id tulip_qemu" | |
674 | QEMU_TARGET="sh4-softmmu" | |
675 | BUILDMAN="sh -x arm" | |
676 | TOOLCHAIN="sh" | |
f7c6ee7f | 677 | - name: "test/py xilinx_zynq_virt" |
a032e0a6 | 678 | env: |
f7c6ee7f | 679 | - TEST_PY_BD="xilinx_zynq_virt" |
41122d37 MS |
680 | TEST_PY_TEST_SPEC="not sleep" |
681 | QEMU_TARGET="arm-softmmu" | |
682 | TEST_PY_ID="--id qemu" | |
d9eaae3b MS |
683 | - name: "test/py xilinx_versal_virt" |
684 | env: | |
685 | - TEST_PY_BD="xilinx_versal_virt" | |
686 | TEST_PY_TEST_SPEC="not sleep" | |
687 | QEMU_TARGET="aarch64-softmmu" | |
688 | TEST_PY_ID="--id qemu" | |
a032e0a6 SW |
689 | - name: "test/py xtfpga" |
690 | env: | |
4d690094 MF |
691 | - TEST_PY_BD="xtfpga" |
692 | TEST_PY_TEST_SPEC="not sleep" | |
693 | QEMU_TARGET="xtensa-softmmu" | |
694 | TEST_PY_ID="--id qemu" | |
4d690094 | 695 | TOOLCHAIN="xtensa-dc233c-elf" |
c7cb334d | 696 | |
c7cb334d | 697 | # TODO make it perfect ;-r |