2 windows_vm: windows-2019
3 ubuntu_vm: ubuntu-18.04
5 ci_runner_image: trini/u-boot-gitlab-ci-runner:focal-20220113-03Feb2022
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 \
50 HOSTCFLAGS="-I/usr/local/opt/openssl@1.1/include" \
51 HOSTLDFLAGS="-L/usr/local/opt/openssl@1.1/lib" \
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)
66 cat `find . -name "Kconfig*"` | \
67 sed -n -e 's/^\s*config *\([A-Za-z0-9_]*\).*$/CONFIG_\1/p' \
68 -e 's/^\s*menuconfig *\([A-Za-z0-9_]*\).*$/CONFIG_\1/p' \
70 for CFG in `find include/configs -name "*.h"`; do
71 grep '#define[[:blank:]]CONFIG_' $CFG | \
72 sed -n 's/#define.\(CONFIG_[A-Za-z0-9_]*\).*/\1/p' | \
73 sort -u > ${KUSEDLST} || true
74 NUM=`comm -12 --total --output-delimiter=, ${KSYMLST} ${KUSEDLST} | \
76 if [[ $NUM -ne 0 ]]; then
77 echo "Unmigrated symbols found in $CFG"
83 displayName: 'Static code analysis with cppcheck'
87 image: $(ci_runner_image)
88 options: $(container_option)
90 - script: cppcheck -j$(nproc) --force --quiet --inline-suppr .
93 displayName: 'Build HTML documentation'
97 image: $(ci_runner_image)
98 options: $(container_option)
101 virtualenv -p /usr/bin/python3 /tmp/venvhtml
102 . /tmp/venvhtml/bin/activate
103 pip install -r doc/sphinx/requirements.txt
107 displayName: 'Search for TODO within source tree'
109 vmImage: $(ubuntu_vm)
111 image: $(ci_runner_image)
112 options: $(container_option)
114 - script: grep -r TODO .
115 - script: grep -r FIXME .
116 - script: grep -r HACK . | grep -v HACKKIT
119 displayName: 'Some statistics about the code base'
121 vmImage: $(ubuntu_vm)
123 image: $(ci_runner_image)
124 options: $(container_option)
126 - script: sloccount .
129 displayName: 'Ensure all configs have MAINTAINERS entries'
131 vmImage: $(ubuntu_vm)
133 image: $(ci_runner_image)
134 options: $(container_option)
137 if [ `./tools/genboardscfg.py -f 2>&1 | wc -l` -ne 0 ]; then exit 1; fi
140 displayName: 'Ensure host tools build'
142 vmImage: $(ubuntu_vm)
144 image: $(ci_runner_image)
145 options: $(container_option)
148 make tools-only_config tools-only -j$(nproc)
151 displayName: 'Ensure env tools build'
153 vmImage: $(ubuntu_vm)
155 image: $(ci_runner_image)
156 options: $(container_option)
159 make tools-only_config envtools -j$(nproc)
162 displayName: 'Run binman, buildman, dtoc, Kconfig and patman testsuites'
164 vmImage: $(ubuntu_vm)
167 cat << EOF > build.sh
171 cat << "EOF" >> build.sh
172 git config --global user.name "Azure Pipelines"
173 git config --global user.email bmeng.cn@gmail.com
175 virtualenv -p /usr/bin/python3 /tmp/venv
176 . /tmp/venv/bin/activate
177 pip install -r test/py/requirements.txt
178 export UBOOT_TRAVIS_BUILD_DIR=/tmp/sandbox_spl
179 export PYTHONPATH=${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc/pylibfdt
180 export PATH=${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc:${PATH}
181 ./tools/buildman/buildman -T0 -o ${UBOOT_TRAVIS_BUILD_DIR} -w --board sandbox_spl
182 ./tools/binman/binman --toolpath ${UBOOT_TRAVIS_BUILD_DIR}/tools test
183 ./tools/buildman/buildman -t
185 ./tools/patman/patman test
186 make O=${UBOOT_TRAVIS_BUILD_DIR} testconfig
189 # We cannot use "container" like other jobs above, as buildman
190 # seems to hang forever with pre-configured "container" environment
191 docker run -v $PWD:$(work_dir) $(ci_runner_image) /bin/bash $(work_dir)/build.sh
193 - job: nokia_rx51_test
194 displayName: 'Run tests for Nokia RX-51 (aka N900)'
196 vmImage: $(ubuntu_vm)
198 image: $(ci_runner_image)
199 options: $(container_option)
202 export PATH=/opt/gcc-11.1.0-nolibc/arm-linux-gnueabi/bin:$PATH
203 test/nokia_rx51_test.sh
206 displayName: Check for any pylint regressions
208 vmImage: $(ubuntu_vm)
210 image: $(ci_runner_image)
211 options: $(container_option)
216 pip install -r test/py/requirements.txt
217 pip install asteval pylint pyopenssl
218 export PATH=${PATH}:~/.local/bin
219 echo "[MASTER]" >> .pylintrc
220 echo "load-plugins=pylint.extensions.docparams" >> .pylintrc
221 export UBOOT_TRAVIS_BUILD_DIR=/tmp/sandbox_spl
222 ./tools/buildman/buildman -T0 -o ${UBOOT_TRAVIS_BUILD_DIR} -w --board sandbox_spl
224 export PYTHONPATH=${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc/pylibfdt
230 displayName: 'test.py'
232 vmImage: $(ubuntu_vm)
236 TEST_PY_BD: "sandbox"
238 TEST_PY_BD: "sandbox"
239 OVERRIDE: "-O clang-13"
241 TEST_PY_BD: "sandbox_spl"
242 TEST_PY_TEST_SPEC: "test_ofplatdata or test_handoff or test_spl"
244 TEST_PY_BD: "sandbox_noinst"
245 TEST_PY_TEST_SPEC: "test_ofplatdata or test_handoff or test_spl"
247 TEST_PY_BD: "sandbox_flattree"
249 TEST_PY_BD: "coreboot"
250 TEST_PY_ID: "--id qemu"
251 TEST_PY_TEST_SPEC: "not sleep"
253 TEST_PY_BD: "evb-ast2500"
254 TEST_PY_ID: "--id qemu"
256 TEST_PY_BD: "vexpress_ca9x4"
257 TEST_PY_ID: "--id qemu"
258 integratorcp_cm926ejs:
259 TEST_PY_BD: "integratorcp_cm926ejs"
260 TEST_PY_ID: "--id qemu"
261 TEST_PY_TEST_SPEC: "not sleep"
263 TEST_PY_BD: "qemu_arm"
264 TEST_PY_TEST_SPEC: "not sleep"
266 TEST_PY_BD: "qemu_arm64"
267 TEST_PY_TEST_SPEC: "not sleep"
270 TEST_PY_ID: "--id qemu"
271 TEST_PY_TEST_SPEC: "not sleep and not efi"
273 TEST_PY_BD: "maltael"
274 TEST_PY_ID: "--id qemu"
275 TEST_PY_TEST_SPEC: "not sleep and not efi"
277 TEST_PY_BD: "malta64"
278 TEST_PY_ID: "--id qemu"
279 TEST_PY_TEST_SPEC: "not sleep and not efi"
281 TEST_PY_BD: "malta64el"
282 TEST_PY_ID: "--id qemu"
283 TEST_PY_TEST_SPEC: "not sleep and not efi"
285 TEST_PY_BD: "qemu-ppce500"
286 TEST_PY_TEST_SPEC: "not sleep"
288 TEST_PY_BD: "qemu-riscv32"
289 TEST_PY_TEST_SPEC: "not sleep"
291 TEST_PY_BD: "qemu-riscv64"
292 TEST_PY_TEST_SPEC: "not sleep"
294 TEST_PY_BD: "qemu-riscv32_spl"
295 TEST_PY_TEST_SPEC: "not sleep"
297 TEST_PY_BD: "qemu-riscv64_spl"
298 TEST_PY_TEST_SPEC: "not sleep"
300 TEST_PY_BD: "qemu-x86"
301 TEST_PY_TEST_SPEC: "not sleep"
303 TEST_PY_BD: "qemu-x86_64"
304 TEST_PY_TEST_SPEC: "not sleep"
306 TEST_PY_BD: "r2dplus"
307 TEST_PY_ID: "--id i82557c_qemu"
309 TEST_PY_BD: "r2dplus"
310 TEST_PY_ID: "--id pcnet_qemu"
312 TEST_PY_BD: "r2dplus"
313 TEST_PY_ID: "--id rtl8139_qemu"
315 TEST_PY_BD: "r2dplus"
316 TEST_PY_ID: "--id tulip_qemu"
317 sifive_unleashed_sdcard:
318 TEST_PY_BD: "sifive_unleashed"
319 TEST_PY_ID: "--id sdcard_qemu"
320 sifive_unleashed_spi-nor:
321 TEST_PY_BD: "sifive_unleashed"
322 TEST_PY_ID: "--id spi-nor_qemu"
324 TEST_PY_BD: "xilinx_zynq_virt"
325 TEST_PY_ID: "--id qemu"
326 TEST_PY_TEST_SPEC: "not sleep"
328 TEST_PY_BD: "xilinx_versal_virt"
329 TEST_PY_ID: "--id qemu"
330 TEST_PY_TEST_SPEC: "not sleep"
333 TEST_PY_ID: "--id qemu"
334 TEST_PY_TEST_SPEC: "not sleep"
339 # make environment variables available as tests are running inside a container
340 export WORK_DIR="${WORK_DIR}"
341 export TEST_PY_BD="${TEST_PY_BD}"
342 export TEST_PY_ID="${TEST_PY_ID}"
343 export TEST_PY_TEST_SPEC="${TEST_PY_TEST_SPEC}"
344 export OVERRIDE="${OVERRIDE}"
346 cat << "EOF" >> test.sh
347 # the below corresponds to .gitlab-ci.yml "before_script"
349 git clone --depth=1 https://source.denx.de/u-boot/u-boot-test-hooks /tmp/uboot-test-hooks
350 ln -s travis-ci /tmp/uboot-test-hooks/bin/`hostname`
351 ln -s travis-ci /tmp/uboot-test-hooks/py/`hostname`
352 grub-mkimage --prefix=\"\" -o ~/grub_x86.efi -O i386-efi normal echo lsefimmap lsefi lsefisystab efinet tftp minicmd
353 grub-mkimage --prefix=\"\" -o ~/grub_x64.efi -O x86_64-efi normal echo lsefimmap lsefi lsefisystab efinet tftp minicmd
354 if [[ "${TEST_PY_BD}" == "qemu-riscv32_spl" ]]; then
355 wget -O - https://github.com/riscv/opensbi/releases/download/v0.9/opensbi-0.9-rv-bin.tar.xz | tar -C /tmp -xJ;
356 export OPENSBI=/tmp/opensbi-0.9-rv-bin/share/opensbi/ilp32/generic/firmware/fw_dynamic.bin;
358 if [[ "${TEST_PY_BD}" == "qemu-riscv64_spl" ]] || [[ "${TEST_PY_BD}" == "sifive_unleashed" ]]; then
359 wget -O - https://github.com/riscv/opensbi/releases/download/v0.9/opensbi-0.9-rv-bin.tar.xz | tar -C /tmp -xJ;
360 export OPENSBI=/tmp/opensbi-0.9-rv-bin/share/opensbi/lp64/generic/firmware/fw_dynamic.bin;
362 # the below corresponds to .gitlab-ci.yml "script"
364 export UBOOT_TRAVIS_BUILD_DIR=/tmp/${TEST_PY_BD};
365 tools/buildman/buildman -o ${UBOOT_TRAVIS_BUILD_DIR} -w -E -W -e --board ${TEST_PY_BD} ${OVERRIDE}
366 cp ~/grub_x86.efi ${UBOOT_TRAVIS_BUILD_DIR}/
367 cp ~/grub_x64.efi ${UBOOT_TRAVIS_BUILD_DIR}/
368 cp /opt/grub/grubriscv64.efi ${UBOOT_TRAVIS_BUILD_DIR}/grub_riscv64.efi
369 cp /opt/grub/grubaa64.efi ${UBOOT_TRAVIS_BUILD_DIR}/grub_arm64.efi
370 cp /opt/grub/grubarm.efi ${UBOOT_TRAVIS_BUILD_DIR}/grub_arm.efi
371 # create sdcard / spi-nor images for sifive unleashed using genimage
372 if [[ "${TEST_PY_BD}" == "sifive_unleashed" ]]; then
374 cp ${UBOOT_TRAVIS_BUILD_DIR}/spl/u-boot-spl.bin .;
375 cp ${UBOOT_TRAVIS_BUILD_DIR}/u-boot.itb .;
377 genimage --inputpath . --config board/sifive/unleashed/genimage_sdcard.cfg;
378 cp images/sdcard.img ${UBOOT_TRAVIS_BUILD_DIR}/;
380 genimage --inputpath . --config board/sifive/unleashed/genimage_spi-nor.cfg;
381 cp images/spi-nor.img ${UBOOT_TRAVIS_BUILD_DIR}/;
383 if [[ "${TEST_PY_BD}" == "coreboot" ]]; then
384 wget -O - "https://drive.google.com/uc?id=1x6nrtWIyIRPLS2cQBwYTnT2TbOI8UjmM&export=download" |xz -dc >${UBOOT_TRAVIS_BUILD_DIR}/coreboot.rom;
385 wget -O - "https://drive.google.com/uc?id=149Cz-5SZXHNKpi9xg6R_5XITWohu348y&export=download" >cbfstool;
387 ./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;
389 virtualenv -p /usr/bin/python3 /tmp/venv
390 . /tmp/venv/bin/activate
391 pip install -r test/py/requirements.txt
392 export PATH=/opt/qemu/bin:/tmp/uboot-test-hooks/bin:${PATH};
393 export PYTHONPATH=/tmp/uboot-test-hooks/py/travis-ci;
394 # "${var:+"-k $var"}" expands to "" if $var is empty, "-k $var" if not
395 ./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";
396 # the below corresponds to .gitlab-ci.yml "after_script"
397 rm -rf /tmp/uboot-test-hooks /tmp/venv
400 # make current directory writeable to uboot user inside the container
401 # as sandbox testing need create files like spi flash images, etc.
402 # (TODO: clean up this in the future)
404 # Filesystem tests need extra docker args to run
406 if [[ "${TEST_PY_BD}" == "sandbox" ]]; then
407 # mount -o loop needs the loop devices
408 if modprobe loop; then
409 for d in $(find /dev -maxdepth 1 -name 'loop*'); do
410 set -- "$@" --device $d:$d
413 # Needed for mount syscall (for guestmount as well)
414 set -- "$@" --cap-add SYS_ADMIN
415 # Default apparmor profile denies mounts
416 set -- "$@" --security-opt apparmor=unconfined
418 # Some tests using libguestfs-tools need the fuse device to run
419 docker run "$@" --device /dev/fuse:/dev/fuse -v $PWD:$(work_dir) $(ci_runner_image) /bin/bash $(work_dir)/test.sh
423 - job: build_the_world
424 displayName: 'Build the World'
426 vmImage: $(ubuntu_vm)
428 # Use almost the same target division in .travis.yml, only merged
429 # 4 small build jobs (arc/microblaze/nds32/xtensa) into one.
431 arc_microblaze_nds32_xtensa:
432 BUILDMAN: "arc microblaze nds32 xtensa"
433 arm11_arm7_arm920t_arm946es:
434 BUILDMAN: "arm11 arm7 arm920t arm946es"
436 BUILDMAN: "arm926ejs -x freescale,siemens,at91,kirkwood,omap"
438 BUILDMAN: "at91 -x armv7"
440 BUILDMAN: "at91 -x arm926ejs"
441 boundary_engicam_toradex:
442 BUILDMAN: "boundary engicam toradex"
444 BUILDMAN: "bcm -x mips"
446 BUILDMAN: "freescale -x powerpc,m68k,aarch64,ls101,ls102,ls104,ls108,ls20,lx216"
448 BUILDMAN: "freescale&ls101"
450 BUILDMAN: "freescale&ls102"
452 BUILDMAN: "freescale&ls104"
454 BUILDMAN: "freescale&ls108"
456 BUILDMAN: "freescale&ls20"
458 BUILDMAN: "freescale&lx216"
460 BUILDMAN: "mx6 -x boundary,engicam,freescale,technexion,toradex"
462 BUILDMAN: "mx -x mx6,freescale,technexion,toradex"
468 BUILDMAN: "samsung socfpga"
478 BUILDMAN: "sun8i&armv7"
480 BUILDMAN: "sun8i&aarch64"
486 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"
488 BUILDMAN: "sandbox x86"
490 BUILDMAN: "technexion"
500 BUILDMAN: "powerpc -x freescale"
502 BUILDMAN: "mpc85xx&freescale -x t208xrdb -x t102* -x p1_p2_rdb_pc -x p1010rdb -x corenet_ds -x bsc91*"
504 BUILDMAN: "t208xrdb corenet_ds"
506 BUILDMAN: "mpc83xx&freescale"
510 BUILDMAN: "p1_p2_rdb_pc"
512 BUILDMAN: "p1010rdb bsc91"
516 BUILDMAN: "tegra -x toradex"
518 BUILDMAN: "am33xx -x siemens"
524 BUILDMAN: "aarch64 -x bcm,imx8,k3,tegra,ls1,ls2,lx216,mvebu,uniphier,renesas,sunxi,samsung,socfpga,rk,versal,zynq"
530 BUILDMAN: "zynq&armv7"
532 BUILDMAN: "versal|zynqmp&aarch64"
537 cat << EOF > build.sh
540 # make environment variables available as tests are running inside a container
541 export BUILDMAN="${BUILDMAN}"
543 cat << "EOF" >> build.sh
544 if [[ "${BUILDMAN}" != "" ]]; then
546 tools/buildman/buildman -o /tmp -P -E -W ${BUILDMAN} ${OVERRIDE} || ret=$?;
547 if [[ $ret -ne 0 ]]; then
548 tools/buildman/buildman -o /tmp -seP ${BUILDMAN};
554 docker run -v $PWD:$(work_dir) $(ci_runner_image) /bin/bash $(work_dir)/build.sh