2 windows_vm: windows-2019
3 ubuntu_vm: ubuntu-22.04
5 ci_runner_image: trini/u-boot-gitlab-ci-runner:jammy-20230308-04Apr2023
6 # Add '-u 0' options for Azure pipelines, otherwise we get "permission
7 # denied" error when it tries to "useradd -m -u 1001 vsts_azpcontainer",
8 # since our $(ci_runner_image) user is not root.
15 - job: tools_only_windows
16 displayName: 'Ensure host tools build for Windows'
18 vmImage: $(windows_vm)
21 (New-Object Net.WebClient).DownloadFile("https://github.com/msys2/msys2-installer/releases/download/2021-06-04/msys2-base-x86_64-20210604.sfx.exe", "sfx.exe")
22 displayName: 'Install MSYS2'
24 sfx.exe -y -o%CD:~0,2%\
25 %CD:~0,2%\msys64\usr\bin\bash -lc " "
26 %CD:~0,2%\msys64\usr\bin\bash -lc "pacman --noconfirm -Syuu"
27 %CD:~0,2%\msys64\usr\bin\bash -lc "pacman --noconfirm -Syuu"
28 displayName: 'Update MSYS2'
30 %CD:~0,2%\msys64\usr\bin\bash -lc "pacman --noconfirm --needed -Sy make gcc bison flex diffutils openssl-devel libgnutls-devel libutil-linux-devel"
31 displayName: 'Install Toolchain'
33 echo make tools-only_defconfig tools-only > build-tools.sh
34 %CD:~0,2%\msys64\usr\bin\bash -lc "bash build-tools.sh"
35 displayName: 'Build Host Tools'
37 # Tell MSYS2 we need a POSIX emulation layer
39 # Tell MSYS2 not to ‘cd’ our startup directory to HOME
42 - job: tools_only_macOS
43 displayName: 'Ensure host tools build for macOS X'
47 - script: brew install make ossp-uuid
48 displayName: Brew install dependencies
50 gmake tools-only_config tools-only \
51 HOSTCFLAGS="-I/usr/local/opt/openssl@1.1/include" \
52 HOSTLDFLAGS="-L/usr/local/opt/openssl@1.1/lib" \
53 -j$(sysctl -n hw.logicalcpu)
54 displayName: 'Perform tools-only build'
56 - job: check_for_new_CONFIG_symbols_outside_Kconfig
57 displayName: 'Check for new CONFIG symbols outside Kconfig'
61 image: $(ci_runner_image)
62 options: $(container_option)
64 # If grep succeeds and finds a match the test fails as we should
66 - script: git grep -E '^#[[:blank:]]*(define|undef)[[:blank:]]*CONFIG_'
67 :^doc/ :^arch/arm/dts/ :^scripts/kconfig/lkc.h
68 :^include/linux/kconfig.h :^tools/ && exit 1 || exit 0
71 displayName: 'Static code analysis with cppcheck'
75 image: $(ci_runner_image)
76 options: $(container_option)
78 - script: cppcheck -j$(nproc) --force --quiet --inline-suppr .
81 displayName: 'Build documentation'
85 image: $(ci_runner_image)
86 options: $(container_option)
89 virtualenv -p /usr/bin/python3 /tmp/venvhtml
90 . /tmp/venvhtml/bin/activate
91 pip install -r doc/sphinx/requirements.txt
92 make htmldocs KDOC_WERROR=1
96 displayName: 'Search for TODO within source tree'
100 image: $(ci_runner_image)
101 options: $(container_option)
103 - script: grep -r TODO .
104 - script: grep -r FIXME .
105 - script: grep -r HACK . | grep -v HACKKIT
108 displayName: 'Some statistics about the code base'
110 vmImage: $(ubuntu_vm)
112 image: $(ci_runner_image)
113 options: $(container_option)
115 - script: sloccount .
118 displayName: 'Ensure all configs have MAINTAINERS entries'
120 vmImage: $(ubuntu_vm)
122 image: $(ci_runner_image)
123 options: $(container_option)
126 ./tools/buildman/buildman -R
129 displayName: 'Ensure host tools build'
131 vmImage: $(ubuntu_vm)
133 image: $(ci_runner_image)
134 options: $(container_option)
137 make tools-only_config tools-only -j$(nproc)
140 displayName: 'Ensure env tools build'
142 vmImage: $(ubuntu_vm)
144 image: $(ci_runner_image)
145 options: $(container_option)
148 make tools-only_config envtools -j$(nproc)
151 displayName: 'Run binman, buildman, dtoc, Kconfig and patman testsuites'
153 vmImage: $(ubuntu_vm)
156 cat << "EOF" > build.sh
158 git config --global user.name "Azure Pipelines"
159 git config --global user.email bmeng.cn@gmail.com
160 git config --global --add safe.directory $(work_dir)
162 virtualenv -p /usr/bin/python3 /tmp/venv
163 . /tmp/venv/bin/activate
164 pip install -r test/py/requirements.txt
165 export UBOOT_TRAVIS_BUILD_DIR=/tmp/sandbox_spl
166 export PYTHONPATH=${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc/pylibfdt
167 export PATH=${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc:${PATH}
168 ./tools/buildman/buildman -T0 -o ${UBOOT_TRAVIS_BUILD_DIR} -w --board sandbox_spl
170 ./tools/binman/binman --toolpath ${UBOOT_TRAVIS_BUILD_DIR}/tools test
171 ./tools/buildman/buildman -t
173 ./tools/patman/patman test
174 make O=${UBOOT_TRAVIS_BUILD_DIR} testconfig
177 # We cannot use "container" like other jobs above, as buildman
178 # seems to hang forever with pre-configured "container" environment
179 docker run -v $PWD:$(work_dir) $(ci_runner_image) /bin/bash $(work_dir)/build.sh
181 - job: nokia_rx51_test
182 displayName: 'Run tests for Nokia RX-51 (aka N900)'
184 vmImage: $(ubuntu_vm)
186 image: $(ci_runner_image)
187 options: $(container_option)
191 ln -s /opt/nokia/u-boot-gen-combined nokia_rx51_tmp/
192 ln -s /opt/nokia/qemu-n900.tar.gz nokia_rx51_tmp/
193 ln -s /opt/nokia/kernel_2.6.28-20103103+0m5_armel.deb nokia_rx51_tmp/
194 ln -s /opt/nokia/libc6_2.5.1-1eglibc27+0m5_armel.deb nokia_rx51_tmp/
195 ln -s /opt/nokia/busybox_1.10.2.legal-1osso30+0m5_armel.deb nokia_rx51_tmp/
196 ln -s /opt/nokia/qemu-system-arm nokia_rx51_tmp/
197 export PATH=/opt/gcc-12.2.0-nolibc/arm-linux-gnueabi/bin:$PATH
198 test/nokia_rx51_test.sh
201 displayName: Check for any pylint regressions
203 vmImage: $(ubuntu_vm)
205 image: $(ci_runner_image)
206 options: $(container_option)
209 git config --global --add safe.directory $(work_dir)
211 pip install -r test/py/requirements.txt
212 pip install asteval pylint==2.12.2 pyopenssl
213 export PATH=${PATH}:~/.local/bin
214 echo "[MASTER]" >> .pylintrc
215 echo "load-plugins=pylint.extensions.docparams" >> .pylintrc
216 export UBOOT_TRAVIS_BUILD_DIR=/tmp/sandbox_spl
217 ./tools/buildman/buildman -T0 -o ${UBOOT_TRAVIS_BUILD_DIR} -w --board sandbox_spl
220 export PYTHONPATH=${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc/pylibfdt
223 - job: check_for_pre_schema_tags
224 displayName: 'Check for pre-schema driver model tags'
226 vmImage: $(ubuntu_vm)
228 image: $(ci_runner_image)
229 options: $(container_option)
231 # If grep succeeds and finds a match the test fails as we should
233 - script: git grep u-boot,dm- -- '*.dts*' && exit 1 || exit 0
235 - job: check_packing_of_python_tools
236 displayName: 'Check we can package the Python tools'
238 vmImage: $(ubuntu_vm)
240 image: $(ci_runner_image)
241 options: $(container_option)
248 displayName: 'test.py'
250 vmImage: $(ubuntu_vm)
254 TEST_PY_BD: "sandbox"
256 TEST_PY_BD: "sandbox"
257 OVERRIDE: "-O clang-16"
259 TEST_PY_BD: "sandbox"
260 BUILD_ENV: "NO_LTO=1"
262 TEST_PY_BD: "sandbox_spl"
263 TEST_PY_TEST_SPEC: "test_ofplatdata or test_handoff or test_spl"
265 TEST_PY_BD: "sandbox_vpl"
266 TEST_PY_TEST_SPEC: "vpl or test_spl"
268 TEST_PY_BD: "sandbox_noinst"
269 TEST_PY_TEST_SPEC: "test_ofplatdata or test_handoff or test_spl"
271 TEST_PY_BD: "sandbox_flattree"
273 TEST_PY_BD: "sandbox"
274 BUILD_ENV: "FTRACE=1 NO_LTO=1"
275 TEST_PY_TEST_SPEC: "trace"
276 OVERRIDE: "-a CONFIG_TRACE=y -a CONFIG_TRACE_EARLY=y -a CONFIG_TRACE_EARLY_SIZE=0x01000000"
278 TEST_PY_BD: "coreboot"
279 TEST_PY_ID: "--id qemu"
280 TEST_PY_TEST_SPEC: "not sleep"
282 TEST_PY_BD: "evb-ast2500"
283 TEST_PY_ID: "--id qemu"
285 TEST_PY_BD: "evb-ast2600"
286 TEST_PY_ID: "--id qemu"
288 TEST_PY_BD: "vexpress_ca9x4"
289 TEST_PY_ID: "--id qemu"
290 integratorcp_cm926ejs:
291 TEST_PY_BD: "integratorcp_cm926ejs"
292 TEST_PY_ID: "--id qemu"
293 TEST_PY_TEST_SPEC: "not sleep"
295 TEST_PY_BD: "qemu_arm"
296 TEST_PY_TEST_SPEC: "not sleep"
298 TEST_PY_BD: "qemu_arm64"
299 TEST_PY_TEST_SPEC: "not sleep"
301 TEST_PY_BD: "M5208EVBE"
302 TEST_PY_ID: "--id qemu"
303 TEST_PY_TEST_SPEC: "not sleep and not efi"
304 OVERRIDE: "-a CONFIG_M68K_QEMU=y -a ~CONFIG_MCFTMR"
307 TEST_PY_ID: "--id qemu"
308 TEST_PY_TEST_SPEC: "not sleep and not efi"
310 TEST_PY_BD: "maltael"
311 TEST_PY_ID: "--id qemu"
312 TEST_PY_TEST_SPEC: "not sleep and not efi"
314 TEST_PY_BD: "malta64"
315 TEST_PY_ID: "--id qemu"
316 TEST_PY_TEST_SPEC: "not sleep and not efi"
318 TEST_PY_BD: "malta64el"
319 TEST_PY_ID: "--id qemu"
320 TEST_PY_TEST_SPEC: "not sleep and not efi"
322 TEST_PY_BD: "qemu-ppce500"
323 TEST_PY_TEST_SPEC: "not sleep"
325 TEST_PY_BD: "qemu-riscv32"
326 TEST_PY_TEST_SPEC: "not sleep"
328 TEST_PY_BD: "qemu-riscv64"
329 TEST_PY_TEST_SPEC: "not sleep"
331 TEST_PY_BD: "qemu-riscv32_spl"
332 TEST_PY_TEST_SPEC: "not sleep"
334 TEST_PY_BD: "qemu-riscv64_spl"
335 TEST_PY_TEST_SPEC: "not sleep"
337 TEST_PY_BD: "qemu-x86"
338 TEST_PY_TEST_SPEC: "not sleep"
340 TEST_PY_BD: "qemu-x86_64"
341 TEST_PY_TEST_SPEC: "not sleep"
343 TEST_PY_BD: "r2dplus"
344 TEST_PY_ID: "--id i82557c_qemu"
346 TEST_PY_BD: "r2dplus"
347 TEST_PY_ID: "--id pcnet_qemu"
349 TEST_PY_BD: "r2dplus"
350 TEST_PY_ID: "--id rtl8139_qemu"
352 TEST_PY_BD: "r2dplus"
353 TEST_PY_ID: "--id tulip_qemu"
354 sifive_unleashed_sdcard:
355 TEST_PY_BD: "sifive_unleashed"
356 TEST_PY_ID: "--id sdcard_qemu"
357 sifive_unleashed_spi-nor:
358 TEST_PY_BD: "sifive_unleashed"
359 TEST_PY_ID: "--id spi-nor_qemu"
361 TEST_PY_BD: "xilinx_zynq_virt"
362 TEST_PY_ID: "--id qemu"
363 TEST_PY_TEST_SPEC: "not sleep"
365 TEST_PY_BD: "xilinx_versal_virt"
366 TEST_PY_ID: "--id qemu"
367 TEST_PY_TEST_SPEC: "not sleep"
370 TEST_PY_ID: "--id qemu"
371 TEST_PY_TEST_SPEC: "not sleep"
376 # make environment variables available as tests are running inside a container
377 export WORK_DIR="${WORK_DIR}"
378 export TEST_PY_BD="${TEST_PY_BD}"
379 export TEST_PY_ID="${TEST_PY_ID}"
380 export TEST_PY_TEST_SPEC="${TEST_PY_TEST_SPEC}"
381 export OVERRIDE="${OVERRIDE}"
382 export BUILD_ENV="${BUILD_ENV}"
384 cat << "EOF" >> test.sh
385 # the below corresponds to .gitlab-ci.yml "before_script"
387 git config --global --add safe.directory ${WORK_DIR}
388 git clone --depth=1 https://source.denx.de/u-boot/u-boot-test-hooks /tmp/uboot-test-hooks
389 ln -s travis-ci /tmp/uboot-test-hooks/bin/`hostname`
390 ln -s travis-ci /tmp/uboot-test-hooks/py/`hostname`
391 grub-mkimage --prefix=\"\" -o ~/grub_x86.efi -O i386-efi normal echo lsefimmap lsefi lsefisystab efinet tftp minicmd
392 grub-mkimage --prefix=\"\" -o ~/grub_x64.efi -O x86_64-efi normal echo lsefimmap lsefi lsefisystab efinet tftp minicmd
393 if [[ "${TEST_PY_BD}" == "qemu-riscv32_spl" ]]; then
394 wget -O - https://github.com/riscv/opensbi/releases/download/v0.9/opensbi-0.9-rv-bin.tar.xz | tar -C /tmp -xJ;
395 export OPENSBI=/tmp/opensbi-0.9-rv-bin/share/opensbi/ilp32/generic/firmware/fw_dynamic.bin;
397 if [[ "${TEST_PY_BD}" == "qemu-riscv64_spl" ]] || [[ "${TEST_PY_BD}" == "sifive_unleashed" ]]; then
398 wget -O - https://github.com/riscv/opensbi/releases/download/v0.9/opensbi-0.9-rv-bin.tar.xz | tar -C /tmp -xJ;
399 export OPENSBI=/tmp/opensbi-0.9-rv-bin/share/opensbi/lp64/generic/firmware/fw_dynamic.bin;
401 # the below corresponds to .gitlab-ci.yml "script"
403 export UBOOT_TRAVIS_BUILD_DIR=/tmp/${TEST_PY_BD};
404 if [ -n "${BUILD_ENV}" ]; then
407 tools/buildman/buildman -o ${UBOOT_TRAVIS_BUILD_DIR} -w -E -W -e --board ${TEST_PY_BD} ${OVERRIDE}
408 cp ~/grub_x86.efi ${UBOOT_TRAVIS_BUILD_DIR}/
409 cp ~/grub_x64.efi ${UBOOT_TRAVIS_BUILD_DIR}/
410 cp /opt/grub/grubriscv64.efi ${UBOOT_TRAVIS_BUILD_DIR}/grub_riscv64.efi
411 cp /opt/grub/grubaa64.efi ${UBOOT_TRAVIS_BUILD_DIR}/grub_arm64.efi
412 cp /opt/grub/grubarm.efi ${UBOOT_TRAVIS_BUILD_DIR}/grub_arm.efi
413 # create sdcard / spi-nor images for sifive unleashed using genimage
414 if [[ "${TEST_PY_BD}" == "sifive_unleashed" ]]; then
416 cp ${UBOOT_TRAVIS_BUILD_DIR}/spl/u-boot-spl.bin .;
417 cp ${UBOOT_TRAVIS_BUILD_DIR}/u-boot.itb .;
419 genimage --inputpath . --config board/sifive/unleashed/genimage_sdcard.cfg;
420 cp images/sdcard.img ${UBOOT_TRAVIS_BUILD_DIR}/;
422 genimage --inputpath . --config board/sifive/unleashed/genimage_spi-nor.cfg;
423 cp images/spi-nor.img ${UBOOT_TRAVIS_BUILD_DIR}/;
425 if [[ "${TEST_PY_BD}" == "coreboot" ]]; then
426 wget -O - "https://drive.google.com/uc?id=1x6nrtWIyIRPLS2cQBwYTnT2TbOI8UjmM&export=download" |xz -dc >${UBOOT_TRAVIS_BUILD_DIR}/coreboot.rom;
427 wget -O - "https://drive.google.com/uc?id=149Cz-5SZXHNKpi9xg6R_5XITWohu348y&export=download" >cbfstool;
429 ./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;
431 virtualenv -p /usr/bin/python3 /tmp/venv
432 . /tmp/venv/bin/activate
433 pip install -r test/py/requirements.txt
434 pip install pytest-azurepipelines
435 export PATH=/opt/qemu/bin:/tmp/uboot-test-hooks/bin:${PATH};
436 export PYTHONPATH=/tmp/uboot-test-hooks/py/travis-ci;
437 # "${var:+"-k $var"}" expands to "" if $var is empty, "-k $var" if not
438 ./test/py/test.py -ra -o cache_dir="$UBOOT_TRAVIS_BUILD_DIR"/.pytest_cache --bd ${TEST_PY_BD} ${TEST_PY_ID} ${TEST_PY_TEST_SPEC:+"-k ${TEST_PY_TEST_SPEC}"} --build-dir "$UBOOT_TRAVIS_BUILD_DIR" --report-dir "$UBOOT_TRAVIS_BUILD_DIR";
439 # the below corresponds to .gitlab-ci.yml "after_script"
440 rm -rf /tmp/uboot-test-hooks /tmp/venv
443 # make current directory writeable to uboot user inside the container
444 # as sandbox testing need create files like spi flash images, etc.
445 # (TODO: clean up this in the future)
447 # Filesystem tests need extra docker args to run
449 if [[ "${TEST_PY_BD}" == "sandbox" ]]; then
450 # mount -o loop needs the loop devices
451 if modprobe loop; then
452 for d in $(find /dev -maxdepth 1 -name 'loop*'); do
453 set -- "$@" --device $d:$d
456 # Needed for mount syscall (for guestmount as well)
457 set -- "$@" --cap-add SYS_ADMIN
458 # Default apparmor profile denies mounts
459 set -- "$@" --security-opt apparmor=unconfined
461 # Some tests using libguestfs-tools need the fuse device to run
462 docker run "$@" --device /dev/fuse:/dev/fuse -v $PWD:$(work_dir) $(ci_runner_image) /bin/bash $(work_dir)/test.sh
466 - job: build_the_world
467 displayName: 'Build the World'
469 vmImage: $(ubuntu_vm)
471 # Use almost the same target division in .travis.yml, only merged
472 # 3 small build jobs (arc/microblaze/xtensa) into one.
474 arc_microblaze_xtensa:
475 BUILDMAN: "arc microblaze xtensa"
478 arm11_arm7_arm920t_arm946es:
479 BUILDMAN: "arm11 arm7 arm920t arm946es"
481 BUILDMAN: "arm926ejs -x freescale,siemens,at91,kirkwood,omap"
483 BUILDMAN: "at91 -x armv7"
485 BUILDMAN: "at91 -x arm926ejs"
486 boundary_engicam_toradex:
487 BUILDMAN: "boundary engicam toradex"
489 BUILDMAN: "bcm -x mips"
491 BUILDMAN: "freescale -x powerpc,m68k,aarch64,ls101,ls102,ls104,ls108,ls20,lx216"
493 BUILDMAN: "freescale&ls101"
495 BUILDMAN: "freescale&ls102"
497 BUILDMAN: "freescale&ls104"
499 BUILDMAN: "freescale&ls108"
501 BUILDMAN: "freescale&ls20"
503 BUILDMAN: "freescale&lx216"
505 BUILDMAN: "mx6 -x boundary,engicam,freescale,technexion,toradex"
507 BUILDMAN: "mx -x mx6,imx8,freescale,technexion,toradex"
509 BUILDMAN: "imx8 imx9"
517 OVERRIDE: "-O clang-16 -a ASAN"
519 BUILDMAN: "samsung socfpga"
529 BUILDMAN: "sun8i&armv7"
531 BUILDMAN: "sun8i&aarch64"
537 BUILDMAN: "arm -x arm11,arm7,arm9,aarch64,at91,bcm,freescale,kirkwood,mvebu,renesas,siemens,tegra,uniphier,mx,samsung,sunxi,am33xx,omap,rk,toradex,socfpga,k2,k3,zynq"
539 BUILDMAN: "sandbox x86"
541 BUILDMAN: "technexion"
555 BUILDMAN: "tegra -x toradex"
557 BUILDMAN: "am33xx -x siemens"
563 BUILDMAN: "aarch64 -x amlogic,bcm,imx8,imx9,k3,tegra,ls1,ls2,lx216,mvebu,uniphier,renesas,sunxi,samsung,socfpga,rk,versal,zynq"
565 BUILDMAN: "rk -x aarch64"
567 BUILDMAN: "rk&aarch64"
571 BUILDMAN: "zynq&armv7"
573 BUILDMAN: "versal|zynqmp&aarch64"
578 cat << EOF > build.sh
581 # make environment variables available as tests are running inside a container
582 export BUILDMAN="${BUILDMAN}"
583 git config --global --add safe.directory ${WORK_DIR}
585 cat << "EOF" >> build.sh
586 if [[ "${BUILDMAN}" != "" ]]; then
588 tools/buildman/buildman -o /tmp -PEWM ${BUILDMAN} ${OVERRIDE} || ret=$?;
589 if [[ $ret -ne 0 ]]; then
590 tools/buildman/buildman -o /tmp -seP ${BUILDMAN};
596 docker run -v $PWD:$(work_dir) $(ci_runner_image) /bin/bash $(work_dir)/build.sh