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-20230126-17Feb2023
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 config --global --add safe.directory "${CI_PROJECT_DIR}"
18 - git clone --depth=1 https://source.denx.de/u-boot/u-boot-test-hooks /tmp/uboot-test-hooks
19 - ln -s travis-ci /tmp/uboot-test-hooks/bin/`hostname`
20 - ln -s travis-ci /tmp/uboot-test-hooks/py/`hostname`
21 - grub-mkimage --prefix="" -o ~/grub_x86.efi -O i386-efi normal echo lsefimmap lsefi lsefisystab efinet tftp minicmd
22 - grub-mkimage --prefix="" -o ~/grub_x64.efi -O x86_64-efi normal echo lsefimmap lsefi lsefisystab efinet tftp minicmd
23 - if [[ "${TEST_PY_BD}" == "qemu-riscv32_spl" ]]; then
24 wget -O - https://github.com/riscv/opensbi/releases/download/v0.9/opensbi-0.9-rv-bin.tar.xz | tar -C /tmp -xJ;
25 export OPENSBI=/tmp/opensbi-0.9-rv-bin/share/opensbi/ilp32/generic/firmware/fw_dynamic.bin;
27 - if [[ "${TEST_PY_BD}" == "qemu-riscv64_spl" ]] || [[ "${TEST_PY_BD}" == "sifive_unleashed" ]]; then
28 wget -O - https://github.com/riscv/opensbi/releases/download/v0.9/opensbi-0.9-rv-bin.tar.xz | tar -C /tmp -xJ;
29 export OPENSBI=/tmp/opensbi-0.9-rv-bin/share/opensbi/lp64/generic/firmware/fw_dynamic.bin;
33 - rm -rf /tmp/uboot-test-hooks /tmp/venv
35 # If we've been asked to use clang only do one configuration.
36 - export UBOOT_TRAVIS_BUILD_DIR=/tmp/${TEST_PY_BD}
37 - echo BUILD_ENV ${BUILD_ENV}
38 - if [ -n "${BUILD_ENV}" ]; then
41 - tools/buildman/buildman -o ${UBOOT_TRAVIS_BUILD_DIR} -w -E -W -e
42 --board ${TEST_PY_BD} ${OVERRIDE}
43 - cp ~/grub_x86.efi $UBOOT_TRAVIS_BUILD_DIR/
44 - cp ~/grub_x64.efi $UBOOT_TRAVIS_BUILD_DIR/
45 - cp /opt/grub/grubriscv64.efi $UBOOT_TRAVIS_BUILD_DIR/grub_riscv64.efi
46 - cp /opt/grub/grubaa64.efi $UBOOT_TRAVIS_BUILD_DIR/grub_arm64.efi
47 - cp /opt/grub/grubarm.efi $UBOOT_TRAVIS_BUILD_DIR/grub_arm.efi
48 # create sdcard / spi-nor images for sifive unleashed using genimage
49 - if [[ "${TEST_PY_BD}" == "sifive_unleashed" ]]; then
51 cp ${UBOOT_TRAVIS_BUILD_DIR}/spl/u-boot-spl.bin .;
52 cp ${UBOOT_TRAVIS_BUILD_DIR}/u-boot.itb .;
54 genimage --inputpath . --config board/sifive/unleashed/genimage_sdcard.cfg;
55 cp images/sdcard.img ${UBOOT_TRAVIS_BUILD_DIR}/;
57 genimage --inputpath . --config board/sifive/unleashed/genimage_spi-nor.cfg;
58 cp images/spi-nor.img ${UBOOT_TRAVIS_BUILD_DIR}/;
60 - if [[ "${TEST_PY_BD}" == "coreboot" ]]; then
62 "https://drive.google.com/uc?id=1x6nrtWIyIRPLS2cQBwYTnT2TbOI8UjmM&export=download" |
63 xz -dc >${UBOOT_TRAVIS_BUILD_DIR}/coreboot.rom;
65 "https://drive.google.com/uc?id=149Cz-5SZXHNKpi9xg6R_5XITWohu348y&export=download" >
68 ./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;
70 - virtualenv -p /usr/bin/python3 /tmp/venv
71 - . /tmp/venv/bin/activate
72 - pip install -r test/py/requirements.txt
73 # "${var:+"-k $var"}" expands to "" if $var is empty, "-k $var" if not
74 - export PATH=/opt/qemu/bin:/tmp/uboot-test-hooks/bin:${PATH};
75 export PYTHONPATH=/tmp/uboot-test-hooks/py/travis-ci;
76 ./test/py/test.py -ra --bd ${TEST_PY_BD} ${TEST_PY_ID}
77 ${TEST_PY_TEST_SPEC:+"-k ${TEST_PY_TEST_SPEC}"}
78 --build-dir "$UBOOT_TRAVIS_BUILD_DIR"
79 # It seems that the files in /tmp go away, so copy out what we need
80 - if [[ "${TEST_PY_BD}" == "coreboot" ]]; then
81 cp -v /tmp/coreboot/*.{html,css} .;
84 build all 32bit ARM platforms:
88 git config --global --add safe.directory "${CI_PROJECT_DIR}";
89 ./tools/buildman/buildman -o /tmp -PEWM arm -x aarch64 || ret=$?;
90 if [[ $ret -ne 0 ]]; then
91 ./tools/buildman/buildman -o /tmp -seP;
95 build all 64bit ARM platforms:
98 - virtualenv -p /usr/bin/python3 /tmp/venv
99 - . /tmp/venv/bin/activate
101 git config --global --add safe.directory "${CI_PROJECT_DIR}";
102 ./tools/buildman/buildman -o /tmp -PEWM aarch64 || ret=$?;
103 if [[ $ret -ne 0 ]]; then
104 ./tools/buildman/buildman -o /tmp -seP;
108 build all PowerPC platforms:
112 git config --global --add safe.directory "${CI_PROJECT_DIR}";
113 ./tools/buildman/buildman -o /tmp -P -E -W powerpc || ret=$?;
114 if [[ $ret -ne 0 ]]; then
115 ./tools/buildman/buildman -o /tmp -seP;
119 build all other platforms:
123 git config --global --add safe.directory "${CI_PROJECT_DIR}";
124 ./tools/buildman/buildman -o /tmp -PEWM -x arm,powerpc || ret=$?;
125 if [[ $ret -ne 0 ]]; then
126 ./tools/buildman/buildman -o /tmp -seP;
130 check for new CONFIG symbols outside Kconfig:
133 - git config --global --add safe.directory "${CI_PROJECT_DIR}"
134 # If grep succeeds and finds a match the test fails as we should
136 - git grep -E '^#[[:blank:]]*(define|undef)[[:blank:]]*CONFIG_'
137 :^doc/ :^arch/arm/dts/ :^scripts/kconfig/lkc.h
138 :^include/linux/kconfig.h :^tools/ && exit 1 || exit 0
140 # QA jobs for code analytics
141 # static code analysis with cppcheck (we can add --enable=all later)
145 - cppcheck -j$(nproc) --force --quiet --inline-suppr .
147 # search for TODO within source tree
148 grep TODO/FIXME/HACK:
153 # search for HACK within source tree and ignore HACKKIT board
154 - grep -r HACK . | grep -v HACKKIT
156 # build documentation
160 - virtualenv -p /usr/bin/python3 /tmp/venvhtml
161 - . /tmp/venvhtml/bin/activate
162 - pip install -r doc/sphinx/requirements.txt
166 # some statistics about the code base
172 # ensure all configs have MAINTAINERS entries
173 Check for configs without MAINTAINERS entry:
176 - ./tools/buildman/buildman -R
178 # Ensure host tools build
182 - make tools-only_config tools-only -j$(nproc)
184 # Ensure env tools build
188 - make tools-only_config envtools -j$(nproc)
190 Run binman, buildman, dtoc, Kconfig and patman testsuites:
193 - git config --global user.name "GitLab CI Runner";
194 git config --global user.email trini@konsulko.com;
195 git config --global --add safe.directory "${CI_PROJECT_DIR}";
197 virtualenv -p /usr/bin/python3 /tmp/venv;
198 . /tmp/venv/bin/activate;
199 pip install -r test/py/requirements.txt;
200 export UBOOT_TRAVIS_BUILD_DIR=/tmp/sandbox_spl;
201 export PYTHONPATH="${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc/pylibfdt";
202 export PATH="${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc:${PATH}";
204 ./tools/buildman/buildman -T0 -o ${UBOOT_TRAVIS_BUILD_DIR} -w
207 ./tools/binman/binman --toolpath ${UBOOT_TRAVIS_BUILD_DIR}/tools test;
208 ./tools/buildman/buildman -t;
209 ./tools/dtoc/dtoc -t;
210 ./tools/patman/patman test;
213 Run tests for Nokia RX-51 (aka N900):
216 - mkdir nokia_rx51_tmp;
217 ln -s /opt/nokia/u-boot-gen-combined nokia_rx51_tmp/;
218 ln -s /opt/nokia/qemu-n900.tar.gz nokia_rx51_tmp/;
219 ln -s /opt/nokia/kernel_2.6.28-20103103+0m5_armel.deb nokia_rx51_tmp/;
220 ln -s /opt/nokia/libc6_2.5.1-1eglibc27+0m5_armel.deb nokia_rx51_tmp/;
221 ln -s /opt/nokia/busybox_1.10.2.legal-1osso30+0m5_armel.deb nokia_rx51_tmp/;
222 ln -s /opt/nokia/qemu-system-arm nokia_rx51_tmp/;
223 export PATH=/opt/gcc-12.2.0-nolibc/arm-linux-gnueabi/bin:$PATH;
224 test/nokia_rx51_test.sh
226 # Check for any pylint regressions
230 - git config --global --add safe.directory "${CI_PROJECT_DIR}"
231 - pip install -r test/py/requirements.txt
232 - pip install asteval pylint==2.12.2 pyopenssl
233 - export PATH=${PATH}:~/.local/bin
234 - echo "[MASTER]" >> .pylintrc
235 - echo "load-plugins=pylint.extensions.docparams" >> .pylintrc
236 - export UBOOT_TRAVIS_BUILD_DIR=/tmp/sandbox_spl
238 - ./tools/buildman/buildman -T0 -o ${UBOOT_TRAVIS_BUILD_DIR} -w
242 - export PYTHONPATH="${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc/pylibfdt"
245 # Check for pre-schema driver model tags
246 Check for pre-schema tags:
249 - git config --global --add safe.directory "${CI_PROJECT_DIR}";
250 # If grep succeeds and finds a match the test fails as we should
252 - git grep u-boot,dm- -- '*.dts*' && exit 1 || exit 0
254 # Check we can package the Python tools
255 Check packing of Python tools:
260 # Test sandbox with test.py
263 TEST_PY_BD: "sandbox"
264 <<: *buildman_and_testpy_dfn
266 sandbox with clang test.py:
268 TEST_PY_BD: "sandbox"
269 OVERRIDE: "-O clang-14"
270 <<: *buildman_and_testpy_dfn
272 sandbox without LTO test.py:
274 TEST_PY_BD: "sandbox"
275 BUILD_ENV: "NO_LTO=1"
276 <<: *buildman_and_testpy_dfn
280 TEST_PY_BD: "sandbox_spl"
281 TEST_PY_TEST_SPEC: "test_ofplatdata or test_handoff or test_spl"
282 <<: *buildman_and_testpy_dfn
284 sandbox_noinst_test.py:
286 TEST_PY_BD: "sandbox_noinst"
287 TEST_PY_TEST_SPEC: "test_ofplatdata or test_handoff or test_spl"
288 <<: *buildman_and_testpy_dfn
292 TEST_PY_BD: "sandbox_vpl"
293 TEST_PY_TEST_SPEC: "test_vpl_help or test_spl"
294 <<: *buildman_and_testpy_dfn
296 # Enable tracing and disable LTO, to ensure functions are not elided
297 sandbox trace_test.py:
299 TEST_PY_BD: "sandbox"
300 BUILD_ENV: "FTRACE=1 NO_LTO=1"
301 TEST_PY_TEST_SPEC: "trace"
302 OVERRIDE: "-a CONFIG_TRACE=y -a CONFIG_TRACE_EARLY=y -a CONFIG_TRACE_EARLY_SIZE=0x01000000"
303 <<: *buildman_and_testpy_dfn
307 TEST_PY_BD: "evb-ast2500"
308 TEST_PY_ID: "--id qemu"
309 <<: *buildman_and_testpy_dfn
313 TEST_PY_BD: "evb-ast2600"
314 TEST_PY_ID: "--id qemu"
315 <<: *buildman_and_testpy_dfn
317 sandbox_flattree test.py:
319 TEST_PY_BD: "sandbox_flattree"
320 <<: *buildman_and_testpy_dfn
322 vexpress_ca9x4 test.py:
324 TEST_PY_BD: "vexpress_ca9x4"
325 TEST_PY_ID: "--id qemu"
326 <<: *buildman_and_testpy_dfn
328 integratorcp_cm926ejs test.py:
330 TEST_PY_BD: "integratorcp_cm926ejs"
331 TEST_PY_TEST_SPEC: "not sleep"
332 TEST_PY_ID: "--id qemu"
333 <<: *buildman_and_testpy_dfn
337 TEST_PY_BD: "qemu_arm"
338 TEST_PY_TEST_SPEC: "not sleep"
339 <<: *buildman_and_testpy_dfn
343 TEST_PY_BD: "qemu_arm64"
344 TEST_PY_TEST_SPEC: "not sleep"
345 <<: *buildman_and_testpy_dfn
350 TEST_PY_TEST_SPEC: "not sleep and not efi"
351 TEST_PY_ID: "--id qemu"
352 <<: *buildman_and_testpy_dfn
354 qemu_maltael test.py:
356 TEST_PY_BD: "maltael"
357 TEST_PY_TEST_SPEC: "not sleep and not efi"
358 TEST_PY_ID: "--id qemu"
359 <<: *buildman_and_testpy_dfn
361 qemu_malta64 test.py:
363 TEST_PY_BD: "malta64"
364 TEST_PY_TEST_SPEC: "not sleep and not efi"
365 TEST_PY_ID: "--id qemu"
366 <<: *buildman_and_testpy_dfn
368 qemu_malta64el test.py:
370 TEST_PY_BD: "malta64el"
371 TEST_PY_TEST_SPEC: "not sleep and not efi"
372 TEST_PY_ID: "--id qemu"
373 <<: *buildman_and_testpy_dfn
375 qemu-ppce500 test.py:
377 TEST_PY_BD: "qemu-ppce500"
378 TEST_PY_TEST_SPEC: "not sleep"
379 <<: *buildman_and_testpy_dfn
381 qemu-riscv32 test.py:
383 TEST_PY_BD: "qemu-riscv32"
384 TEST_PY_TEST_SPEC: "not sleep"
385 <<: *buildman_and_testpy_dfn
387 qemu-riscv64 test.py:
389 TEST_PY_BD: "qemu-riscv64"
390 TEST_PY_TEST_SPEC: "not sleep"
391 <<: *buildman_and_testpy_dfn
393 qemu-riscv32_spl test.py:
395 TEST_PY_BD: "qemu-riscv32_spl"
396 TEST_PY_TEST_SPEC: "not sleep"
397 <<: *buildman_and_testpy_dfn
399 qemu-riscv64_spl test.py:
401 TEST_PY_BD: "qemu-riscv64_spl"
402 TEST_PY_TEST_SPEC: "not sleep"
403 <<: *buildman_and_testpy_dfn
407 TEST_PY_BD: "qemu-x86"
408 TEST_PY_TEST_SPEC: "not sleep"
409 <<: *buildman_and_testpy_dfn
413 TEST_PY_BD: "qemu-x86_64"
414 TEST_PY_TEST_SPEC: "not sleep"
415 <<: *buildman_and_testpy_dfn
417 r2dplus_i82557c test.py:
419 TEST_PY_BD: "r2dplus"
420 TEST_PY_ID: "--id i82557c_qemu"
421 <<: *buildman_and_testpy_dfn
423 r2dplus_pcnet test.py:
425 TEST_PY_BD: "r2dplus"
426 TEST_PY_ID: "--id pcnet_qemu"
427 <<: *buildman_and_testpy_dfn
429 r2dplus_rtl8139 test.py:
431 TEST_PY_BD: "r2dplus"
432 TEST_PY_ID: "--id rtl8139_qemu"
433 <<: *buildman_and_testpy_dfn
435 r2dplus_tulip test.py:
437 TEST_PY_BD: "r2dplus"
438 TEST_PY_ID: "--id tulip_qemu"
439 <<: *buildman_and_testpy_dfn
441 sifive_unleashed_sdcard test.py:
443 TEST_PY_BD: "sifive_unleashed"
444 TEST_PY_ID: "--id sdcard_qemu"
445 <<: *buildman_and_testpy_dfn
447 sifive_unleashed_spi-nor test.py:
449 TEST_PY_BD: "sifive_unleashed"
450 TEST_PY_ID: "--id spi-nor_qemu"
451 <<: *buildman_and_testpy_dfn
453 xilinx_zynq_virt test.py:
455 TEST_PY_BD: "xilinx_zynq_virt"
456 TEST_PY_TEST_SPEC: "not sleep"
457 TEST_PY_ID: "--id qemu"
458 <<: *buildman_and_testpy_dfn
460 xilinx_versal_virt test.py:
462 TEST_PY_BD: "xilinx_versal_virt"
463 TEST_PY_TEST_SPEC: "not sleep"
464 TEST_PY_ID: "--id qemu"
465 <<: *buildman_and_testpy_dfn
470 TEST_PY_TEST_SPEC: "not sleep"
471 TEST_PY_ID: "--id qemu"
472 <<: *buildman_and_testpy_dfn
476 TEST_PY_BD: "coreboot"
477 TEST_PY_TEST_SPEC: "not sleep"
478 TEST_PY_ID: "--id qemu"
484 <<: *buildman_and_testpy_dfn