2 windows_vm: windows-2019
3 ubuntu_vm: ubuntu-22.04
5 ci_runner_image: trini/u-boot-gitlab-ci-runner:jammy-20240111-17Jan2024
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 \
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/ :^dts/upstream/ &&
72 displayName: 'Build documentation'
76 image: $(ci_runner_image)
77 options: $(container_option)
80 virtualenv -p /usr/bin/python3 /tmp/venvhtml
81 . /tmp/venvhtml/bin/activate
82 pip install -r doc/sphinx/requirements.txt
83 make htmldocs KDOC_WERROR=1
87 displayName: 'Ensure all configs have MAINTAINERS entries'
91 image: $(ci_runner_image)
92 options: $(container_option)
95 ./tools/buildman/buildman --maintainer-check
98 displayName: 'Ensure host tools and env tools build'
100 vmImage: $(ubuntu_vm)
102 image: $(ci_runner_image)
103 options: $(container_option)
106 make tools-only_config tools-only -j$(nproc)
108 make tools-only_config envtools -j$(nproc)
111 displayName: 'Run binman, buildman, dtoc, Kconfig and patman testsuites'
113 vmImage: $(ubuntu_vm)
116 cat << "EOF" > build.sh
118 git config --global user.name "Azure Pipelines"
120 git config --global --add safe.directory $(work_dir)
122 virtualenv -p /usr/bin/python3 /tmp/venv
123 . /tmp/venv/bin/activate
124 pip install -r test/py/requirements.txt
125 pip install -r tools/buildman/requirements.txt
126 export UBOOT_TRAVIS_BUILD_DIR=/tmp/tools-only
127 export PYTHONPATH=${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc/pylibfdt
128 export PATH=${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc:${PATH}
129 ./tools/buildman/buildman -T0 -o ${UBOOT_TRAVIS_BUILD_DIR} -w --board tools-only
131 ./tools/binman/binman --toolpath ${UBOOT_TRAVIS_BUILD_DIR}/tools test
132 ./tools/buildman/buildman -t
134 ./tools/patman/patman test
135 make O=${UBOOT_TRAVIS_BUILD_DIR} testconfig
138 # We cannot use "container" like other jobs above, as buildman
139 # seems to hang forever with pre-configured "container" environment
140 docker run -v $PWD:$(work_dir) $(ci_runner_image) /bin/bash $(work_dir)/build.sh
143 displayName: Check for any pylint regressions
145 vmImage: $(ubuntu_vm)
147 image: $(ci_runner_image)
148 options: $(container_option)
151 git config --global --add safe.directory $(work_dir)
153 pip install -r test/py/requirements.txt
154 pip install -r tools/buildman/requirements.txt
155 pip install asteval pylint==2.12.2 pyopenssl
156 export PATH=${PATH}:~/.local/bin
157 echo "[MASTER]" >> .pylintrc
158 echo "load-plugins=pylint.extensions.docparams" >> .pylintrc
159 export UBOOT_TRAVIS_BUILD_DIR=/tmp/tools-only
160 ./tools/buildman/buildman -T0 -o ${UBOOT_TRAVIS_BUILD_DIR} -w --board tools-only
163 export PYTHONPATH=${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc/pylibfdt
166 - job: check_for_pre_schema_tags
167 displayName: 'Check for pre-schema driver model tags'
169 vmImage: $(ubuntu_vm)
171 image: $(ci_runner_image)
172 options: $(container_option)
174 # If grep succeeds and finds a match the test fails as we should
176 - script: git grep u-boot,dm- -- '*.dts*' && exit 1 || exit 0
178 - job: check_packing_of_python_tools
179 displayName: 'Check we can package the Python tools'
181 vmImage: $(ubuntu_vm)
183 image: $(ci_runner_image)
184 options: $(container_option)
188 - job: create_test_py_wrapper_script
189 displayName: 'Create and stage a wrapper for test.py runs'
191 vmImage: $(ubuntu_vm)
198 # the below corresponds to .gitlab-ci.yml "before_script"
200 git config --global --add safe.directory \${WORK_DIR}
201 git clone --depth=1 https://source.denx.de/u-boot/u-boot-test-hooks /tmp/uboot-test-hooks
202 ln -s travis-ci /tmp/uboot-test-hooks/bin/\`hostname\`
203 ln -s travis-ci /tmp/uboot-test-hooks/py/\`hostname\`
204 grub-mkimage --prefix=\"\" -o ~/grub_x86.efi -O i386-efi normal echo lsefimmap lsefi lsefisystab efinet tftp minicmd
205 grub-mkimage --prefix=\"\" -o ~/grub_x64.efi -O x86_64-efi normal echo lsefimmap lsefi lsefisystab efinet tftp minicmd
206 if [[ "\${TEST_PY_BD}" == "qemu-riscv32_spl" ]]; then
207 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;
208 export OPENSBI=/tmp/opensbi-1.3.1-rv-bin/share/opensbi/ilp32/generic/firmware/fw_dynamic.bin;
210 if [[ "\${TEST_PY_BD}" == "qemu-riscv64_spl" ]] || [[ "\${TEST_PY_BD}" == "sifive_unleashed" ]]; then
211 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;
212 export OPENSBI=/tmp/opensbi-1.3.1-rv-bin/share/opensbi/lp64/generic/firmware/fw_dynamic.bin;
214 # the below corresponds to .gitlab-ci.yml "script"
216 export UBOOT_TRAVIS_BUILD_DIR=/tmp/\${TEST_PY_BD}
217 if [ -n "\${BUILD_ENV}" ]; then
218 export \${BUILD_ENV};
220 pip install -r tools/buildman/requirements.txt
221 tools/buildman/buildman -o \${UBOOT_TRAVIS_BUILD_DIR} -w -E -W -e --board \${TEST_PY_BD} \${OVERRIDE}
222 cp ~/grub_x86.efi \${UBOOT_TRAVIS_BUILD_DIR}/
223 cp ~/grub_x64.efi \${UBOOT_TRAVIS_BUILD_DIR}/
224 cp /opt/grub/grubriscv64.efi \${UBOOT_TRAVIS_BUILD_DIR}/grub_riscv64.efi
225 cp /opt/grub/grubaa64.efi \${UBOOT_TRAVIS_BUILD_DIR}/grub_arm64.efi
226 cp /opt/grub/grubarm.efi \${UBOOT_TRAVIS_BUILD_DIR}/grub_arm.efi
227 # create sdcard / spi-nor images for sifive unleashed using genimage
228 if [[ "\${TEST_PY_BD}" == "sifive_unleashed" ]]; then
230 cp \${UBOOT_TRAVIS_BUILD_DIR}/spl/u-boot-spl.bin .;
231 cp \${UBOOT_TRAVIS_BUILD_DIR}/u-boot.itb .;
233 genimage --inputpath . --config board/sifive/unleashed/genimage_sdcard.cfg;
234 cp images/sdcard.img \${UBOOT_TRAVIS_BUILD_DIR}/;
236 genimage --inputpath . --config board/sifive/unleashed/genimage_spi-nor.cfg;
237 cp images/spi-nor.img \${UBOOT_TRAVIS_BUILD_DIR}/;
239 if [[ "\${TEST_PY_BD}" == "coreboot" ]]; then
240 wget -O - "https://drive.google.com/uc?id=1uJ2VkUQ8czWFZmhJQ90Tp8V_zrJ6BrBH&export=download" |xz -dc >\${UBOOT_TRAVIS_BUILD_DIR}/coreboot.rom;
241 wget -O - "https://drive.google.com/uc?id=149Cz-5SZXHNKpi9xg6R_5XITWohu348y&export=download" >cbfstool;
243 ./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;
245 virtualenv -p /usr/bin/python3 /tmp/venv
246 . /tmp/venv/bin/activate
247 pip install -r test/py/requirements.txt
248 pip install pytest-azurepipelines
249 export PATH=/opt/qemu/bin:/tmp/uboot-test-hooks/bin:\${PATH}
250 export PYTHONPATH=/tmp/uboot-test-hooks/py/travis-ci
251 # "\${var:+"-k \$var"}" expands to "" if \$var is empty, "-k \$var" if not
252 ./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"
253 # the below corresponds to .gitlab-ci.yml "after_script"
254 rm -rf /tmp/uboot-test-hooks /tmp/venv
257 displayName: 'Copy test.sh for later usage'
260 targetFolder: '$(Build.ArtifactStagingDirectory)'
261 - publish: '$(Build.ArtifactStagingDirectory)/test.sh'
262 displayName: 'Publish test.sh'
265 - stage: test_py_sandbox
267 - job: test_py_sandbox
268 displayName: 'test.py for sandbox'
270 vmImage: $(ubuntu_vm)
274 TEST_PY_BD: "sandbox"
276 TEST_PY_BD: "sandbox"
278 TEST_PY_TEST_SPEC: "version"
280 TEST_PY_BD: "sandbox"
281 OVERRIDE: "-O clang-16"
283 TEST_PY_BD: "sandbox"
284 OVERRIDE: "-O clang-16 -a ASAN"
285 TEST_PY_TEST_SPEC: "version"
287 TEST_PY_BD: "sandbox64"
289 TEST_PY_BD: "sandbox64"
290 OVERRIDE: "-O clang-16"
292 TEST_PY_BD: "sandbox_spl"
293 TEST_PY_TEST_SPEC: "test_ofplatdata or test_handoff or test_spl"
295 TEST_PY_BD: "sandbox_vpl"
296 TEST_PY_TEST_SPEC: "vpl or test_spl"
298 TEST_PY_BD: "sandbox_noinst"
299 TEST_PY_TEST_SPEC: "test_ofplatdata or test_handoff or test_spl"
300 sandbox_noinst_load_fit_full:
301 TEST_PY_BD: "sandbox_noinst"
302 TEST_PY_TEST_SPEC: "test_ofplatdata or test_handoff or test_spl"
303 OVERRIDE: "-a CONFIG_SPL_LOAD_FIT_FULL=y"
305 TEST_PY_BD: "sandbox_flattree"
307 TEST_PY_BD: "sandbox"
308 BUILD_ENV: "FTRACE=1 NO_LTO=1"
309 TEST_PY_TEST_SPEC: "trace"
310 OVERRIDE: "-a CONFIG_TRACE=y -a CONFIG_TRACE_EARLY=y -a CONFIG_TRACE_EARLY_SIZE=0x01000000 -a CONFIG_TRACE_BUFFER_SIZE=0x02000000"
315 # make current directory writeable to uboot user inside the container
316 # as sandbox testing need create files like spi flash images, etc.
317 # (TODO: clean up this in the future)
319 chmod 755 $(Pipeline.Workspace)/testsh/test.sh
320 # Filesystem tests need extra docker args to run
322 # mount -o loop needs the loop devices
323 if modprobe loop; then
324 for d in $(find /dev -maxdepth 1 -name 'loop*'); do
325 set -- "$@" --device $d:$d
328 # Needed for mount syscall (for guestmount as well)
329 set -- "$@" --cap-add SYS_ADMIN
330 # Default apparmor profile denies mounts
331 set -- "$@" --security-opt apparmor=unconfined
332 # Some tests using libguestfs-tools need the fuse device to run
333 docker run "$@" --device /dev/fuse:/dev/fuse \
334 -v $PWD:$(work_dir) \
335 -v $(Pipeline.Workspace):$(Pipeline.Workspace) \
336 -e WORK_DIR="${WORK_DIR}" \
337 -e TEST_PY_BD="${TEST_PY_BD}" \
338 -e TEST_PY_ID="${TEST_PY_ID}" \
339 -e TEST_PY_TEST_SPEC="${TEST_PY_TEST_SPEC}" \
340 -e OVERRIDE="${OVERRIDE}" \
341 -e BUILD_ENV="${BUILD_ENV}" $(ci_runner_image) \
342 $(Pipeline.Workspace)/testsh/test.sh
344 - stage: test_py_qemu
347 displayName: 'test.py for QEMU platforms'
349 vmImage: $(ubuntu_vm)
353 TEST_PY_BD: "coreboot"
354 TEST_PY_ID: "--id qemu"
355 TEST_PY_TEST_SPEC: "not sleep"
357 TEST_PY_BD: "evb-ast2500"
358 TEST_PY_ID: "--id qemu"
360 TEST_PY_BD: "evb-ast2600"
361 TEST_PY_ID: "--id qemu"
363 TEST_PY_BD: "vexpress_ca9x4"
364 TEST_PY_ID: "--id qemu"
365 integratorcp_cm926ejs:
366 TEST_PY_BD: "integratorcp_cm926ejs"
367 TEST_PY_ID: "--id qemu"
368 TEST_PY_TEST_SPEC: "not sleep"
370 TEST_PY_BD: "qemu_arm"
371 TEST_PY_TEST_SPEC: "not sleep"
373 TEST_PY_BD: "qemu_arm64"
374 TEST_PY_TEST_SPEC: "not sleep"
376 TEST_PY_BD: "M5208EVBE"
377 TEST_PY_ID: "--id qemu"
378 TEST_PY_TEST_SPEC: "not sleep and not efi"
379 OVERRIDE: "-a CONFIG_M68K_QEMU=y -a ~CONFIG_MCFTMR"
382 TEST_PY_ID: "--id qemu"
383 TEST_PY_TEST_SPEC: "not sleep and not efi"
385 TEST_PY_BD: "maltael"
386 TEST_PY_ID: "--id qemu"
387 TEST_PY_TEST_SPEC: "not sleep and not efi"
389 TEST_PY_BD: "malta64"
390 TEST_PY_ID: "--id qemu"
391 TEST_PY_TEST_SPEC: "not sleep and not efi"
393 TEST_PY_BD: "malta64el"
394 TEST_PY_ID: "--id qemu"
395 TEST_PY_TEST_SPEC: "not sleep and not efi"
397 TEST_PY_BD: "qemu-ppce500"
398 TEST_PY_TEST_SPEC: "not sleep"
400 TEST_PY_BD: "qemu-riscv32"
401 TEST_PY_TEST_SPEC: "not sleep"
403 TEST_PY_BD: "qemu-riscv64"
404 TEST_PY_TEST_SPEC: "not sleep"
406 TEST_PY_BD: "qemu-riscv32_spl"
407 TEST_PY_TEST_SPEC: "not sleep"
409 TEST_PY_BD: "qemu-riscv64_spl"
410 TEST_PY_TEST_SPEC: "not sleep"
412 TEST_PY_BD: "qemu-x86"
413 TEST_PY_TEST_SPEC: "not sleep"
415 TEST_PY_BD: "qemu-x86_64"
416 TEST_PY_TEST_SPEC: "not sleep"
418 TEST_PY_BD: "r2dplus"
419 TEST_PY_ID: "--id i82557c_qemu"
421 TEST_PY_BD: "r2dplus"
422 TEST_PY_ID: "--id pcnet_qemu"
424 TEST_PY_BD: "r2dplus"
425 TEST_PY_ID: "--id rtl8139_qemu"
427 TEST_PY_BD: "r2dplus"
428 TEST_PY_ID: "--id tulip_qemu"
429 sifive_unleashed_sdcard:
430 TEST_PY_BD: "sifive_unleashed"
431 TEST_PY_ID: "--id sdcard_qemu"
432 sifive_unleashed_spi-nor:
433 TEST_PY_BD: "sifive_unleashed"
434 TEST_PY_ID: "--id spi-nor_qemu"
436 TEST_PY_BD: "xilinx_zynq_virt"
437 TEST_PY_ID: "--id qemu"
438 TEST_PY_TEST_SPEC: "not sleep"
440 TEST_PY_BD: "xilinx_versal_virt"
441 TEST_PY_ID: "--id qemu"
442 TEST_PY_TEST_SPEC: "not sleep"
445 TEST_PY_ID: "--id qemu"
446 TEST_PY_TEST_SPEC: "not sleep"
451 # make current directory writeable to uboot user inside the container
452 # as sandbox testing need create files like spi flash images, etc.
453 # (TODO: clean up this in the future)
455 chmod 755 $(Pipeline.Workspace)/testsh/test.sh
456 # Some tests using libguestfs-tools need the fuse device to run
457 docker run "$@" --device /dev/fuse:/dev/fuse \
458 -v $PWD:$(work_dir) \
459 -v $(Pipeline.Workspace):$(Pipeline.Workspace) \
460 -e WORK_DIR="${WORK_DIR}" \
461 -e TEST_PY_BD="${TEST_PY_BD}" \
462 -e TEST_PY_ID="${TEST_PY_ID}" \
463 -e TEST_PY_TEST_SPEC="${TEST_PY_TEST_SPEC}" \
464 -e OVERRIDE="${OVERRIDE}" \
465 -e BUILD_ENV="${BUILD_ENV}" $(ci_runner_image) \
466 $(Pipeline.Workspace)/testsh/test.sh
467 retryCountOnTaskFailure: 2 # QEMU may be too slow, etc.
471 - job: build_the_world
472 timeoutInMinutes: 0 # Use the maximum allowed
473 displayName: 'Build the World'
475 vmImage: $(ubuntu_vm)
477 # Use almost the same target division in .travis.yml, only merged
478 # 3 small build jobs (arc/microblaze/xtensa) into one.
480 am33xx_at91_kirkwood_mvebu_omap:
481 BUILDMAN: "am33xx at91_kirkwood mvebu omap -x siemens"
482 amlogic_bcm_boundary_engicam_siemens_technexion_oradex:
483 BUILDMAN: "amlogic bcm boundary engicam siemens technexion toradex -x mips"
485 BUILDMAN: "freescale -x powerpc,m68k,imx,mx"
487 BUILDMAN: "mx imx -x boundary,engicam,technexion,toradex"
495 BUILDMAN: "arm -x aarch64,am33xx,at91,bcm,ls1,kirkwood,mvebu,omap,rk,siemens,mx,sunxi,technexion,toradex"
497 BUILDMAN: "aarch64 -x amlogic,bcm,engicam,imx,ls1,ls2,lx216,mvebu,rk,siemens,sunxi,toradex"
498 everything_but_arm_and_powerpc:
499 BUILDMAN: "-x arm,powerpc"
502 cat << EOF > build.sh
505 # make environment variables available as tests are running inside a container
506 export BUILDMAN="${BUILDMAN}"
507 git config --global --add safe.directory ${WORK_DIR}
508 pip install -r tools/buildman/requirements.txt
510 cat << "EOF" >> build.sh
511 if [[ "${BUILDMAN}" != "" ]]; then
513 tools/buildman/buildman -o /tmp -PEWM ${BUILDMAN} ${OVERRIDE} || ret=$?;
514 if [[ $ret -ne 0 ]]; then
515 tools/buildman/buildman -o /tmp -seP ${BUILDMAN};
521 docker run -v $PWD:$(work_dir) $(ci_runner_image) /bin/bash $(work_dir)/build.sh