clk: at91: Fix initializing arrays
[platform/kernel/u-boot.git] / .azure-pipelines.yml
1 variables:
2   windows_vm: windows-2019
3   ubuntu_vm: ubuntu-22.04
4   macos_vm: macOS-12
5   ci_runner_image: trini/u-boot-gitlab-ci-runner:jammy-20230624-20Jul2023
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.
9   container_option: -u 0
10   work_dir: /u
11
12 stages:
13 - stage: testsuites
14   jobs:
15   - job: tools_only_windows
16     displayName: 'Ensure host tools build for Windows'
17     pool:
18       vmImage: $(windows_vm)
19     steps:
20       - powershell: |
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'
23       - script: |
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'
29       - script: |
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'
32       - script: |
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'
36         env:
37           # Tell MSYS2 we need a POSIX emulation layer
38           MSYSTEM: MSYS
39           # Tell MSYS2 not to ‘cd’ our startup directory to HOME
40           CHERE_INVOKING: yes
41
42   - job: tools_only_macOS
43     displayName: 'Ensure host tools build for macOS X'
44     pool:
45       vmImage: $(macos_vm)
46     steps:
47       - script: brew install make ossp-uuid
48         displayName: Brew install dependencies
49       - script: |
50           gmake tools-only_config tools-only \
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'
55
56   - job: check_for_new_CONFIG_symbols_outside_Kconfig
57     displayName: 'Check for new CONFIG symbols outside Kconfig'
58     pool:
59       vmImage: $(ubuntu_vm)
60     container:
61       image: $(ci_runner_image)
62       options: $(container_option)
63     steps:
64       # If grep succeeds and finds a match the test fails as we should
65       # have no matches.
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
69
70   - job: cppcheck
71     displayName: 'Static code analysis with cppcheck'
72     pool:
73       vmImage: $(ubuntu_vm)
74     container:
75       image: $(ci_runner_image)
76       options: $(container_option)
77     steps:
78       - script: cppcheck -j$(nproc) --force --quiet --inline-suppr .
79
80   - job: docs
81     displayName: 'Build documentation'
82     pool:
83       vmImage: $(ubuntu_vm)
84     container:
85       image: $(ci_runner_image)
86       options: $(container_option)
87     steps:
88       - script: |
89           virtualenv -p /usr/bin/python3 /tmp/venvhtml
90           . /tmp/venvhtml/bin/activate
91           pip install -r doc/sphinx/requirements.txt
92           make htmldocs KDOC_WERROR=1
93           make infodocs
94
95   - job: todo
96     displayName: 'Search for TODO within source tree'
97     pool:
98       vmImage: $(ubuntu_vm)
99     container:
100       image: $(ci_runner_image)
101       options: $(container_option)
102     steps:
103       - script: grep -r TODO .
104       - script: grep -r FIXME .
105       - script: grep -r HACK . | grep -v HACKKIT
106
107   - job: sloccount
108     displayName: 'Some statistics about the code base'
109     pool:
110       vmImage: $(ubuntu_vm)
111     container:
112       image: $(ci_runner_image)
113       options: $(container_option)
114     steps:
115       - script: sloccount .
116
117   - job: maintainers
118     displayName: 'Ensure all configs have MAINTAINERS entries'
119     pool:
120       vmImage: $(ubuntu_vm)
121     container:
122       image: $(ci_runner_image)
123       options: $(container_option)
124     steps:
125       - script: |
126           ./tools/buildman/buildman --maintainer-check || exit 0
127
128   - job: tools_only
129     displayName: 'Ensure host tools build'
130     pool:
131       vmImage: $(ubuntu_vm)
132     container:
133       image: $(ci_runner_image)
134       options: $(container_option)
135     steps:
136       - script: |
137           make tools-only_config tools-only -j$(nproc)
138
139   - job: envtools
140     displayName: 'Ensure env tools build'
141     pool:
142       vmImage: $(ubuntu_vm)
143     container:
144       image: $(ci_runner_image)
145       options: $(container_option)
146     steps:
147       - script: |
148           make tools-only_config envtools -j$(nproc)
149
150   - job: utils
151     displayName: 'Run binman, buildman, dtoc, Kconfig and patman testsuites'
152     pool:
153       vmImage: $(ubuntu_vm)
154     steps:
155       - script: |
156           cat << "EOF" > build.sh
157           cd $(work_dir)
158           git config --global user.name "Azure Pipelines"
159           git config --global user.email bmeng.cn@gmail.com
160           git config --global --add safe.directory $(work_dir)
161           export USER=azure
162           virtualenv -p /usr/bin/python3 /tmp/venv
163           . /tmp/venv/bin/activate
164           pip install -r test/py/requirements.txt
165           pip install -r tools/buildman/requirements.txt
166           export UBOOT_TRAVIS_BUILD_DIR=/tmp/sandbox_spl
167           export PYTHONPATH=${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc/pylibfdt
168           export PATH=${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc:${PATH}
169           ./tools/buildman/buildman -T0 -o ${UBOOT_TRAVIS_BUILD_DIR} -w --board sandbox_spl
170           set -ex
171           ./tools/binman/binman --toolpath ${UBOOT_TRAVIS_BUILD_DIR}/tools test
172           ./tools/buildman/buildman -t
173           ./tools/dtoc/dtoc -t
174           ./tools/patman/patman test
175           make O=${UBOOT_TRAVIS_BUILD_DIR} testconfig
176           EOF
177           cat build.sh
178           # We cannot use "container" like other jobs above, as buildman
179           # seems to hang forever with pre-configured "container" environment
180           docker run -v $PWD:$(work_dir) $(ci_runner_image) /bin/bash $(work_dir)/build.sh
181
182   - job: pylint
183     displayName: Check for any pylint regressions
184     pool:
185       vmImage: $(ubuntu_vm)
186     container:
187       image: $(ci_runner_image)
188       options: $(container_option)
189     steps:
190       - script: |
191           git config --global --add safe.directory $(work_dir)
192           export USER=azure
193           pip install -r test/py/requirements.txt
194           pip install -r tools/buildman/requirements.txt
195           pip install asteval pylint==2.12.2 pyopenssl
196           export PATH=${PATH}:~/.local/bin
197           echo "[MASTER]" >> .pylintrc
198           echo "load-plugins=pylint.extensions.docparams" >> .pylintrc
199           export UBOOT_TRAVIS_BUILD_DIR=/tmp/sandbox_spl
200           ./tools/buildman/buildman -T0 -o ${UBOOT_TRAVIS_BUILD_DIR} -w --board sandbox_spl
201           set -ex
202           pylint --version
203           export PYTHONPATH=${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc/pylibfdt
204           make pylint_err
205
206   - job: check_for_pre_schema_tags
207     displayName: 'Check for pre-schema driver model tags'
208     pool:
209       vmImage: $(ubuntu_vm)
210     container:
211       image: $(ci_runner_image)
212       options: $(container_option)
213     steps:
214       # If grep succeeds and finds a match the test fails as we should
215       # have no matches.
216       - script: git grep u-boot,dm- -- '*.dts*' && exit 1 || exit 0
217
218   - job: check_packing_of_python_tools
219     displayName: 'Check we can package the Python tools'
220     pool:
221       vmImage: $(ubuntu_vm)
222     container:
223       image: $(ci_runner_image)
224       options: $(container_option)
225     steps:
226       - script: make pip
227
228 - stage: test_py
229   jobs:
230   - job: test_py
231     displayName: 'test.py'
232     pool:
233       vmImage: $(ubuntu_vm)
234     strategy:
235       matrix:
236         sandbox:
237           TEST_PY_BD: "sandbox"
238         sandbox_clang:
239           TEST_PY_BD: "sandbox"
240           OVERRIDE: "-O clang-16"
241         sandbox_nolto:
242           TEST_PY_BD: "sandbox"
243           BUILD_ENV: "NO_LTO=1"
244         sandbox_spl:
245           TEST_PY_BD: "sandbox_spl"
246           TEST_PY_TEST_SPEC: "test_ofplatdata or test_handoff or test_spl"
247         sandbox_vpl:
248           TEST_PY_BD: "sandbox_vpl"
249           TEST_PY_TEST_SPEC: "vpl or test_spl"
250         sandbox_noinst:
251           TEST_PY_BD: "sandbox_noinst"
252           TEST_PY_TEST_SPEC: "test_ofplatdata or test_handoff or test_spl"
253         sandbox_flattree:
254           TEST_PY_BD: "sandbox_flattree"
255         sandbox_trace:
256           TEST_PY_BD: "sandbox"
257           BUILD_ENV: "FTRACE=1 NO_LTO=1"
258           TEST_PY_TEST_SPEC: "trace"
259           OVERRIDE: "-a CONFIG_TRACE=y -a CONFIG_TRACE_EARLY=y -a CONFIG_TRACE_EARLY_SIZE=0x01000000"
260         coreboot:
261           TEST_PY_BD: "coreboot"
262           TEST_PY_ID: "--id qemu"
263           TEST_PY_TEST_SPEC: "not sleep"
264         evb_ast2500:
265           TEST_PY_BD: "evb-ast2500"
266           TEST_PY_ID: "--id qemu"
267         evb_ast2600:
268           TEST_PY_BD: "evb-ast2600"
269           TEST_PY_ID: "--id qemu"
270         vexpress_ca9x4:
271           TEST_PY_BD: "vexpress_ca9x4"
272           TEST_PY_ID: "--id qemu"
273         integratorcp_cm926ejs:
274           TEST_PY_BD: "integratorcp_cm926ejs"
275           TEST_PY_ID: "--id qemu"
276           TEST_PY_TEST_SPEC: "not sleep"
277         qemu_arm:
278           TEST_PY_BD: "qemu_arm"
279           TEST_PY_TEST_SPEC: "not sleep"
280         qemu_arm64:
281           TEST_PY_BD: "qemu_arm64"
282           TEST_PY_TEST_SPEC: "not sleep"
283         qemu_m68k:
284           TEST_PY_BD: "M5208EVBE"
285           TEST_PY_ID: "--id qemu"
286           TEST_PY_TEST_SPEC: "not sleep and not efi"
287           OVERRIDE: "-a CONFIG_M68K_QEMU=y -a ~CONFIG_MCFTMR"
288         qemu_malta:
289           TEST_PY_BD: "malta"
290           TEST_PY_ID: "--id qemu"
291           TEST_PY_TEST_SPEC: "not sleep and not efi"
292         qemu_maltael:
293           TEST_PY_BD: "maltael"
294           TEST_PY_ID: "--id qemu"
295           TEST_PY_TEST_SPEC: "not sleep and not efi"
296         qemu_malta64:
297           TEST_PY_BD: "malta64"
298           TEST_PY_ID: "--id qemu"
299           TEST_PY_TEST_SPEC: "not sleep and not efi"
300         qemu_malta64el:
301           TEST_PY_BD: "malta64el"
302           TEST_PY_ID: "--id qemu"
303           TEST_PY_TEST_SPEC: "not sleep and not efi"
304         qemu_ppce500:
305           TEST_PY_BD: "qemu-ppce500"
306           TEST_PY_TEST_SPEC: "not sleep"
307         qemu_riscv32:
308           TEST_PY_BD: "qemu-riscv32"
309           TEST_PY_TEST_SPEC: "not sleep"
310         qemu_riscv64:
311           TEST_PY_BD: "qemu-riscv64"
312           TEST_PY_TEST_SPEC: "not sleep"
313         qemu_riscv32_spl:
314           TEST_PY_BD: "qemu-riscv32_spl"
315           TEST_PY_TEST_SPEC: "not sleep"
316         qemu_riscv64_spl:
317           TEST_PY_BD: "qemu-riscv64_spl"
318           TEST_PY_TEST_SPEC: "not sleep"
319         qemu_x86:
320           TEST_PY_BD: "qemu-x86"
321           TEST_PY_TEST_SPEC: "not sleep"
322         qemu_x86_64:
323           TEST_PY_BD: "qemu-x86_64"
324           TEST_PY_TEST_SPEC: "not sleep"
325         r2dplus_i82557c:
326           TEST_PY_BD: "r2dplus"
327           TEST_PY_ID: "--id i82557c_qemu"
328         r2dplus_pcnet:
329           TEST_PY_BD: "r2dplus"
330           TEST_PY_ID: "--id pcnet_qemu"
331         r2dplus_rtl8139:
332           TEST_PY_BD: "r2dplus"
333           TEST_PY_ID: "--id rtl8139_qemu"
334         r2dplus_tulip:
335           TEST_PY_BD: "r2dplus"
336           TEST_PY_ID: "--id tulip_qemu"
337         sifive_unleashed_sdcard:
338           TEST_PY_BD: "sifive_unleashed"
339           TEST_PY_ID: "--id sdcard_qemu"
340         sifive_unleashed_spi-nor:
341           TEST_PY_BD: "sifive_unleashed"
342           TEST_PY_ID: "--id spi-nor_qemu"
343         xilinx_zynq_virt:
344           TEST_PY_BD: "xilinx_zynq_virt"
345           TEST_PY_ID: "--id qemu"
346           TEST_PY_TEST_SPEC: "not sleep"
347         xilinx_versal_virt:
348           TEST_PY_BD: "xilinx_versal_virt"
349           TEST_PY_ID: "--id qemu"
350           TEST_PY_TEST_SPEC: "not sleep"
351         xtfpga:
352           TEST_PY_BD: "xtfpga"
353           TEST_PY_ID: "--id qemu"
354           TEST_PY_TEST_SPEC: "not sleep"
355     steps:
356       - script: |
357           cat << EOF > test.sh
358           set -ex
359           # make environment variables available as tests are running inside a container
360           export WORK_DIR="${WORK_DIR}"
361           export TEST_PY_BD="${TEST_PY_BD}"
362           export TEST_PY_ID="${TEST_PY_ID}"
363           export TEST_PY_TEST_SPEC="${TEST_PY_TEST_SPEC}"
364           export OVERRIDE="${OVERRIDE}"
365           export BUILD_ENV="${BUILD_ENV}"
366           EOF
367           cat << "EOF" >> test.sh
368           # the below corresponds to .gitlab-ci.yml "before_script"
369           cd ${WORK_DIR}
370           git config --global --add safe.directory ${WORK_DIR}
371           git clone --depth=1 https://source.denx.de/u-boot/u-boot-test-hooks /tmp/uboot-test-hooks
372           ln -s travis-ci /tmp/uboot-test-hooks/bin/`hostname`
373           ln -s travis-ci /tmp/uboot-test-hooks/py/`hostname`
374           grub-mkimage --prefix=\"\" -o ~/grub_x86.efi -O i386-efi normal  echo lsefimmap lsefi lsefisystab efinet tftp minicmd
375           grub-mkimage --prefix=\"\" -o ~/grub_x64.efi -O x86_64-efi normal  echo lsefimmap lsefi lsefisystab efinet tftp minicmd
376           if [[ "${TEST_PY_BD}" == "qemu-riscv32_spl" ]]; then
377               wget -O - https://github.com/riscv-software-src/opensbi/releases/download/v1.2/opensbi-1.2-rv-bin.tar.xz | tar -C /tmp -xJ;
378               export OPENSBI=/tmp/opensbi-1.2-rv-bin/share/opensbi/ilp32/generic/firmware/fw_dynamic.bin;
379           fi
380           if [[ "${TEST_PY_BD}" == "qemu-riscv64_spl" ]] || [[ "${TEST_PY_BD}" == "sifive_unleashed" ]]; then
381               wget -O - https://github.com/riscv-software-src/opensbi/releases/download/v1.2/opensbi-1.2-rv-bin.tar.xz | tar -C /tmp -xJ;
382               export OPENSBI=/tmp/opensbi-1.2-rv-bin/share/opensbi/lp64/generic/firmware/fw_dynamic.bin;
383           fi
384           # the below corresponds to .gitlab-ci.yml "script"
385           cd ${WORK_DIR}
386           export UBOOT_TRAVIS_BUILD_DIR=/tmp/${TEST_PY_BD};
387           if [ -n "${BUILD_ENV}" ]; then
388               export ${BUILD_ENV};
389           fi
390           pip install -r tools/buildman/requirements.txt
391           tools/buildman/buildman -o ${UBOOT_TRAVIS_BUILD_DIR} -w -E -W -e --board ${TEST_PY_BD} ${OVERRIDE}
392           cp ~/grub_x86.efi ${UBOOT_TRAVIS_BUILD_DIR}/
393           cp ~/grub_x64.efi ${UBOOT_TRAVIS_BUILD_DIR}/
394           cp /opt/grub/grubriscv64.efi ${UBOOT_TRAVIS_BUILD_DIR}/grub_riscv64.efi
395           cp /opt/grub/grubaa64.efi ${UBOOT_TRAVIS_BUILD_DIR}/grub_arm64.efi
396           cp /opt/grub/grubarm.efi ${UBOOT_TRAVIS_BUILD_DIR}/grub_arm.efi
397           # create sdcard / spi-nor images for sifive unleashed using genimage
398           if [[ "${TEST_PY_BD}" == "sifive_unleashed" ]]; then
399               mkdir -p root;
400               cp ${UBOOT_TRAVIS_BUILD_DIR}/spl/u-boot-spl.bin .;
401               cp ${UBOOT_TRAVIS_BUILD_DIR}/u-boot.itb .;
402               rm -rf tmp;
403               genimage --inputpath . --config board/sifive/unleashed/genimage_sdcard.cfg;
404               cp images/sdcard.img ${UBOOT_TRAVIS_BUILD_DIR}/;
405               rm -rf tmp;
406               genimage --inputpath . --config board/sifive/unleashed/genimage_spi-nor.cfg;
407               cp images/spi-nor.img ${UBOOT_TRAVIS_BUILD_DIR}/;
408           fi
409           if [[ "${TEST_PY_BD}" == "coreboot" ]]; then
410               wget -O - "https://drive.google.com/uc?id=1uJ2VkUQ8czWFZmhJQ90Tp8V_zrJ6BrBH&export=download" |xz -dc >${UBOOT_TRAVIS_BUILD_DIR}/coreboot.rom;
411               wget -O - "https://drive.google.com/uc?id=149Cz-5SZXHNKpi9xg6R_5XITWohu348y&export=download" >cbfstool;
412               chmod a+x cbfstool;
413               ./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;
414           fi
415           virtualenv -p /usr/bin/python3 /tmp/venv
416           . /tmp/venv/bin/activate
417           pip install -r test/py/requirements.txt
418           pip install pytest-azurepipelines
419           export PATH=/opt/qemu/bin:/tmp/uboot-test-hooks/bin:${PATH};
420           export PYTHONPATH=/tmp/uboot-test-hooks/py/travis-ci;
421           # "${var:+"-k $var"}" expands to "" if $var is empty, "-k $var" if not
422           ./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";
423           # the below corresponds to .gitlab-ci.yml "after_script"
424           rm -rf /tmp/uboot-test-hooks /tmp/venv
425           EOF
426           cat test.sh
427           # make current directory writeable to uboot user inside the container
428           # as sandbox testing need create files like spi flash images, etc.
429           # (TODO: clean up this in the future)
430           chmod 777 .
431           # Filesystem tests need extra docker args to run
432           set --
433           if [[ "${TEST_PY_BD}" == "sandbox" ]]; then
434               # mount -o loop needs the loop devices
435               if modprobe loop; then
436                   for d in $(find /dev -maxdepth 1 -name 'loop*'); do
437                       set -- "$@" --device $d:$d
438                   done
439               fi
440               # Needed for mount syscall (for guestmount as well)
441               set -- "$@" --cap-add SYS_ADMIN
442               # Default apparmor profile denies mounts
443               set -- "$@" --security-opt apparmor=unconfined
444           fi
445           # Some tests using libguestfs-tools need the fuse device to run
446           docker run "$@" --device /dev/fuse:/dev/fuse -v $PWD:$(work_dir) $(ci_runner_image) /bin/bash $(work_dir)/test.sh
447         retryCountOnTaskFailure: 2 # QEMU may be too slow, etc.
448
449 - stage: world_build
450   jobs:
451   - job: build_the_world
452     timeoutInMinutes: 0 # Use the maximum allowed
453     displayName: 'Build the World'
454     pool:
455       vmImage: $(ubuntu_vm)
456     strategy:
457       # Use almost the same target division in .travis.yml, only merged
458       # 3 small build jobs (arc/microblaze/xtensa) into one.
459       matrix:
460         arc_nios2_m68k_microblaze_xtensa:
461           BUILDMAN: "arc nios2 microblaze m68k xtensa"
462         amlogic:
463           BUILDMAN: "amlogic"
464         arm11_arm7_arm920t_arm946es:
465           BUILDMAN: "arm11 arm7 arm920t arm946es"
466         arm926ejs:
467           BUILDMAN: "arm926ejs -x freescale,siemens,at91,kirkwood,omap"
468         at91_non_armv7:
469           BUILDMAN: "at91 -x armv7"
470         at91_non_arm926ejs:
471           BUILDMAN: "at91 -x arm926ejs"
472         boundary_engicam_toradex:
473           BUILDMAN: "boundary engicam toradex"
474         arm_bcm:
475           BUILDMAN: "bcm -x mips"
476         nxp_arm32:
477           BUILDMAN: "freescale -x powerpc,m68k,aarch64,ls101,ls102,ls104,ls108,ls20,lx216"
478         nxp_ls101x_ls108x:
479           BUILDMAN: "freescale&ls101 freescale&ls108"
480         nxp_ls102x:
481           BUILDMAN: "freescale&ls102 -x keymile"
482         nxp_ls104x:
483           BUILDMAN: "freescale&ls104"
484         nxp_ls20xx_lx216x:
485           BUILDMAN: "freescale&ls20 freescale&lx216"
486         imx6:
487           BUILDMAN: "mx6 -x boundary,engicam,freescale,technexion,toradex"
488         imx:
489           BUILDMAN: "mx -x mx6,imx8,freescale,technexion,toradex"
490         imx8_imx9:
491           BUILDMAN: "imx8 imx9 -x engicam,technexion,toradex"
492         keymiles_siemens_technexion:
493           BUILDMAN: "keymile siemens technexion"
494         keystone2_keystone3:
495           BUILDMAN: "k2 k3 -x siemens,toradex"
496         sandbox_asan:
497           BUILDMAN: "sandbox"
498           OVERRIDE: "-a ASAN"
499         sandbox_clang_asan:
500           BUILDMAN: "sandbox"
501           OVERRIDE: "-O clang-16 -a ASAN"
502         samsung_socfpga_renesas:
503           BUILDMAN: "samsung socfpga renesas"
504         sun4i_sun9i:
505           BUILDMAN: "sun4i sun9i"
506         sun5i_sun6i:
507           BUILDMAN: "sun5i sun6i"
508         sun7i:
509           BUILDMAN: "sun7i"
510         sun8i:
511           BUILDMAN: "sun8i"
512         sun50i:
513           BUILDMAN: "sun50i"
514         arm_catch_all:
515           BUILDMAN: "arm -x arm11,arm7,arm9,aarch64,at91,bcm,freescale,kirkwood,mvebu,renesas,siemens,tegra,uniphier,mx,samsung,sunxi,am33xx,omap,toradex,socfpga,k2,k3,zynq"
516         sandbox_x86:
517           BUILDMAN: "sandbox x86"
518         kirkwood_mvebu_uniphier:
519           BUILDMAN: "kirkwood mvebu uniphier"
520         mips:
521           BUILDMAN: "mips"
522         powerpc:
523           BUILDMAN: "powerpc -x keymile"
524         tegra:
525           BUILDMAN: "tegra -x toradex"
526         am33xx_omap:
527           BUILDMAN: "am33xx omap -x siemens"
528         aarch64_catch_all:
529           BUILDMAN: "aarch64 -x amlogic,bcm,imx8,imx9,k3,tegra,ls1,ls2,lx216,mvebu,uniphier,renesas,sunxi,samsung,socfpga,rk,versal,zynq"
530         rk_non_rockchip_64bit:
531           BUILDMAN: "rk&aarch64 -x rockchip"
532         rk_rockchip_64bit:
533           BUILDMAN: "rk&aarch64&rockchip"
534         zynq_zynqmp_versal:
535           BUILDMAN: "zynq&armv7 versal zynqmp&aarch64"
536         riscv:
537           BUILDMAN: "riscv"
538     steps:
539       - script: |
540           cat << EOF > build.sh
541           set -ex
542           cd ${WORK_DIR}
543           # make environment variables available as tests are running inside a container
544           export BUILDMAN="${BUILDMAN}"
545           git config --global --add safe.directory ${WORK_DIR}
546           pip install -r tools/buildman/requirements.txt
547           EOF
548           cat << "EOF" >> build.sh
549           if [[ "${BUILDMAN}" != "" ]]; then
550               ret=0;
551               tools/buildman/buildman -o /tmp -PEWM ${BUILDMAN} ${OVERRIDE} || ret=$?;
552               if [[ $ret -ne 0 ]]; then
553                   tools/buildman/buildman -o /tmp -seP ${BUILDMAN};
554                   exit $ret;
555               fi;
556           fi
557           EOF
558           cat build.sh
559           docker run -v $PWD:$(work_dir) $(ci_runner_image) /bin/bash $(work_dir)/build.sh