2 windows_vm: windows-2019
3 ubuntu_vm: ubuntu-18.04
5 ci_runner_image: trini/u-boot-gitlab-ci-runner:focal-20220302-15Mar2022
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 "pacman --noconfirm -Syyuu"
26 %CD:~0,2%\msys64\usr\bin\bash -lc "pacman --noconfirm -Su"
27 displayName: 'Update MSYS2'
29 %CD:~0,2%\msys64\usr\bin\bash -lc "pacman --noconfirm --needed -Sy make gcc bison flex diffutils openssl-devel libgnutls-devel libutil-linux-devel"
30 displayName: 'Install Toolchain'
32 echo make tools-only_defconfig tools-only NO_SDL=1 > build-tools.sh
33 %CD:~0,2%\msys64\usr\bin\bash -lc "bash build-tools.sh"
34 displayName: 'Build Host Tools'
36 # Tell MSYS2 we need a POSIX emulation layer
38 # Tell MSYS2 not to ‘cd’ our startup directory to HOME
41 - job: tools_only_macOS
42 displayName: 'Ensure host tools build for macOS X'
46 - script: brew install make ossp-uuid
47 displayName: Brew install dependencies
49 gmake tools-only_config tools-only NO_SDL=1 \
52 -j$(sysctl -n hw.logicalcpu)
53 displayName: 'Perform tools-only build'
55 - job: check_for_migrated_symbols_in_board_header
56 displayName: 'Check for migrated symbols in board header'
60 image: $(ci_runner_image)
61 options: $(container_option)
67 cat `find . -name "Kconfig*"` | \
68 sed -n -e 's/^\s*config *\([A-Za-z0-9_]*\).*$/CONFIG_\1/p' \
69 -e 's/^\s*menuconfig *\([A-Za-z0-9_]*\).*$/CONFIG_\1/p' \
71 for CFG in `find include/configs -name "*.h"`; do
72 (grep '#define[[:blank:]]CONFIG_' $CFG | \
73 sed -n 's/#define.\(CONFIG_[A-Za-z0-9_]*\).*/\1/p' ; \
74 grep '#undef[[:blank:]]CONFIG_' $CFG | \
75 sed -n 's/#undef.\(CONFIG_[A-Za-z0-9_]*\).*/\1/p') | \
76 sort -u > ${KUSEDLST} || true
77 NUM=`comm -123 --total --output-delimiter=, ${KSYMLST} ${KUSEDLST} | \
79 if [[ $NUM -ne 0 ]]; then
80 echo "Unmigrated symbols found in $CFG:"
81 comm -12 ${KSYMLST} ${KUSEDLST}
88 displayName: 'Static code analysis with cppcheck'
92 image: $(ci_runner_image)
93 options: $(container_option)
95 - script: cppcheck -j$(nproc) --force --quiet --inline-suppr .
98 displayName: 'Build HTML documentation'
100 vmImage: $(ubuntu_vm)
102 image: $(ci_runner_image)
103 options: $(container_option)
106 virtualenv -p /usr/bin/python3 /tmp/venvhtml
107 . /tmp/venvhtml/bin/activate
108 pip install -r doc/sphinx/requirements.txt
112 displayName: 'Search for TODO within source tree'
114 vmImage: $(ubuntu_vm)
116 image: $(ci_runner_image)
117 options: $(container_option)
119 - script: grep -r TODO .
120 - script: grep -r FIXME .
121 - script: grep -r HACK . | grep -v HACKKIT
124 displayName: 'Some statistics about the code base'
126 vmImage: $(ubuntu_vm)
128 image: $(ci_runner_image)
129 options: $(container_option)
131 - script: sloccount .
134 displayName: 'Ensure all configs have MAINTAINERS entries'
136 vmImage: $(ubuntu_vm)
138 image: $(ci_runner_image)
139 options: $(container_option)
142 if [ `./tools/genboardscfg.py -f 2>&1 | wc -l` -ne 0 ]; then exit 1; fi
145 displayName: 'Ensure host tools build'
147 vmImage: $(ubuntu_vm)
149 image: $(ci_runner_image)
150 options: $(container_option)
153 make tools-only_config tools-only -j$(nproc)
156 displayName: 'Ensure env tools build'
158 vmImage: $(ubuntu_vm)
160 image: $(ci_runner_image)
161 options: $(container_option)
164 make tools-only_config envtools -j$(nproc)
167 displayName: 'Run binman, buildman, dtoc, Kconfig and patman testsuites'
169 vmImage: $(ubuntu_vm)
172 cat << EOF > build.sh
176 cat << "EOF" >> build.sh
177 git config --global user.name "Azure Pipelines"
180 virtualenv -p /usr/bin/python3 /tmp/venv
181 . /tmp/venv/bin/activate
182 pip install -r test/py/requirements.txt
183 export UBOOT_TRAVIS_BUILD_DIR=/tmp/sandbox_spl
184 export PYTHONPATH=${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc/pylibfdt
185 export PATH=${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc:${PATH}
186 ./tools/buildman/buildman -T0 -o ${UBOOT_TRAVIS_BUILD_DIR} -w --board sandbox_spl
187 ./tools/binman/binman --toolpath ${UBOOT_TRAVIS_BUILD_DIR}/tools test
188 ./tools/buildman/buildman -t
190 ./tools/patman/patman test
191 make O=${UBOOT_TRAVIS_BUILD_DIR} testconfig
194 # We cannot use "container" like other jobs above, as buildman
195 # seems to hang forever with pre-configured "container" environment
196 docker run -v $PWD:$(work_dir) $(ci_runner_image) /bin/bash $(work_dir)/build.sh
198 - job: nokia_rx51_test
199 displayName: 'Run tests for Nokia RX-51 (aka N900)'
201 vmImage: $(ubuntu_vm)
203 image: $(ci_runner_image)
204 options: $(container_option)
207 export PATH=/opt/gcc-11.1.0-nolibc/arm-linux-gnueabi/bin:$PATH
208 test/nokia_rx51_test.sh
211 displayName: Check for any pylint regressions
213 vmImage: $(ubuntu_vm)
215 image: $(ci_runner_image)
216 options: $(container_option)
221 pip install -r test/py/requirements.txt
222 pip install asteval pylint==2.12.2 pyopenssl
223 export PATH=${PATH}:~/.local/bin
224 echo "[MASTER]" >> .pylintrc
225 echo "load-plugins=pylint.extensions.docparams" >> .pylintrc
226 export UBOOT_TRAVIS_BUILD_DIR=/tmp/sandbox_spl
227 ./tools/buildman/buildman -T0 -o ${UBOOT_TRAVIS_BUILD_DIR} -w --board sandbox_spl
229 export PYTHONPATH=${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc/pylibfdt
235 displayName: 'test.py'
237 vmImage: $(ubuntu_vm)
241 TEST_PY_BD: "sandbox"
243 TEST_PY_BD: "sandbox"
244 OVERRIDE: "-O clang-13"
246 TEST_PY_BD: "sandbox_spl"
247 TEST_PY_TEST_SPEC: "test_ofplatdata or test_handoff or test_spl"
249 TEST_PY_BD: "sandbox_vpl"
250 TEST_PY_TEST_SPEC: "test_vpl_help or test_spl"
252 TEST_PY_BD: "sandbox_noinst"
253 TEST_PY_TEST_SPEC: "test_ofplatdata or test_handoff or test_spl"
255 TEST_PY_BD: "sandbox_flattree"
257 TEST_PY_BD: "coreboot"
258 TEST_PY_ID: "--id qemu"
259 TEST_PY_TEST_SPEC: "not sleep"
261 TEST_PY_BD: "evb-ast2500"
262 TEST_PY_ID: "--id qemu"
264 TEST_PY_BD: "vexpress_ca9x4"
265 TEST_PY_ID: "--id qemu"
266 integratorcp_cm926ejs:
267 TEST_PY_BD: "integratorcp_cm926ejs"
268 TEST_PY_ID: "--id qemu"
269 TEST_PY_TEST_SPEC: "not sleep"
271 TEST_PY_BD: "qemu_arm"
272 TEST_PY_TEST_SPEC: "not sleep"
274 TEST_PY_BD: "qemu_arm64"
275 TEST_PY_TEST_SPEC: "not sleep"
278 TEST_PY_ID: "--id qemu"
279 TEST_PY_TEST_SPEC: "not sleep and not efi"
281 TEST_PY_BD: "maltael"
282 TEST_PY_ID: "--id qemu"
283 TEST_PY_TEST_SPEC: "not sleep and not efi"
285 TEST_PY_BD: "malta64"
286 TEST_PY_ID: "--id qemu"
287 TEST_PY_TEST_SPEC: "not sleep and not efi"
289 TEST_PY_BD: "malta64el"
290 TEST_PY_ID: "--id qemu"
291 TEST_PY_TEST_SPEC: "not sleep and not efi"
293 TEST_PY_BD: "qemu-ppce500"
294 TEST_PY_TEST_SPEC: "not sleep"
296 TEST_PY_BD: "qemu-riscv32"
297 TEST_PY_TEST_SPEC: "not sleep"
299 TEST_PY_BD: "qemu-riscv64"
300 TEST_PY_TEST_SPEC: "not sleep"
302 TEST_PY_BD: "qemu-riscv32_spl"
303 TEST_PY_TEST_SPEC: "not sleep"
305 TEST_PY_BD: "qemu-riscv64_spl"
306 TEST_PY_TEST_SPEC: "not sleep"
308 TEST_PY_BD: "qemu-x86"
309 TEST_PY_TEST_SPEC: "not sleep"
311 TEST_PY_BD: "qemu-x86_64"
312 TEST_PY_TEST_SPEC: "not sleep"
314 TEST_PY_BD: "r2dplus"
315 TEST_PY_ID: "--id i82557c_qemu"
317 TEST_PY_BD: "r2dplus"
318 TEST_PY_ID: "--id pcnet_qemu"
320 TEST_PY_BD: "r2dplus"
321 TEST_PY_ID: "--id rtl8139_qemu"
323 TEST_PY_BD: "r2dplus"
324 TEST_PY_ID: "--id tulip_qemu"
325 sifive_unleashed_sdcard:
326 TEST_PY_BD: "sifive_unleashed"
327 TEST_PY_ID: "--id sdcard_qemu"
328 sifive_unleashed_spi-nor:
329 TEST_PY_BD: "sifive_unleashed"
330 TEST_PY_ID: "--id spi-nor_qemu"
332 TEST_PY_BD: "xilinx_zynq_virt"
333 TEST_PY_ID: "--id qemu"
334 TEST_PY_TEST_SPEC: "not sleep"
336 TEST_PY_BD: "xilinx_versal_virt"
337 TEST_PY_ID: "--id qemu"
338 TEST_PY_TEST_SPEC: "not sleep"
341 TEST_PY_ID: "--id qemu"
342 TEST_PY_TEST_SPEC: "not sleep"
347 # make environment variables available as tests are running inside a container
348 export WORK_DIR="${WORK_DIR}"
349 export TEST_PY_BD="${TEST_PY_BD}"
350 export TEST_PY_ID="${TEST_PY_ID}"
351 export TEST_PY_TEST_SPEC="${TEST_PY_TEST_SPEC}"
352 export OVERRIDE="${OVERRIDE}"
354 cat << "EOF" >> test.sh
355 # the below corresponds to .gitlab-ci.yml "before_script"
357 git clone --depth=1 https://source.denx.de/u-boot/u-boot-test-hooks /tmp/uboot-test-hooks
358 ln -s travis-ci /tmp/uboot-test-hooks/bin/`hostname`
359 ln -s travis-ci /tmp/uboot-test-hooks/py/`hostname`
360 grub-mkimage --prefix=\"\" -o ~/grub_x86.efi -O i386-efi normal echo lsefimmap lsefi lsefisystab efinet tftp minicmd
361 grub-mkimage --prefix=\"\" -o ~/grub_x64.efi -O x86_64-efi normal echo lsefimmap lsefi lsefisystab efinet tftp minicmd
362 if [[ "${TEST_PY_BD}" == "qemu-riscv32_spl" ]]; then
363 wget -O - https://github.com/riscv/opensbi/releases/download/v0.9/opensbi-0.9-rv-bin.tar.xz | tar -C /tmp -xJ;
364 export OPENSBI=/tmp/opensbi-0.9-rv-bin/share/opensbi/ilp32/generic/firmware/fw_dynamic.bin;
366 if [[ "${TEST_PY_BD}" == "qemu-riscv64_spl" ]] || [[ "${TEST_PY_BD}" == "sifive_unleashed" ]]; then
367 wget -O - https://github.com/riscv/opensbi/releases/download/v0.9/opensbi-0.9-rv-bin.tar.xz | tar -C /tmp -xJ;
368 export OPENSBI=/tmp/opensbi-0.9-rv-bin/share/opensbi/lp64/generic/firmware/fw_dynamic.bin;
370 # the below corresponds to .gitlab-ci.yml "script"
372 export UBOOT_TRAVIS_BUILD_DIR=/tmp/${TEST_PY_BD};
373 tools/buildman/buildman -o ${UBOOT_TRAVIS_BUILD_DIR} -w -E -W -e --board ${TEST_PY_BD} ${OVERRIDE}
374 cp ~/grub_x86.efi ${UBOOT_TRAVIS_BUILD_DIR}/
375 cp ~/grub_x64.efi ${UBOOT_TRAVIS_BUILD_DIR}/
376 cp /opt/grub/grubriscv64.efi ${UBOOT_TRAVIS_BUILD_DIR}/grub_riscv64.efi
377 cp /opt/grub/grubaa64.efi ${UBOOT_TRAVIS_BUILD_DIR}/grub_arm64.efi
378 cp /opt/grub/grubarm.efi ${UBOOT_TRAVIS_BUILD_DIR}/grub_arm.efi
379 # create sdcard / spi-nor images for sifive unleashed using genimage
380 if [[ "${TEST_PY_BD}" == "sifive_unleashed" ]]; then
382 cp ${UBOOT_TRAVIS_BUILD_DIR}/spl/u-boot-spl.bin .;
383 cp ${UBOOT_TRAVIS_BUILD_DIR}/u-boot.itb .;
385 genimage --inputpath . --config board/sifive/unleashed/genimage_sdcard.cfg;
386 cp images/sdcard.img ${UBOOT_TRAVIS_BUILD_DIR}/;
388 genimage --inputpath . --config board/sifive/unleashed/genimage_spi-nor.cfg;
389 cp images/spi-nor.img ${UBOOT_TRAVIS_BUILD_DIR}/;
391 if [[ "${TEST_PY_BD}" == "coreboot" ]]; then
392 wget -O - "https://drive.google.com/uc?id=1x6nrtWIyIRPLS2cQBwYTnT2TbOI8UjmM&export=download" |xz -dc >${UBOOT_TRAVIS_BUILD_DIR}/coreboot.rom;
393 wget -O - "https://drive.google.com/uc?id=149Cz-5SZXHNKpi9xg6R_5XITWohu348y&export=download" >cbfstool;
395 ./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;
397 virtualenv -p /usr/bin/python3 /tmp/venv
398 . /tmp/venv/bin/activate
399 pip install -r test/py/requirements.txt
400 export PATH=/opt/qemu/bin:/tmp/uboot-test-hooks/bin:${PATH};
401 export PYTHONPATH=/tmp/uboot-test-hooks/py/travis-ci;
402 # "${var:+"-k $var"}" expands to "" if $var is empty, "-k $var" if not
403 ./test/py/test.py -ra --bd ${TEST_PY_BD} ${TEST_PY_ID} ${TEST_PY_TEST_SPEC:+"-k ${TEST_PY_TEST_SPEC}"} --build-dir "$UBOOT_TRAVIS_BUILD_DIR";
404 # the below corresponds to .gitlab-ci.yml "after_script"
405 rm -rf /tmp/uboot-test-hooks /tmp/venv
408 # make current directory writeable to uboot user inside the container
409 # as sandbox testing need create files like spi flash images, etc.
410 # (TODO: clean up this in the future)
412 # Filesystem tests need extra docker args to run
414 if [[ "${TEST_PY_BD}" == "sandbox" ]]; then
415 # mount -o loop needs the loop devices
416 if modprobe loop; then
417 for d in $(find /dev -maxdepth 1 -name 'loop*'); do
418 set -- "$@" --device $d:$d
421 # Needed for mount syscall (for guestmount as well)
422 set -- "$@" --cap-add SYS_ADMIN
423 # Default apparmor profile denies mounts
424 set -- "$@" --security-opt apparmor=unconfined
426 # Some tests using libguestfs-tools need the fuse device to run
427 docker run "$@" --device /dev/fuse:/dev/fuse -v $PWD:$(work_dir) $(ci_runner_image) /bin/bash $(work_dir)/test.sh
431 - job: build_the_world
432 displayName: 'Build the World'
434 vmImage: $(ubuntu_vm)
436 # Use almost the same target division in .travis.yml, only merged
437 # 3 small build jobs (arc/microblaze/xtensa) into one.
439 arc_microblaze_xtensa:
440 BUILDMAN: "arc microblaze xtensa"
441 arm11_arm7_arm920t_arm946es:
442 BUILDMAN: "arm11 arm7 arm920t arm946es"
444 BUILDMAN: "arm926ejs -x freescale,siemens,at91,kirkwood,omap"
446 BUILDMAN: "at91 -x armv7"
448 BUILDMAN: "at91 -x arm926ejs"
449 boundary_engicam_toradex:
450 BUILDMAN: "boundary engicam toradex"
452 BUILDMAN: "bcm -x mips"
454 BUILDMAN: "freescale -x powerpc,m68k,aarch64,ls101,ls102,ls104,ls108,ls20,lx216"
456 BUILDMAN: "freescale&ls101"
458 BUILDMAN: "freescale&ls102"
460 BUILDMAN: "freescale&ls104"
462 BUILDMAN: "freescale&ls108"
464 BUILDMAN: "freescale&ls20"
466 BUILDMAN: "freescale&lx216"
468 BUILDMAN: "mx6 -x boundary,engicam,freescale,technexion,toradex"
470 BUILDMAN: "mx -x mx6,freescale,technexion,toradex"
476 BUILDMAN: "samsung socfpga"
486 BUILDMAN: "sun8i&armv7"
488 BUILDMAN: "sun8i&aarch64"
494 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"
496 BUILDMAN: "sandbox x86"
498 BUILDMAN: "technexion"
508 BUILDMAN: "powerpc -x freescale"
510 BUILDMAN: "mpc85xx&freescale -x t208xrdb -x t102* -x p1_p2_rdb_pc -x p1010rdb -x corenet_ds -x bsc91*"
512 BUILDMAN: "t208xrdb corenet_ds"
514 BUILDMAN: "mpc83xx&freescale"
518 BUILDMAN: "p1_p2_rdb_pc"
520 BUILDMAN: "p1010rdb bsc91"
524 BUILDMAN: "tegra -x toradex"
526 BUILDMAN: "am33xx -x siemens"
532 BUILDMAN: "aarch64 -x bcm,imx8,k3,tegra,ls1,ls2,lx216,mvebu,uniphier,renesas,sunxi,samsung,socfpga,rk,versal,zynq"
538 BUILDMAN: "zynq&armv7"
540 BUILDMAN: "versal|zynqmp&aarch64"
545 cat << EOF > build.sh
548 # make environment variables available as tests are running inside a container
549 export BUILDMAN="${BUILDMAN}"
551 cat << "EOF" >> build.sh
552 if [[ "${BUILDMAN}" != "" ]]; then
554 tools/buildman/buildman -o /tmp -P -E -W ${BUILDMAN} ${OVERRIDE} || ret=$?;
555 if [[ $ret -ne 0 ]]; then
556 tools/buildman/buildman -o /tmp -seP ${BUILDMAN};
562 docker run -v $PWD:$(work_dir) $(ci_runner_image) /bin/bash $(work_dir)/build.sh