2 windows_vm: windows-2022
3 ubuntu_vm: ubuntu-24.04
5 ci_runner_image: trini/u-boot-gitlab-ci-runner:jammy-20240808-21Aug2024
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.
11 # We define all of these as variables so we can easily reference them twice
12 am33xx_kirkwood_ls1_mvebu_omap: "am33xx kirkwood ls1 mvebu omap -x siemens,freescale"
13 amlogic_bcm_boundary_engicam_siemens_technexion_oradex: "amlogic bcm boundary engicam siemens technexion toradex -x mips"
14 arm_nxp_minus_imx_and_at91: "at91 freescale -x powerpc,m68k,imx,mx"
15 imx: "mx imx -x boundary,engicam,technexion,toradex"
19 arm_catch_all: "arm -x aarch64,am33xx,at91,bcm,ls1,kirkwood,mvebu,omap,rk,siemens,mx,sunxi,technexion,toradex"
20 aarch64_catch_all: "aarch64 -x amlogic,bcm,engicam,imx,ls1,ls2,lx216,mvebu,rk,siemens,sunxi,toradex"
21 everything_but_arm_and_powerpc: "arc m68k microblaze mips nios2 riscv sandbox sh x86 xtensa -x arm,powerpc"
26 - job: tools_only_windows
27 displayName: 'Ensure host tools build for Windows'
29 vmImage: $(windows_vm)
32 (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")
33 displayName: 'Install MSYS2'
35 sfx.exe -y -o%CD:~0,2%\
36 %CD:~0,2%\msys64\usr\bin\bash -lc " "
37 %CD:~0,2%\msys64\usr\bin\bash -lc "pacman --noconfirm -Syuu"
38 %CD:~0,2%\msys64\usr\bin\bash -lc "pacman --noconfirm -Syuu"
39 displayName: 'Update MSYS2'
41 %CD:~0,2%\msys64\usr\bin\bash -lc "pacman --noconfirm --needed -Sy make gcc bison flex diffutils openssl-devel libgnutls-devel libutil-linux-devel"
42 displayName: 'Install Toolchain'
44 echo make tools-only_defconfig tools-only > build-tools.sh
45 %CD:~0,2%\msys64\usr\bin\bash -lc "bash build-tools.sh"
46 displayName: 'Build Host Tools'
48 # Tell MSYS2 we need a POSIX emulation layer
50 # Tell MSYS2 not to ‘cd’ our startup directory to HOME
53 - job: tools_only_macOS
54 displayName: 'Ensure host tools build for macOS X'
58 - script: brew install make ossp-uuid
59 displayName: Brew install dependencies
61 gmake tools-only_config tools-only \
64 -j$(sysctl -n hw.logicalcpu)
65 displayName: 'Perform tools-only build'
67 - job: check_for_new_CONFIG_symbols_outside_Kconfig
68 displayName: 'Check for new CONFIG symbols outside Kconfig'
72 image: $(ci_runner_image)
73 options: $(container_option)
75 # If grep succeeds and finds a match the test fails as we should
77 - script: git grep -E '^#[[:blank:]]*(define|undef)[[:blank:]]*CONFIG_'
78 :^doc/ :^arch/arm/dts/ :^scripts/kconfig/lkc.h
79 :^include/linux/kconfig.h :^tools/ :^dts/upstream/
80 :^lib/mbedtls/external :^lib/mbedtls/mbedtls_def_config.h &&
84 displayName: 'Build documentation'
88 image: $(ci_runner_image)
89 options: $(container_option)
92 virtualenv -p /usr/bin/python3 /tmp/venvhtml
93 . /tmp/venvhtml/bin/activate
94 pip install -r doc/sphinx/requirements.txt
95 make htmldocs KDOC_WERROR=1
99 displayName: 'Ensure all configs have MAINTAINERS entries'
101 vmImage: $(ubuntu_vm)
103 image: $(ci_runner_image)
104 options: $(container_option)
107 ./tools/buildman/buildman --maintainer-check
110 displayName: 'Ensure host tools and env tools build'
112 vmImage: $(ubuntu_vm)
114 image: $(ci_runner_image)
115 options: $(container_option)
118 make tools-only_config tools-only -j$(nproc)
120 make tools-only_config envtools -j$(nproc)
123 displayName: 'Run binman, buildman, dtoc, Kconfig and patman testsuites'
125 vmImage: $(ubuntu_vm)
128 cat << "EOF" > build.sh
130 git config --global user.name "Azure Pipelines"
132 git config --global --add safe.directory $(work_dir)
134 virtualenv -p /usr/bin/python3 /tmp/venv
135 . /tmp/venv/bin/activate
136 pip install -r test/py/requirements.txt
137 pip install -r tools/buildman/requirements.txt
138 export UBOOT_TRAVIS_BUILD_DIR=/tmp/tools-only
139 export PYTHONPATH=${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc/pylibfdt
140 export PATH=${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc:${PATH}
141 ./tools/buildman/buildman -T0 -o ${UBOOT_TRAVIS_BUILD_DIR} -w --board tools-only
143 ./tools/binman/binman --toolpath ${UBOOT_TRAVIS_BUILD_DIR}/tools test
144 ./tools/buildman/buildman -t
146 ./tools/patman/patman test
147 make O=${UBOOT_TRAVIS_BUILD_DIR} testconfig
150 # We cannot use "container" like other jobs above, as buildman
151 # seems to hang forever with pre-configured "container" environment
152 docker run -v $PWD:$(work_dir) $(ci_runner_image) /bin/bash $(work_dir)/build.sh
155 displayName: Check for any pylint regressions
157 vmImage: $(ubuntu_vm)
159 image: $(ci_runner_image)
160 options: $(container_option)
163 git config --global --add safe.directory $(work_dir)
165 pip install -r test/py/requirements.txt
166 pip install -r tools/buildman/requirements.txt
167 pip install asteval pylint==2.12.2 pyopenssl
168 export PATH=${PATH}:~/.local/bin
169 echo "[MASTER]" >> .pylintrc
170 echo "load-plugins=pylint.extensions.docparams" >> .pylintrc
171 export UBOOT_TRAVIS_BUILD_DIR=/tmp/tools-only
172 ./tools/buildman/buildman -T0 -o ${UBOOT_TRAVIS_BUILD_DIR} -w --board tools-only
175 export PYTHONPATH=${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc/pylibfdt
178 - job: check_for_pre_schema_tags
179 displayName: 'Check for pre-schema driver model tags'
181 vmImage: $(ubuntu_vm)
183 image: $(ci_runner_image)
184 options: $(container_option)
186 # If grep succeeds and finds a match the test fails as we should
188 - script: git grep u-boot,dm- -- '*.dts*' && exit 1 || exit 0
190 - job: check_packing_of_python_tools
191 displayName: 'Check we can package the Python tools'
193 vmImage: $(ubuntu_vm)
195 image: $(ci_runner_image)
196 options: $(container_option)
200 - job: count_built_machines
201 displayName: 'Ensure we build all possible machines'
203 vmImage: $(ubuntu_vm)
205 image: $(ci_runner_image)
206 options: $(container_option)
209 BMANARGS="-o /tmp --dry-run -v"
210 # First get the total number of boards
211 total=$(tools/buildman/buildman ${BMANARGS} | grep "Total boards to build for each commit" | cut -d ' ' -f 8)
212 # Now build up the list of what each job built.
213 built="$(tools/buildman/buildman ${BMANARGS} $(am33xx_kirkwood_ls1_mvebu_omap) | grep '^ ')"
214 built="$built $(tools/buildman/buildman ${BMANARGS} $(amlogic_bcm_boundary_engicam_siemens_technexion_oradex) | grep '^ ')"
215 built="$built $(tools/buildman/buildman ${BMANARGS} $(arm_nxp_minus_imx_and_at91) | grep '^ ')"
216 built="$built $(tools/buildman/buildman ${BMANARGS} $(imx) | grep '^ ')"
217 built="$built $(tools/buildman/buildman ${BMANARGS} $(rk) | grep '^ ')"
218 built="$built $(tools/buildman/buildman ${BMANARGS} $(sunxi) | grep '^ ')"
219 built="$built $(tools/buildman/buildman ${BMANARGS} $(powerpc) | grep '^ ')"
220 built="$built $(tools/buildman/buildman ${BMANARGS} $(arm_catch_all) | grep '^ ')"
221 built="$built $(tools/buildman/buildman ${BMANARGS} $(aarch64_catch_all) | grep '^ ')"
222 built="$built $(tools/buildman/buildman ${BMANARGS} $(everything_but_arm_and_powerpc) | grep '^ ')"
223 # Finally see how many machines that is.
224 actual=$(tools/buildman/buildman ${BMANARGS} $built | grep "Total boards to build for each commit" | cut -d ' ' -f 8)
225 echo We would build a total of $actual out of $total platforms this CI run
226 [ $actual -eq $total ] && exit 0 || exit 1
228 - job: create_test_py_wrapper_script
229 displayName: 'Create and stage a wrapper for test.py runs'
231 vmImage: $(ubuntu_vm)
238 # the below corresponds to .gitlab-ci.yml "before_script"
240 git config --global --add safe.directory \${WORK_DIR}
241 git clone --depth=1 https://source.denx.de/u-boot/u-boot-test-hooks /tmp/uboot-test-hooks
242 # qemu_arm64_lwip_defconfig is the same as qemu_arm64 but with NET_LWIP enabled.
243 # The test config and the boardenv file from qemu_arm64 can be re-used so create symlinks
244 ln -s conf.qemu_arm64_na /tmp/uboot-test-hooks/bin/travis-ci/conf.qemu_arm64_lwip_na
245 ln -s u_boot_boardenv_qemu_arm64_na.py /tmp/uboot-test-hooks/py/travis-ci/u_boot_boardenv_qemu_arm64_lwip_na.py
246 ln -s travis-ci /tmp/uboot-test-hooks/bin/\`hostname\`
247 ln -s travis-ci /tmp/uboot-test-hooks/py/\`hostname\`
248 grub-mkimage --prefix=\"\" -o ~/grub_x86.efi -O i386-efi normal echo lsefimmap lsefi lsefisystab efinet tftp minicmd
249 grub-mkimage --prefix=\"\" -o ~/grub_x64.efi -O x86_64-efi normal echo lsefimmap lsefi lsefisystab efinet tftp minicmd
250 if [[ "\${TEST_PY_BD}" == "qemu-riscv32_spl" ]]; then
251 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;
252 export OPENSBI=/tmp/opensbi-1.3.1-rv-bin/share/opensbi/ilp32/generic/firmware/fw_dynamic.bin;
254 if [[ "\${TEST_PY_BD}" == "qemu-riscv64_spl" ]] || [[ "\${TEST_PY_BD}" == "sifive_unleashed" ]]; then
255 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;
256 export OPENSBI=/tmp/opensbi-1.3.1-rv-bin/share/opensbi/lp64/generic/firmware/fw_dynamic.bin;
258 # the below corresponds to .gitlab-ci.yml "script"
260 export UBOOT_TRAVIS_BUILD_DIR=/tmp/\${TEST_PY_BD}
261 if [ -n "\${BUILD_ENV}" ]; then
262 export \${BUILD_ENV};
264 pip install -r tools/buildman/requirements.txt
265 tools/buildman/buildman -o \${UBOOT_TRAVIS_BUILD_DIR} -w -E -W -e --board \${TEST_PY_BD} \${OVERRIDE}
266 cp ~/grub_x86.efi \${UBOOT_TRAVIS_BUILD_DIR}/
267 cp ~/grub_x64.efi \${UBOOT_TRAVIS_BUILD_DIR}/
268 cp /opt/grub/grubriscv64.efi \${UBOOT_TRAVIS_BUILD_DIR}/grub_riscv64.efi
269 cp /opt/grub/grubaa64.efi \${UBOOT_TRAVIS_BUILD_DIR}/grub_arm64.efi
270 cp /opt/grub/grubarm.efi \${UBOOT_TRAVIS_BUILD_DIR}/grub_arm.efi
271 # create sdcard / spi-nor images for sifive unleashed using genimage
272 if [[ "\${TEST_PY_BD}" == "sifive_unleashed" ]]; then
274 cp \${UBOOT_TRAVIS_BUILD_DIR}/spl/u-boot-spl.bin .;
275 cp \${UBOOT_TRAVIS_BUILD_DIR}/u-boot.itb .;
277 genimage --inputpath . --config board/sifive/unleashed/genimage_sdcard.cfg;
278 cp images/sdcard.img \${UBOOT_TRAVIS_BUILD_DIR}/;
280 genimage --inputpath . --config board/sifive/unleashed/genimage_spi-nor.cfg;
281 cp images/spi-nor.img \${UBOOT_TRAVIS_BUILD_DIR}/;
283 if [[ "\${TEST_PY_BD}" == "coreboot" ]]; then
284 cp /opt/coreboot/coreboot.rom \${UBOOT_TRAVIS_BUILD_DIR}/coreboot.rom;
285 /opt/coreboot/cbfstool \${UBOOT_TRAVIS_BUILD_DIR}/coreboot.rom remove -n fallback/payload;
286 /opt/coreboot/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;
288 virtualenv -p /usr/bin/python3 /tmp/venv
289 . /tmp/venv/bin/activate
290 pip install -r test/py/requirements.txt
291 pip install pytest-azurepipelines
292 export PATH=/opt/qemu/bin:/tmp/uboot-test-hooks/bin:\${PATH}
293 export PYTHONPATH=/tmp/uboot-test-hooks/py/travis-ci
294 # "\${var:+"-k \$var"}" expands to "" if \$var is empty, "-k \$var" if not
295 ./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" --junitxml=\$(System.DefaultWorkingDirectory)/results.xml
296 # the below corresponds to .gitlab-ci.yml "after_script"
297 rm -rf /tmp/uboot-test-hooks /tmp/venv
300 displayName: 'Copy test.sh for later usage'
303 targetFolder: '$(Build.ArtifactStagingDirectory)'
304 - publish: '$(Build.ArtifactStagingDirectory)/test.sh'
305 displayName: 'Publish test.sh'
308 - stage: test_py_sandbox
310 - job: test_py_sandbox
311 displayName: 'test.py for sandbox'
313 vmImage: $(ubuntu_vm)
317 TEST_PY_BD: "sandbox"
319 TEST_PY_BD: "sandbox"
321 TEST_PY_TEST_SPEC: "version"
323 TEST_PY_BD: "sandbox"
324 OVERRIDE: "-O clang-17"
326 TEST_PY_BD: "sandbox"
327 OVERRIDE: "-O clang-17 -a ASAN"
328 TEST_PY_TEST_SPEC: "version"
330 TEST_PY_BD: "sandbox64"
332 TEST_PY_BD: "sandbox64"
333 OVERRIDE: "-O clang-17"
335 TEST_PY_BD: "sandbox_spl"
336 TEST_PY_TEST_SPEC: "test_ofplatdata or test_handoff or test_spl"
338 TEST_PY_BD: "sandbox_vpl"
339 TEST_PY_TEST_SPEC: "vpl or test_spl"
341 TEST_PY_BD: "sandbox_noinst"
342 TEST_PY_TEST_SPEC: "test_ofplatdata or test_handoff or test_spl"
343 sandbox_noinst_load_fit_full:
344 TEST_PY_BD: "sandbox_noinst"
345 TEST_PY_TEST_SPEC: "test_ofplatdata or test_handoff or test_spl"
346 OVERRIDE: "-a CONFIG_SPL_LOAD_FIT_FULL=y"
348 TEST_PY_BD: "sandbox_flattree"
350 TEST_PY_BD: "sandbox"
351 BUILD_ENV: "FTRACE=1 NO_LTO=1"
352 TEST_PY_TEST_SPEC: "trace"
353 OVERRIDE: "-a CONFIG_TRACE=y -a CONFIG_TRACE_EARLY=y -a CONFIG_TRACE_EARLY_SIZE=0x01000000 -a CONFIG_TRACE_BUFFER_SIZE=0x02000000"
358 # make current directory writeable to uboot user inside the container
359 # as sandbox testing need create files like spi flash images, etc.
360 # (TODO: clean up this in the future)
362 chmod 755 $(Pipeline.Workspace)/testsh/test.sh
363 # Filesystem tests need extra docker args to run
365 # mount -o loop needs the loop devices
366 if modprobe loop; then
367 for d in $(find /dev -maxdepth 1 -name 'loop*'); do
368 set -- "$@" --device $d:$d
371 # Needed for mount syscall (for guestmount as well)
372 set -- "$@" --cap-add SYS_ADMIN
373 # Default apparmor profile denies mounts
374 set -- "$@" --security-opt apparmor=unconfined
375 # Some tests using libguestfs-tools need the fuse device to run
376 docker run "$@" --device /dev/fuse:/dev/fuse \
377 -v $PWD:$(work_dir) \
378 -v $(Pipeline.Workspace):$(Pipeline.Workspace) \
379 -v $(System.DefaultWorkingDirectory):$(System.DefaultWorkingDirectory) \
380 -e WORK_DIR="${WORK_DIR}" \
381 -e TEST_PY_BD="${TEST_PY_BD}" \
382 -e TEST_PY_ID="${TEST_PY_ID}" \
383 -e TEST_PY_TEST_SPEC="${TEST_PY_TEST_SPEC}" \
384 -e OVERRIDE="${OVERRIDE}" \
385 -e BUILD_ENV="${BUILD_ENV}" $(ci_runner_image) \
386 $(Pipeline.Workspace)/testsh/test.sh
387 - task: PublishTestResults@2
389 testResultsFormat: 'JUnit'
390 testResultsFiles: 'results.xml'
392 - stage: test_py_qemu
395 displayName: 'test.py for QEMU platforms'
397 vmImage: $(ubuntu_vm)
401 TEST_PY_BD: "coreboot"
402 TEST_PY_ID: "--id qemu"
403 TEST_PY_TEST_SPEC: "not sleep"
405 TEST_PY_BD: "evb-ast2500"
406 TEST_PY_ID: "--id qemu"
407 TEST_PY_TEST_SPEC: "not sleep"
409 TEST_PY_BD: "evb-ast2600"
410 TEST_PY_ID: "--id qemu"
411 TEST_PY_TEST_SPEC: "not sleep"
413 TEST_PY_BD: "vexpress_ca9x4"
414 TEST_PY_ID: "--id qemu"
415 TEST_PY_TEST_SPEC: "not sleep"
416 integratorcp_cm926ejs:
417 TEST_PY_BD: "integratorcp_cm926ejs"
418 TEST_PY_ID: "--id qemu"
419 TEST_PY_TEST_SPEC: "not sleep"
421 TEST_PY_BD: "qemu_arm"
422 TEST_PY_TEST_SPEC: "not sleep"
424 TEST_PY_BD: "qemu_arm64"
425 TEST_PY_TEST_SPEC: "not sleep"
427 TEST_PY_BD: "qemu_arm64_lwip"
428 TEST_PY_TEST_SPEC: "test_net_dhcp or test_net_ping or test_net_tftpboot"
430 TEST_PY_BD: "M5208EVBE"
431 TEST_PY_ID: "--id qemu"
432 TEST_PY_TEST_SPEC: "not sleep and not efi"
433 OVERRIDE: "-a CONFIG_M68K_QEMU=y -a ~CONFIG_MCFTMR"
436 TEST_PY_ID: "--id qemu"
437 TEST_PY_TEST_SPEC: "not sleep and not efi"
439 TEST_PY_BD: "maltael"
440 TEST_PY_ID: "--id qemu"
441 TEST_PY_TEST_SPEC: "not sleep and not efi"
443 TEST_PY_BD: "malta64"
444 TEST_PY_ID: "--id qemu"
445 TEST_PY_TEST_SPEC: "not sleep and not efi"
447 TEST_PY_BD: "malta64el"
448 TEST_PY_ID: "--id qemu"
449 TEST_PY_TEST_SPEC: "not sleep and not efi"
451 TEST_PY_BD: "qemu-ppce500"
452 TEST_PY_TEST_SPEC: "not sleep"
454 TEST_PY_BD: "qemu-riscv32"
455 TEST_PY_TEST_SPEC: "not sleep"
457 TEST_PY_BD: "qemu-riscv64"
458 TEST_PY_TEST_SPEC: "not sleep"
460 TEST_PY_BD: "qemu-riscv32_spl"
461 TEST_PY_TEST_SPEC: "not sleep"
463 TEST_PY_BD: "qemu-riscv64_spl"
464 TEST_PY_TEST_SPEC: "not sleep"
466 TEST_PY_BD: "qemu-x86"
467 TEST_PY_TEST_SPEC: "not sleep"
469 TEST_PY_BD: "qemu-x86_64"
470 TEST_PY_TEST_SPEC: "not sleep"
472 TEST_PY_BD: "qemu-xtensa-dc233c"
473 TEST_PY_TEST_SPEC: "not sleep and not efi"
475 TEST_PY_BD: "r2dplus"
476 TEST_PY_ID: "--id i82557c_qemu"
477 TEST_PY_TEST_SPEC: "not sleep"
479 TEST_PY_BD: "r2dplus"
480 TEST_PY_ID: "--id pcnet_qemu"
481 TEST_PY_TEST_SPEC: "not sleep"
483 TEST_PY_BD: "r2dplus"
484 TEST_PY_ID: "--id rtl8139_qemu"
485 TEST_PY_TEST_SPEC: "not sleep"
487 TEST_PY_BD: "r2dplus"
488 TEST_PY_ID: "--id tulip_qemu"
489 TEST_PY_TEST_SPEC: "not sleep"
490 sifive_unleashed_sdcard:
491 TEST_PY_BD: "sifive_unleashed"
492 TEST_PY_ID: "--id sdcard_qemu"
493 TEST_PY_TEST_SPEC: "not sleep"
494 sifive_unleashed_spi-nor:
495 TEST_PY_BD: "sifive_unleashed"
496 TEST_PY_ID: "--id spi-nor_qemu"
497 TEST_PY_TEST_SPEC: "not sleep"
499 TEST_PY_BD: "xilinx_zynq_virt"
500 TEST_PY_ID: "--id qemu"
501 TEST_PY_TEST_SPEC: "not sleep"
503 TEST_PY_BD: "xilinx_versal_virt"
504 TEST_PY_ID: "--id qemu"
505 TEST_PY_TEST_SPEC: "not sleep"
508 TEST_PY_ID: "--id qemu"
509 TEST_PY_TEST_SPEC: "not sleep"
514 # make current directory writeable to uboot user inside the container
515 # as sandbox testing need create files like spi flash images, etc.
516 # (TODO: clean up this in the future)
518 chmod 755 $(Pipeline.Workspace)/testsh/test.sh
519 # Some tests using libguestfs-tools need the fuse device to run
520 docker run "$@" --device /dev/fuse:/dev/fuse \
521 -v $PWD:$(work_dir) \
522 -v $(Pipeline.Workspace):$(Pipeline.Workspace) \
523 -v $(System.DefaultWorkingDirectory):$(System.DefaultWorkingDirectory) \
524 -e WORK_DIR="${WORK_DIR}" \
525 -e TEST_PY_BD="${TEST_PY_BD}" \
526 -e TEST_PY_ID="${TEST_PY_ID}" \
527 -e TEST_PY_TEST_SPEC="${TEST_PY_TEST_SPEC}" \
528 -e OVERRIDE="${OVERRIDE}" \
529 -e BUILD_ENV="${BUILD_ENV}" $(ci_runner_image) \
530 $(Pipeline.Workspace)/testsh/test.sh
531 retryCountOnTaskFailure: 2 # QEMU may be too slow, etc.
532 - task: PublishTestResults@2
534 testResultsFormat: 'JUnit'
535 testResultsFiles: 'results.xml'
539 - job: build_the_world
540 timeoutInMinutes: 0 # Use the maximum allowed
541 displayName: 'Build the World'
543 vmImage: $(ubuntu_vm)
545 # We split the world up in to 10 jobs as we can have at most 10
546 # parallel jobs going on the free tier of Azure.
548 am33xx_kirkwood_ls1_mvebu_omap:
549 BUILDMAN: $(am33xx_kirkwood_ls1_mvebu_omap)
550 amlogic_bcm_boundary_engicam_siemens_technexion_oradex:
551 BUILDMAN: $(amlogic_bcm_boundary_engicam_siemens_technexion_oradex)
552 arm_nxp_minus_imx_and_at91:
553 BUILDMAN: $(arm_nxp_minus_imx_and_at91)
563 BUILDMAN: $(arm_catch_all)
565 BUILDMAN: $(aarch64_catch_all)
566 everything_but_arm_and_powerpc:
567 BUILDMAN: $(everything_but_arm_and_powerpc)
570 cat << EOF > build.sh
573 # make environment variables available as tests are running inside a container
574 export BUILDMAN="${BUILDMAN}"
575 git config --global --add safe.directory ${WORK_DIR}
576 pip install -r tools/buildman/requirements.txt
578 cat << "EOF" >> build.sh
579 if [[ "${BUILDMAN}" != "" ]]; then
581 tools/buildman/buildman -o /tmp -PEWM ${BUILDMAN} ${OVERRIDE} || ret=$?;
582 if [[ $ret -ne 0 ]]; then
583 tools/buildman/buildman -o /tmp -seP ${BUILDMAN};
589 docker run -v $PWD:$(work_dir) $(ci_runner_image) /bin/bash $(work_dir)/build.sh