2 windows_vm: windows-2019
3 ubuntu_vm: ubuntu-22.04
5 ci_runner_image: trini/u-boot-gitlab-ci-runner:jammy-20230804-25Aug2023
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/ && exit 1 || exit 0
71 displayName: 'Build documentation'
75 image: $(ci_runner_image)
76 options: $(container_option)
79 virtualenv -p /usr/bin/python3 /tmp/venvhtml
80 . /tmp/venvhtml/bin/activate
81 pip install -r doc/sphinx/requirements.txt
82 make htmldocs KDOC_WERROR=1
86 displayName: 'Ensure all configs have MAINTAINERS entries'
90 image: $(ci_runner_image)
91 options: $(container_option)
94 ./tools/buildman/buildman --maintainer-check
97 displayName: 'Ensure host tools and env tools build'
101 image: $(ci_runner_image)
102 options: $(container_option)
105 make tools-only_config tools-only -j$(nproc)
107 make tools-only_config envtools -j$(nproc)
110 displayName: 'Run binman, buildman, dtoc, Kconfig and patman testsuites'
112 vmImage: $(ubuntu_vm)
115 cat << "EOF" > build.sh
117 git config --global user.name "Azure Pipelines"
119 git config --global --add safe.directory $(work_dir)
121 virtualenv -p /usr/bin/python3 /tmp/venv
122 . /tmp/venv/bin/activate
123 pip install -r test/py/requirements.txt
124 pip install -r tools/buildman/requirements.txt
125 export UBOOT_TRAVIS_BUILD_DIR=/tmp/tools-only
126 export PYTHONPATH=${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc/pylibfdt
127 export PATH=${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc:${PATH}
128 ./tools/buildman/buildman -T0 -o ${UBOOT_TRAVIS_BUILD_DIR} -w --board tools-only
130 ./tools/binman/binman --toolpath ${UBOOT_TRAVIS_BUILD_DIR}/tools test
131 ./tools/buildman/buildman -t
133 ./tools/patman/patman test
134 make O=${UBOOT_TRAVIS_BUILD_DIR} testconfig
137 # We cannot use "container" like other jobs above, as buildman
138 # seems to hang forever with pre-configured "container" environment
139 docker run -v $PWD:$(work_dir) $(ci_runner_image) /bin/bash $(work_dir)/build.sh
142 displayName: Check for any pylint regressions
144 vmImage: $(ubuntu_vm)
146 image: $(ci_runner_image)
147 options: $(container_option)
150 git config --global --add safe.directory $(work_dir)
152 pip install -r test/py/requirements.txt
153 pip install -r tools/buildman/requirements.txt
154 pip install asteval pylint==2.12.2 pyopenssl
155 export PATH=${PATH}:~/.local/bin
156 echo "[MASTER]" >> .pylintrc
157 echo "load-plugins=pylint.extensions.docparams" >> .pylintrc
158 export UBOOT_TRAVIS_BUILD_DIR=/tmp/tools-only
159 ./tools/buildman/buildman -T0 -o ${UBOOT_TRAVIS_BUILD_DIR} -w --board tools-only
162 export PYTHONPATH=${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc/pylibfdt
165 - job: check_for_pre_schema_tags
166 displayName: 'Check for pre-schema driver model tags'
168 vmImage: $(ubuntu_vm)
170 image: $(ci_runner_image)
171 options: $(container_option)
173 # If grep succeeds and finds a match the test fails as we should
175 - script: git grep u-boot,dm- -- '*.dts*' && exit 1 || exit 0
177 - job: check_packing_of_python_tools
178 displayName: 'Check we can package the Python tools'
180 vmImage: $(ubuntu_vm)
182 image: $(ci_runner_image)
183 options: $(container_option)
187 - job: create_test_py_wrapper_script
188 displayName: 'Create and stage a wrapper for test.py runs'
190 vmImage: $(ubuntu_vm)
197 # the below corresponds to .gitlab-ci.yml "before_script"
199 git config --global --add safe.directory \${WORK_DIR}
200 git clone --depth=1 https://source.denx.de/u-boot/u-boot-test-hooks /tmp/uboot-test-hooks
201 ln -s travis-ci /tmp/uboot-test-hooks/bin/\`hostname\`
202 ln -s travis-ci /tmp/uboot-test-hooks/py/\`hostname\`
203 grub-mkimage --prefix=\"\" -o ~/grub_x86.efi -O i386-efi normal echo lsefimmap lsefi lsefisystab efinet tftp minicmd
204 grub-mkimage --prefix=\"\" -o ~/grub_x64.efi -O x86_64-efi normal echo lsefimmap lsefi lsefisystab efinet tftp minicmd
205 if [[ "\${TEST_PY_BD}" == "qemu-riscv32_spl" ]]; then
206 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;
207 export OPENSBI=/tmp/opensbi-1.3.1-rv-bin/share/opensbi/ilp32/generic/firmware/fw_dynamic.bin;
209 if [[ "\${TEST_PY_BD}" == "qemu-riscv64_spl" ]] || [[ "\${TEST_PY_BD}" == "sifive_unleashed" ]]; then
210 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;
211 export OPENSBI=/tmp/opensbi-1.3.1-rv-bin/share/opensbi/lp64/generic/firmware/fw_dynamic.bin;
213 # the below corresponds to .gitlab-ci.yml "script"
215 export UBOOT_TRAVIS_BUILD_DIR=/tmp/\${TEST_PY_BD}
216 if [ -n "\${BUILD_ENV}" ]; then
217 export \${BUILD_ENV};
219 pip install -r tools/buildman/requirements.txt
220 tools/buildman/buildman -o \${UBOOT_TRAVIS_BUILD_DIR} -w -E -W -e --board \${TEST_PY_BD} \${OVERRIDE}
221 cp ~/grub_x86.efi \${UBOOT_TRAVIS_BUILD_DIR}/
222 cp ~/grub_x64.efi \${UBOOT_TRAVIS_BUILD_DIR}/
223 cp /opt/grub/grubriscv64.efi \${UBOOT_TRAVIS_BUILD_DIR}/grub_riscv64.efi
224 cp /opt/grub/grubaa64.efi \${UBOOT_TRAVIS_BUILD_DIR}/grub_arm64.efi
225 cp /opt/grub/grubarm.efi \${UBOOT_TRAVIS_BUILD_DIR}/grub_arm.efi
226 # create sdcard / spi-nor images for sifive unleashed using genimage
227 if [[ "\${TEST_PY_BD}" == "sifive_unleashed" ]]; then
229 cp \${UBOOT_TRAVIS_BUILD_DIR}/spl/u-boot-spl.bin .;
230 cp \${UBOOT_TRAVIS_BUILD_DIR}/u-boot.itb .;
232 genimage --inputpath . --config board/sifive/unleashed/genimage_sdcard.cfg;
233 cp images/sdcard.img \${UBOOT_TRAVIS_BUILD_DIR}/;
235 genimage --inputpath . --config board/sifive/unleashed/genimage_spi-nor.cfg;
236 cp images/spi-nor.img \${UBOOT_TRAVIS_BUILD_DIR}/;
238 if [[ "\${TEST_PY_BD}" == "coreboot" ]]; then
239 wget -O - "https://drive.google.com/uc?id=1uJ2VkUQ8czWFZmhJQ90Tp8V_zrJ6BrBH&export=download" |xz -dc >\${UBOOT_TRAVIS_BUILD_DIR}/coreboot.rom;
240 wget -O - "https://drive.google.com/uc?id=149Cz-5SZXHNKpi9xg6R_5XITWohu348y&export=download" >cbfstool;
242 ./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;
244 virtualenv -p /usr/bin/python3 /tmp/venv
245 . /tmp/venv/bin/activate
246 pip install -r test/py/requirements.txt
247 pip install pytest-azurepipelines
248 export PATH=/opt/qemu/bin:/tmp/uboot-test-hooks/bin:\${PATH}
249 export PYTHONPATH=/tmp/uboot-test-hooks/py/travis-ci
250 # "\${var:+"-k \$var"}" expands to "" if \$var is empty, "-k \$var" if not
251 ./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"
252 # the below corresponds to .gitlab-ci.yml "after_script"
253 rm -rf /tmp/uboot-test-hooks /tmp/venv
256 displayName: 'Copy test.sh for later usage'
259 targetFolder: '$(Build.ArtifactStagingDirectory)'
260 - publish: '$(Build.ArtifactStagingDirectory)/test.sh'
261 displayName: 'Publish test.sh'
264 - stage: test_py_sandbox
266 - job: test_py_sandbox
267 displayName: 'test.py for sandbox'
269 vmImage: $(ubuntu_vm)
273 TEST_PY_BD: "sandbox"
275 TEST_PY_BD: "sandbox"
277 TEST_PY_TEST_SPEC: "version"
279 TEST_PY_BD: "sandbox"
280 OVERRIDE: "-O clang-16"
282 TEST_PY_BD: "sandbox"
283 OVERRIDE: "-O clang-16 -a ASAN"
284 TEST_PY_TEST_SPEC: "version"
286 TEST_PY_BD: "sandbox64"
288 TEST_PY_BD: "sandbox64"
289 OVERRIDE: "-O clang-16"
291 TEST_PY_BD: "sandbox"
292 BUILD_ENV: "NO_LTO=1"
294 TEST_PY_BD: "sandbox_spl"
295 TEST_PY_TEST_SPEC: "test_ofplatdata or test_handoff or test_spl"
297 TEST_PY_BD: "sandbox_vpl"
298 TEST_PY_TEST_SPEC: "vpl or test_spl"
300 TEST_PY_BD: "sandbox_noinst"
301 TEST_PY_TEST_SPEC: "test_ofplatdata or test_handoff or test_spl"
302 sandbox_noinst_load_fit_full:
303 TEST_PY_BD: "sandbox_noinst"
304 TEST_PY_TEST_SPEC: "test_ofplatdata or test_handoff or test_spl"
305 OVERRIDE: "-a CONFIG_SPL_LOAD_FIT_FULL=y"
307 TEST_PY_BD: "sandbox_flattree"
309 TEST_PY_BD: "sandbox"
310 BUILD_ENV: "FTRACE=1 NO_LTO=1"
311 TEST_PY_TEST_SPEC: "trace"
312 OVERRIDE: "-a CONFIG_TRACE=y -a CONFIG_TRACE_EARLY=y -a CONFIG_TRACE_EARLY_SIZE=0x01000000 -a CONFIG_TRACE_BUFFER_SIZE=0x02000000"
317 # make current directory writeable to uboot user inside the container
318 # as sandbox testing need create files like spi flash images, etc.
319 # (TODO: clean up this in the future)
321 chmod 755 $(Pipeline.Workspace)/testsh/test.sh
322 # Filesystem tests need extra docker args to run
324 # mount -o loop needs the loop devices
325 if modprobe loop; then
326 for d in $(find /dev -maxdepth 1 -name 'loop*'); do
327 set -- "$@" --device $d:$d
330 # Needed for mount syscall (for guestmount as well)
331 set -- "$@" --cap-add SYS_ADMIN
332 # Default apparmor profile denies mounts
333 set -- "$@" --security-opt apparmor=unconfined
334 # Some tests using libguestfs-tools need the fuse device to run
335 docker run "$@" --device /dev/fuse:/dev/fuse \
336 -v $PWD:$(work_dir) \
337 -v $(Pipeline.Workspace):$(Pipeline.Workspace) \
338 -e WORK_DIR="${WORK_DIR}" \
339 -e TEST_PY_BD="${TEST_PY_BD}" \
340 -e TEST_PY_ID="${TEST_PY_ID}" \
341 -e TEST_PY_TEST_SPEC="${TEST_PY_TEST_SPEC}" \
342 -e OVERRIDE="${OVERRIDE}" \
343 -e BUILD_ENV="${BUILD_ENV}" $(ci_runner_image) \
344 $(Pipeline.Workspace)/testsh/test.sh
346 - stage: test_py_qemu
349 displayName: 'test.py for QEMU platforms'
351 vmImage: $(ubuntu_vm)
355 TEST_PY_BD: "coreboot"
356 TEST_PY_ID: "--id qemu"
357 TEST_PY_TEST_SPEC: "not sleep"
359 TEST_PY_BD: "evb-ast2500"
360 TEST_PY_ID: "--id qemu"
362 TEST_PY_BD: "evb-ast2600"
363 TEST_PY_ID: "--id qemu"
365 TEST_PY_BD: "vexpress_ca9x4"
366 TEST_PY_ID: "--id qemu"
367 integratorcp_cm926ejs:
368 TEST_PY_BD: "integratorcp_cm926ejs"
369 TEST_PY_ID: "--id qemu"
370 TEST_PY_TEST_SPEC: "not sleep"
372 TEST_PY_BD: "qemu_arm"
373 TEST_PY_TEST_SPEC: "not sleep"
375 TEST_PY_BD: "qemu_arm64"
376 TEST_PY_TEST_SPEC: "not sleep"
378 TEST_PY_BD: "M5208EVBE"
379 TEST_PY_ID: "--id qemu"
380 TEST_PY_TEST_SPEC: "not sleep and not efi"
381 OVERRIDE: "-a CONFIG_M68K_QEMU=y -a ~CONFIG_MCFTMR"
384 TEST_PY_ID: "--id qemu"
385 TEST_PY_TEST_SPEC: "not sleep and not efi"
387 TEST_PY_BD: "maltael"
388 TEST_PY_ID: "--id qemu"
389 TEST_PY_TEST_SPEC: "not sleep and not efi"
391 TEST_PY_BD: "malta64"
392 TEST_PY_ID: "--id qemu"
393 TEST_PY_TEST_SPEC: "not sleep and not efi"
395 TEST_PY_BD: "malta64el"
396 TEST_PY_ID: "--id qemu"
397 TEST_PY_TEST_SPEC: "not sleep and not efi"
399 TEST_PY_BD: "qemu-ppce500"
400 TEST_PY_TEST_SPEC: "not sleep"
402 TEST_PY_BD: "qemu-riscv32"
403 TEST_PY_TEST_SPEC: "not sleep"
405 TEST_PY_BD: "qemu-riscv64"
406 TEST_PY_TEST_SPEC: "not sleep"
408 TEST_PY_BD: "qemu-riscv32_spl"
409 TEST_PY_TEST_SPEC: "not sleep"
411 TEST_PY_BD: "qemu-riscv64_spl"
412 TEST_PY_TEST_SPEC: "not sleep"
414 TEST_PY_BD: "qemu-x86"
415 TEST_PY_TEST_SPEC: "not sleep"
417 TEST_PY_BD: "qemu-x86_64"
418 TEST_PY_TEST_SPEC: "not sleep"
420 TEST_PY_BD: "r2dplus"
421 TEST_PY_ID: "--id i82557c_qemu"
423 TEST_PY_BD: "r2dplus"
424 TEST_PY_ID: "--id pcnet_qemu"
426 TEST_PY_BD: "r2dplus"
427 TEST_PY_ID: "--id rtl8139_qemu"
429 TEST_PY_BD: "r2dplus"
430 TEST_PY_ID: "--id tulip_qemu"
431 sifive_unleashed_sdcard:
432 TEST_PY_BD: "sifive_unleashed"
433 TEST_PY_ID: "--id sdcard_qemu"
434 sifive_unleashed_spi-nor:
435 TEST_PY_BD: "sifive_unleashed"
436 TEST_PY_ID: "--id spi-nor_qemu"
438 TEST_PY_BD: "xilinx_zynq_virt"
439 TEST_PY_ID: "--id qemu"
440 TEST_PY_TEST_SPEC: "not sleep"
442 TEST_PY_BD: "xilinx_versal_virt"
443 TEST_PY_ID: "--id qemu"
444 TEST_PY_TEST_SPEC: "not sleep"
447 TEST_PY_ID: "--id qemu"
448 TEST_PY_TEST_SPEC: "not sleep"
453 # make current directory writeable to uboot user inside the container
454 # as sandbox testing need create files like spi flash images, etc.
455 # (TODO: clean up this in the future)
457 chmod 755 $(Pipeline.Workspace)/testsh/test.sh
458 # Some tests using libguestfs-tools need the fuse device to run
459 docker run "$@" --device /dev/fuse:/dev/fuse \
460 -v $PWD:$(work_dir) \
461 -v $(Pipeline.Workspace):$(Pipeline.Workspace) \
462 -e WORK_DIR="${WORK_DIR}" \
463 -e TEST_PY_BD="${TEST_PY_BD}" \
464 -e TEST_PY_ID="${TEST_PY_ID}" \
465 -e TEST_PY_TEST_SPEC="${TEST_PY_TEST_SPEC}" \
466 -e OVERRIDE="${OVERRIDE}" \
467 -e BUILD_ENV="${BUILD_ENV}" $(ci_runner_image) \
468 $(Pipeline.Workspace)/testsh/test.sh
469 retryCountOnTaskFailure: 2 # QEMU may be too slow, etc.
473 - job: build_the_world
474 timeoutInMinutes: 0 # Use the maximum allowed
475 displayName: 'Build the World'
477 vmImage: $(ubuntu_vm)
479 # Use almost the same target division in .travis.yml, only merged
480 # 3 small build jobs (arc/microblaze/xtensa) into one.
482 am33xx_at91_kirkwood_mvebu_omap:
483 BUILDMAN: "am33xx at91_kirkwood mvebu omap -x siemens"
484 amlogic_bcm_boundary_engicam_siemens_technexion_oradex:
485 BUILDMAN: "amlogic bcm boundary engicam siemens technexion toradex -x mips"
487 BUILDMAN: "freescale -x powerpc,m68k,imx,mx"
489 BUILDMAN: "mx imx -x boundary,engicam,technexion,toradex"
497 BUILDMAN: "arm -x aarch64,am33xx,at91,bcm,ls1,kirkwood,mvebu,omap,rk,siemens,mx,sunxi,technexion,toradex"
499 BUILDMAN: "aarch64 -x amlogic,bcm,engicam,imx,ls1,ls2,lx216,mvebu,rk,siemens,sunxi,toradex"
500 everything_but_arm_and_powerpc:
501 BUILDMAN: "-x arm,powerpc"
504 cat << EOF > build.sh
507 # make environment variables available as tests are running inside a container
508 export BUILDMAN="${BUILDMAN}"
509 git config --global --add safe.directory ${WORK_DIR}
510 pip install -r tools/buildman/requirements.txt
512 cat << "EOF" >> build.sh
513 if [[ "${BUILDMAN}" != "" ]]; then
515 tools/buildman/buildman -o /tmp -PEWM ${BUILDMAN} ${OVERRIDE} || ret=$?;
516 if [[ $ret -ne 0 ]]; then
517 tools/buildman/buildman -o /tmp -seP ${BUILDMAN};
523 docker run -v $PWD:$(work_dir) $(ci_runner_image) /bin/bash $(work_dir)/build.sh