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 " "
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 NO_SDL=1 > 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 NO_SDL=1 \
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_migrated_symbols_in_board_header
57 displayName: 'Check for migrated symbols in board header'
61 image: $(ci_runner_image)
62 options: $(container_option)
68 cat `find . -name "Kconfig*"` | \
69 sed -n -e 's/^\s*config *\([A-Za-z0-9_]*\).*$/CONFIG_\1/p' \
70 -e 's/^\s*menuconfig *\([A-Za-z0-9_]*\).*$/CONFIG_\1/p' \
72 for CFG in `find include/configs -name "*.h"`; do
73 (grep '#define[[:blank:]]CONFIG_' $CFG | \
74 sed -n 's/#define.\(CONFIG_[A-Za-z0-9_]*\).*/\1/p' ; \
75 grep '#undef[[:blank:]]CONFIG_' $CFG | \
76 sed -n 's/#undef.\(CONFIG_[A-Za-z0-9_]*\).*/\1/p') | \
77 sort -u > ${KUSEDLST} || true
78 NUM=`comm -123 --total --output-delimiter=, ${KSYMLST} ${KUSEDLST} | \
80 if [[ $NUM -ne 0 ]]; then
81 echo "Unmigrated symbols found in $CFG:"
82 comm -12 ${KSYMLST} ${KUSEDLST}
89 displayName: 'Static code analysis with cppcheck'
93 image: $(ci_runner_image)
94 options: $(container_option)
96 - script: cppcheck -j$(nproc) --force --quiet --inline-suppr .
99 displayName: 'Build HTML documentation'
101 vmImage: $(ubuntu_vm)
103 image: $(ci_runner_image)
104 options: $(container_option)
107 virtualenv -p /usr/bin/python3 /tmp/venvhtml
108 . /tmp/venvhtml/bin/activate
109 pip install -r doc/sphinx/requirements.txt
113 displayName: 'Search for TODO within source tree'
115 vmImage: $(ubuntu_vm)
117 image: $(ci_runner_image)
118 options: $(container_option)
120 - script: grep -r TODO .
121 - script: grep -r FIXME .
122 - script: grep -r HACK . | grep -v HACKKIT
125 displayName: 'Some statistics about the code base'
127 vmImage: $(ubuntu_vm)
129 image: $(ci_runner_image)
130 options: $(container_option)
132 - script: sloccount .
135 displayName: 'Ensure all configs have MAINTAINERS entries'
137 vmImage: $(ubuntu_vm)
139 image: $(ci_runner_image)
140 options: $(container_option)
143 if [ `./tools/genboardscfg.py -f 2>&1 | wc -l` -ne 0 ]; then exit 1; fi
146 displayName: 'Ensure host tools build'
148 vmImage: $(ubuntu_vm)
150 image: $(ci_runner_image)
151 options: $(container_option)
154 make tools-only_config tools-only -j$(nproc)
157 displayName: 'Ensure env tools build'
159 vmImage: $(ubuntu_vm)
161 image: $(ci_runner_image)
162 options: $(container_option)
165 make tools-only_config envtools -j$(nproc)
168 displayName: 'Run binman, buildman, dtoc, Kconfig and patman testsuites'
170 vmImage: $(ubuntu_vm)
173 cat << EOF > build.sh
177 cat << "EOF" >> build.sh
178 git config --global user.name "Azure Pipelines"
179 git config --global user.email bmeng.cn@gmail.com
181 virtualenv -p /usr/bin/python3 /tmp/venv
182 . /tmp/venv/bin/activate
183 pip install -r test/py/requirements.txt
184 export UBOOT_TRAVIS_BUILD_DIR=/tmp/sandbox_spl
185 export PYTHONPATH=${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc/pylibfdt
186 export PATH=${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc:${PATH}
187 ./tools/buildman/buildman -T0 -o ${UBOOT_TRAVIS_BUILD_DIR} -w --board sandbox_spl
188 ./tools/binman/binman --toolpath ${UBOOT_TRAVIS_BUILD_DIR}/tools test
189 ./tools/buildman/buildman -t
191 ./tools/patman/patman test
192 make O=${UBOOT_TRAVIS_BUILD_DIR} testconfig
195 # We cannot use "container" like other jobs above, as buildman
196 # seems to hang forever with pre-configured "container" environment
197 docker run -v $PWD:$(work_dir) $(ci_runner_image) /bin/bash $(work_dir)/build.sh
199 - job: nokia_rx51_test
200 displayName: 'Run tests for Nokia RX-51 (aka N900)'
202 vmImage: $(ubuntu_vm)
204 image: $(ci_runner_image)
205 options: $(container_option)
208 export PATH=/opt/gcc-11.1.0-nolibc/arm-linux-gnueabi/bin:$PATH
209 test/nokia_rx51_test.sh
212 displayName: Check for any pylint regressions
214 vmImage: $(ubuntu_vm)
216 image: $(ci_runner_image)
217 options: $(container_option)
222 pip install -r test/py/requirements.txt
223 pip install asteval pylint==2.12.2 pyopenssl
224 export PATH=${PATH}:~/.local/bin
225 echo "[MASTER]" >> .pylintrc
226 echo "load-plugins=pylint.extensions.docparams" >> .pylintrc
227 export UBOOT_TRAVIS_BUILD_DIR=/tmp/sandbox_spl
228 ./tools/buildman/buildman -T0 -o ${UBOOT_TRAVIS_BUILD_DIR} -w --board sandbox_spl
230 export PYTHONPATH=${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc/pylibfdt
236 displayName: 'test.py'
238 vmImage: $(ubuntu_vm)
242 TEST_PY_BD: "sandbox"
244 TEST_PY_BD: "sandbox"
245 OVERRIDE: "-O clang-13"
247 TEST_PY_BD: "sandbox_spl"
248 TEST_PY_TEST_SPEC: "test_ofplatdata or test_handoff or test_spl"
250 TEST_PY_BD: "sandbox_vpl"
251 TEST_PY_TEST_SPEC: "test_vpl_help or test_spl"
253 TEST_PY_BD: "sandbox_noinst"
254 TEST_PY_TEST_SPEC: "test_ofplatdata or test_handoff or test_spl"
256 TEST_PY_BD: "sandbox_flattree"
258 TEST_PY_BD: "coreboot"
259 TEST_PY_ID: "--id qemu"
260 TEST_PY_TEST_SPEC: "not sleep"
262 TEST_PY_BD: "evb-ast2500"
263 TEST_PY_ID: "--id qemu"
265 TEST_PY_BD: "vexpress_ca9x4"
266 TEST_PY_ID: "--id qemu"
267 integratorcp_cm926ejs:
268 TEST_PY_BD: "integratorcp_cm926ejs"
269 TEST_PY_ID: "--id qemu"
270 TEST_PY_TEST_SPEC: "not sleep"
272 TEST_PY_BD: "qemu_arm"
273 TEST_PY_TEST_SPEC: "not sleep"
275 TEST_PY_BD: "qemu_arm64"
276 TEST_PY_TEST_SPEC: "not sleep"
279 TEST_PY_ID: "--id qemu"
280 TEST_PY_TEST_SPEC: "not sleep and not efi"
282 TEST_PY_BD: "maltael"
283 TEST_PY_ID: "--id qemu"
284 TEST_PY_TEST_SPEC: "not sleep and not efi"
286 TEST_PY_BD: "malta64"
287 TEST_PY_ID: "--id qemu"
288 TEST_PY_TEST_SPEC: "not sleep and not efi"
290 TEST_PY_BD: "malta64el"
291 TEST_PY_ID: "--id qemu"
292 TEST_PY_TEST_SPEC: "not sleep and not efi"
294 TEST_PY_BD: "qemu-ppce500"
295 TEST_PY_TEST_SPEC: "not sleep"
297 TEST_PY_BD: "qemu-riscv32"
298 TEST_PY_TEST_SPEC: "not sleep"
300 TEST_PY_BD: "qemu-riscv64"
301 TEST_PY_TEST_SPEC: "not sleep"
303 TEST_PY_BD: "qemu-riscv32_spl"
304 TEST_PY_TEST_SPEC: "not sleep"
306 TEST_PY_BD: "qemu-riscv64_spl"
307 TEST_PY_TEST_SPEC: "not sleep"
309 TEST_PY_BD: "qemu-x86"
310 TEST_PY_TEST_SPEC: "not sleep"
312 TEST_PY_BD: "qemu-x86_64"
313 TEST_PY_TEST_SPEC: "not sleep"
315 TEST_PY_BD: "r2dplus"
316 TEST_PY_ID: "--id i82557c_qemu"
318 TEST_PY_BD: "r2dplus"
319 TEST_PY_ID: "--id pcnet_qemu"
321 TEST_PY_BD: "r2dplus"
322 TEST_PY_ID: "--id rtl8139_qemu"
324 TEST_PY_BD: "r2dplus"
325 TEST_PY_ID: "--id tulip_qemu"
326 sifive_unleashed_sdcard:
327 TEST_PY_BD: "sifive_unleashed"
328 TEST_PY_ID: "--id sdcard_qemu"
329 sifive_unleashed_spi-nor:
330 TEST_PY_BD: "sifive_unleashed"
331 TEST_PY_ID: "--id spi-nor_qemu"
333 TEST_PY_BD: "xilinx_zynq_virt"
334 TEST_PY_ID: "--id qemu"
335 TEST_PY_TEST_SPEC: "not sleep"
337 TEST_PY_BD: "xilinx_versal_virt"
338 TEST_PY_ID: "--id qemu"
339 TEST_PY_TEST_SPEC: "not sleep"
342 TEST_PY_ID: "--id qemu"
343 TEST_PY_TEST_SPEC: "not sleep"
348 # make environment variables available as tests are running inside a container
349 export WORK_DIR="${WORK_DIR}"
350 export TEST_PY_BD="${TEST_PY_BD}"
351 export TEST_PY_ID="${TEST_PY_ID}"
352 export TEST_PY_TEST_SPEC="${TEST_PY_TEST_SPEC}"
353 export OVERRIDE="${OVERRIDE}"
355 cat << "EOF" >> test.sh
356 # the below corresponds to .gitlab-ci.yml "before_script"
358 git clone --depth=1 https://source.denx.de/u-boot/u-boot-test-hooks /tmp/uboot-test-hooks
359 ln -s travis-ci /tmp/uboot-test-hooks/bin/`hostname`
360 ln -s travis-ci /tmp/uboot-test-hooks/py/`hostname`
361 grub-mkimage --prefix=\"\" -o ~/grub_x86.efi -O i386-efi normal echo lsefimmap lsefi lsefisystab efinet tftp minicmd
362 grub-mkimage --prefix=\"\" -o ~/grub_x64.efi -O x86_64-efi normal echo lsefimmap lsefi lsefisystab efinet tftp minicmd
363 if [[ "${TEST_PY_BD}" == "qemu-riscv32_spl" ]]; then
364 wget -O - https://github.com/riscv/opensbi/releases/download/v0.9/opensbi-0.9-rv-bin.tar.xz | tar -C /tmp -xJ;
365 export OPENSBI=/tmp/opensbi-0.9-rv-bin/share/opensbi/ilp32/generic/firmware/fw_dynamic.bin;
367 if [[ "${TEST_PY_BD}" == "qemu-riscv64_spl" ]] || [[ "${TEST_PY_BD}" == "sifive_unleashed" ]]; then
368 wget -O - https://github.com/riscv/opensbi/releases/download/v0.9/opensbi-0.9-rv-bin.tar.xz | tar -C /tmp -xJ;
369 export OPENSBI=/tmp/opensbi-0.9-rv-bin/share/opensbi/lp64/generic/firmware/fw_dynamic.bin;
371 # the below corresponds to .gitlab-ci.yml "script"
373 export UBOOT_TRAVIS_BUILD_DIR=/tmp/${TEST_PY_BD};
374 tools/buildman/buildman -o ${UBOOT_TRAVIS_BUILD_DIR} -w -E -W -e --board ${TEST_PY_BD} ${OVERRIDE}
375 cp ~/grub_x86.efi ${UBOOT_TRAVIS_BUILD_DIR}/
376 cp ~/grub_x64.efi ${UBOOT_TRAVIS_BUILD_DIR}/
377 cp /opt/grub/grubriscv64.efi ${UBOOT_TRAVIS_BUILD_DIR}/grub_riscv64.efi
378 cp /opt/grub/grubaa64.efi ${UBOOT_TRAVIS_BUILD_DIR}/grub_arm64.efi
379 cp /opt/grub/grubarm.efi ${UBOOT_TRAVIS_BUILD_DIR}/grub_arm.efi
380 # create sdcard / spi-nor images for sifive unleashed using genimage
381 if [[ "${TEST_PY_BD}" == "sifive_unleashed" ]]; then
383 cp ${UBOOT_TRAVIS_BUILD_DIR}/spl/u-boot-spl.bin .;
384 cp ${UBOOT_TRAVIS_BUILD_DIR}/u-boot.itb .;
386 genimage --inputpath . --config board/sifive/unleashed/genimage_sdcard.cfg;
387 cp images/sdcard.img ${UBOOT_TRAVIS_BUILD_DIR}/;
389 genimage --inputpath . --config board/sifive/unleashed/genimage_spi-nor.cfg;
390 cp images/spi-nor.img ${UBOOT_TRAVIS_BUILD_DIR}/;
392 if [[ "${TEST_PY_BD}" == "coreboot" ]]; then
393 wget -O - "https://drive.google.com/uc?id=1x6nrtWIyIRPLS2cQBwYTnT2TbOI8UjmM&export=download" |xz -dc >${UBOOT_TRAVIS_BUILD_DIR}/coreboot.rom;
394 wget -O - "https://drive.google.com/uc?id=149Cz-5SZXHNKpi9xg6R_5XITWohu348y&export=download" >cbfstool;
396 ./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;
398 virtualenv -p /usr/bin/python3 /tmp/venv
399 . /tmp/venv/bin/activate
400 pip install -r test/py/requirements.txt
401 export PATH=/opt/qemu/bin:/tmp/uboot-test-hooks/bin:${PATH};
402 export PYTHONPATH=/tmp/uboot-test-hooks/py/travis-ci;
403 # "${var:+"-k $var"}" expands to "" if $var is empty, "-k $var" if not
404 ./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";
405 # the below corresponds to .gitlab-ci.yml "after_script"
406 rm -rf /tmp/uboot-test-hooks /tmp/venv
409 # make current directory writeable to uboot user inside the container
410 # as sandbox testing need create files like spi flash images, etc.
411 # (TODO: clean up this in the future)
413 # Filesystem tests need extra docker args to run
415 if [[ "${TEST_PY_BD}" == "sandbox" ]]; then
416 # mount -o loop needs the loop devices
417 if modprobe loop; then
418 for d in $(find /dev -maxdepth 1 -name 'loop*'); do
419 set -- "$@" --device $d:$d
422 # Needed for mount syscall (for guestmount as well)
423 set -- "$@" --cap-add SYS_ADMIN
424 # Default apparmor profile denies mounts
425 set -- "$@" --security-opt apparmor=unconfined
427 # Some tests using libguestfs-tools need the fuse device to run
428 docker run "$@" --device /dev/fuse:/dev/fuse -v $PWD:$(work_dir) $(ci_runner_image) /bin/bash $(work_dir)/test.sh
432 - job: build_the_world
433 displayName: 'Build the World'
435 vmImage: $(ubuntu_vm)
437 # Use almost the same target division in .travis.yml, only merged
438 # 3 small build jobs (arc/microblaze/xtensa) into one.
440 arc_microblaze_xtensa:
441 BUILDMAN: "arc microblaze xtensa"
442 arm11_arm7_arm920t_arm946es:
443 BUILDMAN: "arm11 arm7 arm920t arm946es"
445 BUILDMAN: "arm926ejs -x freescale,siemens,at91,kirkwood,omap"
447 BUILDMAN: "at91 -x armv7"
449 BUILDMAN: "at91 -x arm926ejs"
450 boundary_engicam_toradex:
451 BUILDMAN: "boundary engicam toradex"
453 BUILDMAN: "bcm -x mips"
455 BUILDMAN: "freescale -x powerpc,m68k,aarch64,ls101,ls102,ls104,ls108,ls20,lx216"
457 BUILDMAN: "freescale&ls101"
459 BUILDMAN: "freescale&ls102"
461 BUILDMAN: "freescale&ls104"
463 BUILDMAN: "freescale&ls108"
465 BUILDMAN: "freescale&ls20"
467 BUILDMAN: "freescale&lx216"
469 BUILDMAN: "mx6 -x boundary,engicam,freescale,technexion,toradex"
471 BUILDMAN: "mx -x mx6,freescale,technexion,toradex"
477 BUILDMAN: "samsung socfpga"
487 BUILDMAN: "sun8i&armv7"
489 BUILDMAN: "sun8i&aarch64"
495 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"
497 BUILDMAN: "sandbox x86"
499 BUILDMAN: "technexion"
509 BUILDMAN: "powerpc -x freescale"
511 BUILDMAN: "mpc85xx&freescale -x t208xrdb -x t102* -x p1_p2_rdb_pc -x p1010rdb -x corenet_ds -x bsc91*"
513 BUILDMAN: "t208xrdb corenet_ds"
515 BUILDMAN: "mpc83xx&freescale"
519 BUILDMAN: "p1_p2_rdb_pc"
521 BUILDMAN: "p1010rdb bsc91"
525 BUILDMAN: "tegra -x toradex"
527 BUILDMAN: "am33xx -x siemens"
533 BUILDMAN: "aarch64 -x bcm,imx8,k3,tegra,ls1,ls2,lx216,mvebu,uniphier,renesas,sunxi,samsung,socfpga,rk,versal,zynq"
539 BUILDMAN: "zynq&armv7"
541 BUILDMAN: "versal|zynqmp&aarch64"
546 cat << EOF > build.sh
549 # make environment variables available as tests are running inside a container
550 export BUILDMAN="${BUILDMAN}"
552 cat << "EOF" >> build.sh
553 if [[ "${BUILDMAN}" != "" ]]; then
555 tools/buildman/buildman -o /tmp -P -E -W ${BUILDMAN} ${OVERRIDE} || ret=$?;
556 if [[ $ret -ne 0 ]]; then
557 tools/buildman/buildman -o /tmp -seP ${BUILDMAN};
563 docker run -v $PWD:$(work_dir) $(ci_runner_image) /bin/bash $(work_dir)/build.sh