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