1 # SPDX-License-Identifier: GPL-2.0+
3 # Grab our configured image. The source for this is found
4 # in the u-boot tree at tools/docker/Dockerfile
5 image: trini/u-boot-gitlab-ci-runner:jammy-20221003-07Oct2022
7 # We run some tests in different order, to catch some failures quicker.
13 .buildman_and_testpy_template: &buildman_and_testpy_dfn
16 # Clone uboot-test-hooks
17 - git clone --depth=1 https://source.denx.de/u-boot/u-boot-test-hooks /tmp/uboot-test-hooks
18 - ln -s travis-ci /tmp/uboot-test-hooks/bin/`hostname`
19 - ln -s travis-ci /tmp/uboot-test-hooks/py/`hostname`
20 - grub-mkimage --prefix="" -o ~/grub_x86.efi -O i386-efi normal echo lsefimmap lsefi lsefisystab efinet tftp minicmd
21 - grub-mkimage --prefix="" -o ~/grub_x64.efi -O x86_64-efi normal echo lsefimmap lsefi lsefisystab efinet tftp minicmd
22 - if [[ "${TEST_PY_BD}" == "qemu-riscv32_spl" ]]; then
23 wget -O - https://github.com/riscv/opensbi/releases/download/v0.9/opensbi-0.9-rv-bin.tar.xz | tar -C /tmp -xJ;
24 export OPENSBI=/tmp/opensbi-0.9-rv-bin/share/opensbi/ilp32/generic/firmware/fw_dynamic.bin;
26 - if [[ "${TEST_PY_BD}" == "qemu-riscv64_spl" ]] || [[ "${TEST_PY_BD}" == "sifive_unleashed" ]]; then
27 wget -O - https://github.com/riscv/opensbi/releases/download/v0.9/opensbi-0.9-rv-bin.tar.xz | tar -C /tmp -xJ;
28 export OPENSBI=/tmp/opensbi-0.9-rv-bin/share/opensbi/lp64/generic/firmware/fw_dynamic.bin;
32 - rm -rf /tmp/uboot-test-hooks /tmp/venv
34 # If we've been asked to use clang only do one configuration.
35 - export UBOOT_TRAVIS_BUILD_DIR=/tmp/${TEST_PY_BD}
36 - echo BUILD_ENV ${BUILD_ENV}
37 - tools/buildman/buildman -o ${UBOOT_TRAVIS_BUILD_DIR} -w -E -W -e
38 --board ${TEST_PY_BD} ${OVERRIDE}
39 - cp ~/grub_x86.efi $UBOOT_TRAVIS_BUILD_DIR/
40 - cp ~/grub_x64.efi $UBOOT_TRAVIS_BUILD_DIR/
41 - cp /opt/grub/grubriscv64.efi $UBOOT_TRAVIS_BUILD_DIR/grub_riscv64.efi
42 - cp /opt/grub/grubaa64.efi $UBOOT_TRAVIS_BUILD_DIR/grub_arm64.efi
43 - cp /opt/grub/grubarm.efi $UBOOT_TRAVIS_BUILD_DIR/grub_arm.efi
44 # create sdcard / spi-nor images for sifive unleashed using genimage
45 - if [[ "${TEST_PY_BD}" == "sifive_unleashed" ]]; then
47 cp ${UBOOT_TRAVIS_BUILD_DIR}/spl/u-boot-spl.bin .;
48 cp ${UBOOT_TRAVIS_BUILD_DIR}/u-boot.itb .;
50 genimage --inputpath . --config board/sifive/unleashed/genimage_sdcard.cfg;
51 cp images/sdcard.img ${UBOOT_TRAVIS_BUILD_DIR}/;
53 genimage --inputpath . --config board/sifive/unleashed/genimage_spi-nor.cfg;
54 cp images/spi-nor.img ${UBOOT_TRAVIS_BUILD_DIR}/;
56 - if [[ "${TEST_PY_BD}" == "coreboot" ]]; then
58 "https://drive.google.com/uc?id=1x6nrtWIyIRPLS2cQBwYTnT2TbOI8UjmM&export=download" |
59 xz -dc >${UBOOT_TRAVIS_BUILD_DIR}/coreboot.rom;
61 "https://drive.google.com/uc?id=149Cz-5SZXHNKpi9xg6R_5XITWohu348y&export=download" >
64 ./cbfstool ${UBOOT_TRAVIS_BUILD_DIR}/coreboot.rom add-flat-binary -f ${UBOOT_TRAVIS_BUILD_DIR}/u-boot.bin -n fallback/payload -c LZMA -l 0x1110000 -e 0x1110000;
66 - virtualenv -p /usr/bin/python3 /tmp/venv
67 - . /tmp/venv/bin/activate
68 - pip install -r test/py/requirements.txt
69 # "${var:+"-k $var"}" expands to "" if $var is empty, "-k $var" if not
70 - export PATH=/opt/qemu/bin:/tmp/uboot-test-hooks/bin:${PATH};
71 export PYTHONPATH=/tmp/uboot-test-hooks/py/travis-ci;
72 ./test/py/test.py -ra --bd ${TEST_PY_BD} ${TEST_PY_ID}
73 ${TEST_PY_TEST_SPEC:+"-k ${TEST_PY_TEST_SPEC}"}
74 --build-dir "$UBOOT_TRAVIS_BUILD_DIR"
75 # It seems that the files in /tmp go away, so copy out what we need
76 - if [[ "${TEST_PY_BD}" == "coreboot" ]]; then
77 cp -v /tmp/coreboot/*.{html,css} .;
80 build all 32bit ARM platforms:
84 ./tools/buildman/buildman -o /tmp -P -E -W arm -x aarch64 || ret=$?;
85 if [[ $ret -ne 0 ]]; then
86 ./tools/buildman/buildman -o /tmp -seP;
90 build all 64bit ARM platforms:
93 - virtualenv -p /usr/bin/python3 /tmp/venv
94 - . /tmp/venv/bin/activate
95 - pip install pyelftools
97 ./tools/buildman/buildman -o /tmp -P -E -W aarch64 || ret=$?;
98 if [[ $ret -ne 0 ]]; then
99 ./tools/buildman/buildman -o /tmp -seP;
103 build all PowerPC platforms:
107 ./tools/buildman/buildman -o /tmp -P -E -W powerpc || ret=$?;
108 if [[ $ret -ne 0 ]]; then
109 ./tools/buildman/buildman -o /tmp -seP;
113 build all other platforms:
117 ./tools/buildman/buildman -o /tmp -P -E -W -x arm,powerpc || ret=$?;
118 if [[ $ret -ne 0 ]]; then
119 ./tools/buildman/buildman -o /tmp -seP;
123 check for migrated symbols in board header:
129 cat `find . -name "Kconfig*"` |
130 sed -n -e 's/^\s*config *\([A-Za-z0-9_]*\).*$/CONFIG_\1/p'
131 -e 's/^\s*menuconfig *\([A-Za-z0-9_]*\).*$/CONFIG_\1/p'
132 | sort -u > $KSYMLST;
133 for CFG in `find include/configs -name "*.h"`; do
134 (grep '#define[[:blank:]]CONFIG_' $CFG |
135 sed -n 's/#define.\(CONFIG_[A-Za-z0-9_]*\).*/\1/p' ;
136 grep '#undef[[:blank:]]CONFIG_' $CFG |
137 sed -n 's/#undef.\(CONFIG_[A-Za-z0-9_]*\).*/\1/p') |
138 sort -u > ${KUSEDLST} || true;
139 NUM=`comm -123 --total --output-delimiter=, ${KSYMLST} ${KUSEDLST} |
141 if [[ $NUM -ne 0 ]]; then
142 echo "Unmigrated symbols found in $CFG:";
143 comm -12 ${KSYMLST} ${KUSEDLST};
149 # QA jobs for code analytics
150 # static code analysis with cppcheck (we can add --enable=all later)
154 - cppcheck -j$(nproc) --force --quiet --inline-suppr .
156 # search for TODO within source tree
157 grep TODO/FIXME/HACK:
162 # search for HACK within source tree and ignore HACKKIT board
163 - grep -r HACK . | grep -v HACKKIT
165 # build HTML documentation
169 - virtualenv -p /usr/bin/python3 /tmp/venvhtml
170 - . /tmp/venvhtml/bin/activate
171 - pip install -r doc/sphinx/requirements.txt
174 # some statistics about the code base
180 # ensure all configs have MAINTAINERS entries
181 Check for configs without MAINTAINERS entry:
184 - ./tools/buildman/buildman -R
186 # Ensure host tools build
190 - make tools-only_config tools-only -j$(nproc)
192 # Ensure env tools build
196 - make tools-only_config envtools -j$(nproc)
198 Run binman, buildman, dtoc, Kconfig and patman testsuites:
201 - git config --global user.name "GitLab CI Runner";
202 git config --global user.email trini@konsulko.com;
203 git config --global --add safe.directory "${CI_PROJECT_DIR}";
205 virtualenv -p /usr/bin/python3 /tmp/venv;
206 . /tmp/venv/bin/activate;
207 pip install -r test/py/requirements.txt;
208 export UBOOT_TRAVIS_BUILD_DIR=/tmp/sandbox_spl;
209 export PYTHONPATH="${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc/pylibfdt";
210 export PATH="${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc:${PATH}";
212 ./tools/buildman/buildman -T0 -o ${UBOOT_TRAVIS_BUILD_DIR} -w
215 ./tools/binman/binman --toolpath ${UBOOT_TRAVIS_BUILD_DIR}/tools test;
216 ./tools/buildman/buildman -t;
217 ./tools/dtoc/dtoc -t;
218 ./tools/patman/patman test;
221 Run tests for Nokia RX-51 (aka N900):
224 - export PATH=/opt/gcc-11.1.0-nolibc/arm-linux-gnueabi/bin:$PATH;
225 test/nokia_rx51_test.sh
227 # Check for any pylint regressions
231 - git config --global --add safe.directory "${CI_PROJECT_DIR}"
232 - pip install -r test/py/requirements.txt
233 - pip install asteval pylint==2.12.2 pyopenssl
234 - export PATH=${PATH}:~/.local/bin
235 - echo "[MASTER]" >> .pylintrc
236 - echo "load-plugins=pylint.extensions.docparams" >> .pylintrc
237 - export UBOOT_TRAVIS_BUILD_DIR=/tmp/sandbox_spl
239 - ./tools/buildman/buildman -T0 -o ${UBOOT_TRAVIS_BUILD_DIR} -w
243 - export PYTHONPATH="${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc/pylibfdt"
246 # Test sandbox with test.py
249 TEST_PY_BD: "sandbox"
250 <<: *buildman_and_testpy_dfn
252 sandbox with clang test.py:
254 TEST_PY_BD: "sandbox"
255 OVERRIDE: "-O clang-13"
256 <<: *buildman_and_testpy_dfn
258 sandbox without LTO test.py:
260 TEST_PY_BD: "sandbox"
261 BUILD_ENV: "NO_LTO=1"
262 <<: *buildman_and_testpy_dfn
266 TEST_PY_BD: "sandbox_spl"
267 TEST_PY_TEST_SPEC: "test_ofplatdata or test_handoff or test_spl"
268 <<: *buildman_and_testpy_dfn
270 sandbox_noinst_test.py:
272 TEST_PY_BD: "sandbox_noinst"
273 TEST_PY_TEST_SPEC: "test_ofplatdata or test_handoff or test_spl"
274 <<: *buildman_and_testpy_dfn
278 TEST_PY_BD: "sandbox_vpl"
279 TEST_PY_TEST_SPEC: "test_vpl_help or test_spl"
280 <<: *buildman_and_testpy_dfn
284 TEST_PY_BD: "evb-ast2500"
285 TEST_PY_ID: "--id qemu"
286 <<: *buildman_and_testpy_dfn
290 TEST_PY_BD: "evb-ast2600"
291 TEST_PY_ID: "--id qemu"
292 <<: *buildman_and_testpy_dfn
294 sandbox_flattree test.py:
296 TEST_PY_BD: "sandbox_flattree"
297 <<: *buildman_and_testpy_dfn
299 vexpress_ca9x4 test.py:
301 TEST_PY_BD: "vexpress_ca9x4"
302 TEST_PY_ID: "--id qemu"
303 <<: *buildman_and_testpy_dfn
305 integratorcp_cm926ejs test.py:
307 TEST_PY_BD: "integratorcp_cm926ejs"
308 TEST_PY_TEST_SPEC: "not sleep"
309 TEST_PY_ID: "--id qemu"
310 <<: *buildman_and_testpy_dfn
314 TEST_PY_BD: "qemu_arm"
315 TEST_PY_TEST_SPEC: "not sleep"
316 <<: *buildman_and_testpy_dfn
320 TEST_PY_BD: "qemu_arm64"
321 TEST_PY_TEST_SPEC: "not sleep"
322 <<: *buildman_and_testpy_dfn
327 TEST_PY_TEST_SPEC: "not sleep and not efi"
328 TEST_PY_ID: "--id qemu"
329 <<: *buildman_and_testpy_dfn
331 qemu_maltael test.py:
333 TEST_PY_BD: "maltael"
334 TEST_PY_TEST_SPEC: "not sleep and not efi"
335 TEST_PY_ID: "--id qemu"
336 <<: *buildman_and_testpy_dfn
338 qemu_malta64 test.py:
340 TEST_PY_BD: "malta64"
341 TEST_PY_TEST_SPEC: "not sleep and not efi"
342 TEST_PY_ID: "--id qemu"
343 <<: *buildman_and_testpy_dfn
345 qemu_malta64el test.py:
347 TEST_PY_BD: "malta64el"
348 TEST_PY_TEST_SPEC: "not sleep and not efi"
349 TEST_PY_ID: "--id qemu"
350 <<: *buildman_and_testpy_dfn
352 qemu-ppce500 test.py:
354 TEST_PY_BD: "qemu-ppce500"
355 TEST_PY_TEST_SPEC: "not sleep"
356 <<: *buildman_and_testpy_dfn
358 qemu-riscv32 test.py:
360 TEST_PY_BD: "qemu-riscv32"
361 TEST_PY_TEST_SPEC: "not sleep"
362 <<: *buildman_and_testpy_dfn
364 qemu-riscv64 test.py:
366 TEST_PY_BD: "qemu-riscv64"
367 TEST_PY_TEST_SPEC: "not sleep"
368 <<: *buildman_and_testpy_dfn
370 qemu-riscv32_spl test.py:
372 TEST_PY_BD: "qemu-riscv32_spl"
373 TEST_PY_TEST_SPEC: "not sleep"
374 <<: *buildman_and_testpy_dfn
376 qemu-riscv64_spl test.py:
378 TEST_PY_BD: "qemu-riscv64_spl"
379 TEST_PY_TEST_SPEC: "not sleep"
380 <<: *buildman_and_testpy_dfn
384 TEST_PY_BD: "qemu-x86"
385 TEST_PY_TEST_SPEC: "not sleep"
386 <<: *buildman_and_testpy_dfn
390 TEST_PY_BD: "qemu-x86_64"
391 TEST_PY_TEST_SPEC: "not sleep"
392 <<: *buildman_and_testpy_dfn
394 r2dplus_i82557c test.py:
396 TEST_PY_BD: "r2dplus"
397 TEST_PY_ID: "--id i82557c_qemu"
398 <<: *buildman_and_testpy_dfn
400 r2dplus_pcnet test.py:
402 TEST_PY_BD: "r2dplus"
403 TEST_PY_ID: "--id pcnet_qemu"
404 <<: *buildman_and_testpy_dfn
406 r2dplus_rtl8139 test.py:
408 TEST_PY_BD: "r2dplus"
409 TEST_PY_ID: "--id rtl8139_qemu"
410 <<: *buildman_and_testpy_dfn
412 r2dplus_tulip test.py:
414 TEST_PY_BD: "r2dplus"
415 TEST_PY_ID: "--id tulip_qemu"
416 <<: *buildman_and_testpy_dfn
418 sifive_unleashed_sdcard test.py:
420 TEST_PY_BD: "sifive_unleashed"
421 TEST_PY_ID: "--id sdcard_qemu"
422 <<: *buildman_and_testpy_dfn
424 sifive_unleashed_spi-nor test.py:
426 TEST_PY_BD: "sifive_unleashed"
427 TEST_PY_ID: "--id spi-nor_qemu"
428 <<: *buildman_and_testpy_dfn
430 xilinx_zynq_virt test.py:
432 TEST_PY_BD: "xilinx_zynq_virt"
433 TEST_PY_TEST_SPEC: "not sleep"
434 TEST_PY_ID: "--id qemu"
435 <<: *buildman_and_testpy_dfn
437 xilinx_versal_virt test.py:
439 TEST_PY_BD: "xilinx_versal_virt"
440 TEST_PY_TEST_SPEC: "not sleep"
441 TEST_PY_ID: "--id qemu"
442 <<: *buildman_and_testpy_dfn
447 TEST_PY_TEST_SPEC: "not sleep"
448 TEST_PY_ID: "--id qemu"
449 <<: *buildman_and_testpy_dfn
453 TEST_PY_BD: "coreboot"
454 TEST_PY_TEST_SPEC: "not sleep"
455 TEST_PY_ID: "--id qemu"
461 <<: *buildman_and_testpy_dfn