1 # SPDX-License-Identifier: GPL-2.0+
5 MIRROR_DOCKER: docker.io
11 # Grab our configured image. The source for this is found
12 # in the u-boot tree at tools/docker/Dockerfile
13 image: ${MIRROR_DOCKER}/trini/u-boot-gitlab-ci-runner:jammy-20240808-21Aug2024
15 # We run some tests in different order, to catch some failures quicker.
21 .buildman_and_testpy_template: &buildman_and_testpy_dfn
23 retry: 2 # QEMU may be too slow, etc.
27 # Clone uboot-test-hooks
28 - git config --global --add safe.directory "${CI_PROJECT_DIR}"
29 - git clone --depth=1 https://source.denx.de/u-boot/u-boot-test-hooks /tmp/uboot-test-hooks
30 - ln -s travis-ci /tmp/uboot-test-hooks/bin/`hostname`
31 - ln -s travis-ci /tmp/uboot-test-hooks/py/`hostname`
32 - grub-mkimage --prefix="" -o ~/grub_x86.efi -O i386-efi normal echo lsefimmap lsefi lsefisystab efinet tftp minicmd
33 - grub-mkimage --prefix="" -o ~/grub_x64.efi -O x86_64-efi normal echo lsefimmap lsefi lsefisystab efinet tftp minicmd
34 - if [[ "${TEST_PY_BD}" == "qemu-riscv32_spl" ]]; then
35 wget -O - https://github.com/riscv-software-src/opensbi/releases/download/v1.3.1/opensbi-1.3.1-rv-bin.tar.xz | tar -C /tmp -xJ;
36 export OPENSBI=/tmp/opensbi-1.3.1-rv-bin/share/opensbi/ilp32/generic/firmware/fw_dynamic.bin;
38 - if [[ "${TEST_PY_BD}" == "qemu-riscv64_spl" ]] || [[ "${TEST_PY_BD}" == "sifive_unleashed" ]]; then
39 wget -O - https://github.com/riscv-software-src/opensbi/releases/download/v1.3.1/opensbi-1.3.1-rv-bin.tar.xz | tar -C /tmp -xJ;
40 export OPENSBI=/tmp/opensbi-1.3.1-rv-bin/share/opensbi/lp64/generic/firmware/fw_dynamic.bin;
44 - cp -v /tmp/${TEST_PY_BD}/*.{html,css,xml} .
45 - rm -rf /tmp/uboot-test-hooks /tmp/venv
47 # If we've been asked to use clang only do one configuration.
48 - export UBOOT_TRAVIS_BUILD_DIR=/tmp/${TEST_PY_BD}
49 - echo BUILD_ENV ${BUILD_ENV}
50 - if [ -n "${BUILD_ENV}" ]; then
53 - tools/buildman/buildman -o ${UBOOT_TRAVIS_BUILD_DIR} -w -E -W -e
54 --board ${TEST_PY_BD} ${OVERRIDE}
55 - cp ~/grub_x86.efi $UBOOT_TRAVIS_BUILD_DIR/
56 - cp ~/grub_x64.efi $UBOOT_TRAVIS_BUILD_DIR/
57 - cp /opt/grub/grubriscv64.efi $UBOOT_TRAVIS_BUILD_DIR/grub_riscv64.efi
58 - cp /opt/grub/grubaa64.efi $UBOOT_TRAVIS_BUILD_DIR/grub_arm64.efi
59 - cp /opt/grub/grubarm.efi $UBOOT_TRAVIS_BUILD_DIR/grub_arm.efi
60 # create sdcard / spi-nor images for sifive unleashed using genimage
61 - if [[ "${TEST_PY_BD}" == "sifive_unleashed" ]]; then
63 cp ${UBOOT_TRAVIS_BUILD_DIR}/spl/u-boot-spl.bin .;
64 cp ${UBOOT_TRAVIS_BUILD_DIR}/u-boot.itb .;
66 genimage --inputpath . --config board/sifive/unleashed/genimage_sdcard.cfg;
67 cp images/sdcard.img ${UBOOT_TRAVIS_BUILD_DIR}/;
69 genimage --inputpath . --config board/sifive/unleashed/genimage_spi-nor.cfg;
70 cp images/spi-nor.img ${UBOOT_TRAVIS_BUILD_DIR}/;
72 - if [[ "${TEST_PY_BD}" == "coreboot" ]]; then
73 cp /opt/coreboot/coreboot.rom ${UBOOT_TRAVIS_BUILD_DIR}/coreboot.rom;
74 /opt/coreboot/cbfstool ${UBOOT_TRAVIS_BUILD_DIR}/coreboot.rom remove -n fallback/payload;
75 /opt/coreboot/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;
77 - virtualenv -p /usr/bin/python3 /tmp/venv
78 - . /tmp/venv/bin/activate
79 - pip install -r test/py/requirements.txt
80 # "${var:+"-k $var"}" expands to "" if $var is empty, "-k $var" if not
81 - export PATH=/opt/qemu/bin:/tmp/uboot-test-hooks/bin:${PATH};
82 export PYTHONPATH=/tmp/uboot-test-hooks/py/travis-ci;
83 ./test/py/test.py -ra --bd ${TEST_PY_BD} ${TEST_PY_ID}
84 ${TEST_PY_TEST_SPEC:+"-k ${TEST_PY_TEST_SPEC}"}
85 --build-dir "$UBOOT_TRAVIS_BUILD_DIR"
86 --junitxml=/tmp/${TEST_PY_BD}/results.xml
101 build all 32bit ARM platforms:
102 extends: .world_build
105 git config --global --add safe.directory "${CI_PROJECT_DIR}";
106 pip install -r tools/buildman/requirements.txt;
107 ./tools/buildman/buildman -o /tmp -PEWM arm -x aarch64 || ret=$?;
108 if [[ $ret -ne 0 ]]; then
109 ./tools/buildman/buildman -o /tmp -seP;
113 build all 64bit ARM platforms:
114 extends: .world_build
116 - virtualenv -p /usr/bin/python3 /tmp/venv
117 - . /tmp/venv/bin/activate
119 git config --global --add safe.directory "${CI_PROJECT_DIR}";
120 pip install -r tools/buildman/requirements.txt;
121 ./tools/buildman/buildman -o /tmp -PEWM aarch64 || ret=$?;
122 if [[ $ret -ne 0 ]]; then
123 ./tools/buildman/buildman -o /tmp -seP;
127 build all PowerPC platforms:
128 extends: .world_build
131 git config --global --add safe.directory "${CI_PROJECT_DIR}";
132 ./tools/buildman/buildman -o /tmp -P -E -W powerpc || ret=$?;
133 if [[ $ret -ne 0 ]]; then
134 ./tools/buildman/buildman -o /tmp -seP;
138 build all other platforms:
139 extends: .world_build
142 git config --global --add safe.directory "${CI_PROJECT_DIR}";
143 ./tools/buildman/buildman -o /tmp -PEWM -x arm,powerpc || ret=$?;
144 if [[ $ret -ne 0 ]]; then
145 ./tools/buildman/buildman -o /tmp -seP;
154 check for new CONFIG symbols outside Kconfig:
157 - git config --global --add safe.directory "${CI_PROJECT_DIR}"
158 # If grep succeeds and finds a match the test fails as we should
160 - git grep -E '^#[[:blank:]]*(define|undef)[[:blank:]]*CONFIG_'
161 :^doc/ :^arch/arm/dts/ :^scripts/kconfig/lkc.h
162 :^include/linux/kconfig.h :^tools/ :^dts/upstream/ &&
165 # build documentation
169 - virtualenv -p /usr/bin/python3 /tmp/venvhtml
170 - . /tmp/venvhtml/bin/activate
171 - pip install -r doc/sphinx/requirements.txt
172 - make htmldocs KDOC_WERROR=1
175 # ensure all configs have MAINTAINERS entries
176 Check for configs without MAINTAINERS entry:
179 - ./tools/buildman/buildman --maintainer-check
181 # Ensure host tools build
182 Build tools-only and envtools:
185 - make tools-only_config tools-only -j$(nproc);
187 make tools-only_config envtools -j$(nproc)
189 Run binman, buildman, dtoc, Kconfig and patman testsuites:
192 - git config --global user.name "GitLab CI Runner";
194 git config --global --add safe.directory "${CI_PROJECT_DIR}";
196 virtualenv -p /usr/bin/python3 /tmp/venv;
197 . /tmp/venv/bin/activate;
198 pip install -r test/py/requirements.txt;
199 pip install -r tools/buildman/requirements.txt;
200 export UBOOT_TRAVIS_BUILD_DIR=/tmp/tools-only;
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 # Check for any pylint regressions
217 - git config --global --add safe.directory "${CI_PROJECT_DIR}"
218 - pip install -r test/py/requirements.txt
219 - pip install -r tools/buildman/requirements.txt
220 - pip install asteval pylint==2.12.2 pyopenssl
221 - export PATH=${PATH}:~/.local/bin
222 - echo "[MASTER]" >> .pylintrc
223 - echo "load-plugins=pylint.extensions.docparams" >> .pylintrc
224 - export UBOOT_TRAVIS_BUILD_DIR=/tmp/tools-only
226 - ./tools/buildman/buildman -T0 -o ${UBOOT_TRAVIS_BUILD_DIR} -w
230 - export PYTHONPATH="${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc/pylibfdt"
233 # Check for pre-schema driver model tags
234 Check for pre-schema tags:
237 - git config --global --add safe.directory "${CI_PROJECT_DIR}";
238 # If grep succeeds and finds a match the test fails as we should
240 - git grep u-boot,dm- -- '*.dts*' && exit 1 || exit 0
242 # Check we can package the Python tools
243 Check packing of Python tools:
248 # Test sandbox with test.py
251 TEST_PY_BD: "sandbox"
252 <<: *buildman_and_testpy_dfn
254 sandbox with clang test.py:
256 TEST_PY_BD: "sandbox"
257 OVERRIDE: "-O clang-17"
258 <<: *buildman_and_testpy_dfn
262 TEST_PY_BD: "sandbox64"
263 <<: *buildman_and_testpy_dfn
265 sandbox64 with clang test.py:
267 TEST_PY_BD: "sandbox64"
268 OVERRIDE: "-O clang-17"
269 <<: *buildman_and_testpy_dfn
273 TEST_PY_BD: "sandbox_spl"
274 TEST_PY_TEST_SPEC: "test_ofplatdata or test_handoff or test_spl"
275 <<: *buildman_and_testpy_dfn
277 sandbox_noinst_test.py:
279 TEST_PY_BD: "sandbox_noinst"
280 TEST_PY_TEST_SPEC: "test_ofplatdata or test_handoff or test_spl"
281 <<: *buildman_and_testpy_dfn
283 sandbox_noinst with LOAD_FIT_FULL test.py:
285 TEST_PY_BD: "sandbox_noinst"
286 TEST_PY_TEST_SPEC: "test_ofplatdata or test_handoff or test_spl"
287 OVERRIDE: "-a CONFIG_SPL_LOAD_FIT_FULL=y"
288 <<: *buildman_and_testpy_dfn
292 TEST_PY_BD: "sandbox_vpl"
293 TEST_PY_TEST_SPEC: "vpl 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 -a CONFIG_TRACE_BUFFER_SIZE=0x02000000"
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
349 TEST_PY_BD: "M5208EVBE"
350 TEST_PY_ID: "--id qemu"
351 TEST_PY_TEST_SPEC: "not sleep and not efi"
352 OVERRIDE: "-a CONFIG_M68K_QEMU=y -a ~CONFIG_MCFTMR"
353 <<: *buildman_and_testpy_dfn
358 TEST_PY_TEST_SPEC: "not sleep and not efi"
359 TEST_PY_ID: "--id qemu"
360 <<: *buildman_and_testpy_dfn
362 qemu_maltael test.py:
364 TEST_PY_BD: "maltael"
365 TEST_PY_TEST_SPEC: "not sleep and not efi"
366 TEST_PY_ID: "--id qemu"
367 <<: *buildman_and_testpy_dfn
369 qemu_malta64 test.py:
371 TEST_PY_BD: "malta64"
372 TEST_PY_TEST_SPEC: "not sleep and not efi"
373 TEST_PY_ID: "--id qemu"
374 <<: *buildman_and_testpy_dfn
376 qemu_malta64el test.py:
378 TEST_PY_BD: "malta64el"
379 TEST_PY_TEST_SPEC: "not sleep and not efi"
380 TEST_PY_ID: "--id qemu"
381 <<: *buildman_and_testpy_dfn
383 qemu-ppce500 test.py:
385 TEST_PY_BD: "qemu-ppce500"
386 TEST_PY_TEST_SPEC: "not sleep"
387 <<: *buildman_and_testpy_dfn
389 qemu-riscv32 test.py:
391 TEST_PY_BD: "qemu-riscv32"
392 TEST_PY_TEST_SPEC: "not sleep"
393 <<: *buildman_and_testpy_dfn
395 qemu-riscv64 test.py:
397 TEST_PY_BD: "qemu-riscv64"
398 TEST_PY_TEST_SPEC: "not sleep"
399 <<: *buildman_and_testpy_dfn
401 qemu-riscv32_spl test.py:
403 TEST_PY_BD: "qemu-riscv32_spl"
404 TEST_PY_TEST_SPEC: "not sleep"
405 <<: *buildman_and_testpy_dfn
407 qemu-riscv64_spl test.py:
409 TEST_PY_BD: "qemu-riscv64_spl"
410 TEST_PY_TEST_SPEC: "not sleep"
411 <<: *buildman_and_testpy_dfn
415 TEST_PY_BD: "qemu-x86"
416 TEST_PY_TEST_SPEC: "not sleep"
417 <<: *buildman_and_testpy_dfn
421 TEST_PY_BD: "qemu-x86_64"
422 TEST_PY_TEST_SPEC: "not sleep"
423 <<: *buildman_and_testpy_dfn
425 qemu-xtensa-dc233c test.py:
427 TEST_PY_BD: "qemu-xtensa-dc233c"
428 TEST_PY_TEST_SPEC: "not sleep and not efi"
429 <<: *buildman_and_testpy_dfn
431 r2dplus_i82557c test.py:
433 TEST_PY_BD: "r2dplus"
434 TEST_PY_ID: "--id i82557c_qemu"
435 <<: *buildman_and_testpy_dfn
437 r2dplus_pcnet test.py:
439 TEST_PY_BD: "r2dplus"
440 TEST_PY_ID: "--id pcnet_qemu"
441 <<: *buildman_and_testpy_dfn
443 r2dplus_rtl8139 test.py:
445 TEST_PY_BD: "r2dplus"
446 TEST_PY_ID: "--id rtl8139_qemu"
447 <<: *buildman_and_testpy_dfn
449 r2dplus_tulip test.py:
451 TEST_PY_BD: "r2dplus"
452 TEST_PY_ID: "--id tulip_qemu"
453 <<: *buildman_and_testpy_dfn
455 sifive_unleashed_sdcard test.py:
457 TEST_PY_BD: "sifive_unleashed"
458 TEST_PY_ID: "--id sdcard_qemu"
459 <<: *buildman_and_testpy_dfn
461 sifive_unleashed_spi-nor test.py:
463 TEST_PY_BD: "sifive_unleashed"
464 TEST_PY_ID: "--id spi-nor_qemu"
465 <<: *buildman_and_testpy_dfn
467 xilinx_zynq_virt test.py:
469 TEST_PY_BD: "xilinx_zynq_virt"
470 TEST_PY_TEST_SPEC: "not sleep"
471 TEST_PY_ID: "--id qemu"
472 <<: *buildman_and_testpy_dfn
474 xilinx_versal_virt test.py:
476 TEST_PY_BD: "xilinx_versal_virt"
477 TEST_PY_TEST_SPEC: "not sleep"
478 TEST_PY_ID: "--id qemu"
479 <<: *buildman_and_testpy_dfn
484 TEST_PY_TEST_SPEC: "not sleep"
485 TEST_PY_ID: "--id qemu"
486 <<: *buildman_and_testpy_dfn
490 TEST_PY_BD: "coreboot"
491 TEST_PY_TEST_SPEC: "not sleep"
492 TEST_PY_ID: "--id qemu"
493 <<: *buildman_and_testpy_dfn