]> git.ipfire.org Git - thirdparty/u-boot.git/blob - .azure-pipelines.yml
trace: Add a test
[thirdparty/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-20221130-11Jan2023
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
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 -R
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 export UBOOT_TRAVIS_BUILD_DIR=/tmp/sandbox_spl
166 export PYTHONPATH=${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc/pylibfdt
167 export PATH=${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc:${PATH}
168 ./tools/buildman/buildman -T0 -o ${UBOOT_TRAVIS_BUILD_DIR} -w --board sandbox_spl
169 set -ex
170 ./tools/binman/binman --toolpath ${UBOOT_TRAVIS_BUILD_DIR}/tools test
171 ./tools/buildman/buildman -t
172 ./tools/dtoc/dtoc -t
173 ./tools/patman/patman test
174 make O=${UBOOT_TRAVIS_BUILD_DIR} testconfig
175 EOF
176 cat build.sh
177 # We cannot use "container" like other jobs above, as buildman
178 # seems to hang forever with pre-configured "container" environment
179 docker run -v $PWD:$(work_dir) $(ci_runner_image) /bin/bash $(work_dir)/build.sh
180
181 - job: nokia_rx51_test
182 displayName: 'Run tests for Nokia RX-51 (aka N900)'
183 pool:
184 vmImage: $(ubuntu_vm)
185 container:
186 image: $(ci_runner_image)
187 options: $(container_option)
188 steps:
189 - script: |
190 export PATH=/opt/gcc-12.2.0-nolibc/arm-linux-gnueabi/bin:$PATH
191 test/nokia_rx51_test.sh
192
193 - job: pylint
194 displayName: Check for any pylint regressions
195 pool:
196 vmImage: $(ubuntu_vm)
197 container:
198 image: $(ci_runner_image)
199 options: $(container_option)
200 steps:
201 - script: |
202 git config --global --add safe.directory $(work_dir)
203 export USER=azure
204 pip install -r test/py/requirements.txt
205 pip install asteval pylint==2.12.2 pyopenssl
206 export PATH=${PATH}:~/.local/bin
207 echo "[MASTER]" >> .pylintrc
208 echo "load-plugins=pylint.extensions.docparams" >> .pylintrc
209 export UBOOT_TRAVIS_BUILD_DIR=/tmp/sandbox_spl
210 ./tools/buildman/buildman -T0 -o ${UBOOT_TRAVIS_BUILD_DIR} -w --board sandbox_spl
211 set -ex
212 pylint --version
213 export PYTHONPATH=${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc/pylibfdt
214 make pylint_err
215
216 - stage: test_py
217 jobs:
218 - job: test_py
219 displayName: 'test.py'
220 pool:
221 vmImage: $(ubuntu_vm)
222 strategy:
223 matrix:
224 sandbox:
225 TEST_PY_BD: "sandbox"
226 sandbox_clang:
227 TEST_PY_BD: "sandbox"
228 OVERRIDE: "-O clang-14"
229 sandbox_nolto:
230 TEST_PY_BD: "sandbox"
231 BUILD_ENV: "NO_LTO=1"
232 sandbox_spl:
233 TEST_PY_BD: "sandbox_spl"
234 TEST_PY_TEST_SPEC: "test_ofplatdata or test_handoff or test_spl"
235 sandbox_vpl:
236 TEST_PY_BD: "sandbox_vpl"
237 TEST_PY_TEST_SPEC: "test_vpl_help or test_spl"
238 sandbox_noinst:
239 TEST_PY_BD: "sandbox_noinst"
240 TEST_PY_TEST_SPEC: "test_ofplatdata or test_handoff or test_spl"
241 sandbox_flattree:
242 TEST_PY_BD: "sandbox_flattree"
243 sandbox_trace:
244 TEST_PY_BD: "sandbox"
245 BUILD_ENV: "FTRACE=1 NO_LTO=1"
246 TEST_PY_TEST_SPEC: "trace"
247 OVERRIDE: "-a CONFIG_TRACE=y -a CONFIG_TRACE_EARLY=y -a CONFIG_TRACE_EARLY_SIZE=0x01000000"
248 coreboot:
249 TEST_PY_BD: "coreboot"
250 TEST_PY_ID: "--id qemu"
251 TEST_PY_TEST_SPEC: "not sleep"
252 evb_ast2500:
253 TEST_PY_BD: "evb-ast2500"
254 TEST_PY_ID: "--id qemu"
255 evb_ast2600:
256 TEST_PY_BD: "evb-ast2600"
257 TEST_PY_ID: "--id qemu"
258 vexpress_ca9x4:
259 TEST_PY_BD: "vexpress_ca9x4"
260 TEST_PY_ID: "--id qemu"
261 integratorcp_cm926ejs:
262 TEST_PY_BD: "integratorcp_cm926ejs"
263 TEST_PY_ID: "--id qemu"
264 TEST_PY_TEST_SPEC: "not sleep"
265 qemu_arm:
266 TEST_PY_BD: "qemu_arm"
267 TEST_PY_TEST_SPEC: "not sleep"
268 qemu_arm64:
269 TEST_PY_BD: "qemu_arm64"
270 TEST_PY_TEST_SPEC: "not sleep"
271 qemu_malta:
272 TEST_PY_BD: "malta"
273 TEST_PY_ID: "--id qemu"
274 TEST_PY_TEST_SPEC: "not sleep and not efi"
275 qemu_maltael:
276 TEST_PY_BD: "maltael"
277 TEST_PY_ID: "--id qemu"
278 TEST_PY_TEST_SPEC: "not sleep and not efi"
279 qemu_malta64:
280 TEST_PY_BD: "malta64"
281 TEST_PY_ID: "--id qemu"
282 TEST_PY_TEST_SPEC: "not sleep and not efi"
283 qemu_malta64el:
284 TEST_PY_BD: "malta64el"
285 TEST_PY_ID: "--id qemu"
286 TEST_PY_TEST_SPEC: "not sleep and not efi"
287 qemu_ppce500:
288 TEST_PY_BD: "qemu-ppce500"
289 TEST_PY_TEST_SPEC: "not sleep"
290 qemu_riscv32:
291 TEST_PY_BD: "qemu-riscv32"
292 TEST_PY_TEST_SPEC: "not sleep"
293 qemu_riscv64:
294 TEST_PY_BD: "qemu-riscv64"
295 TEST_PY_TEST_SPEC: "not sleep"
296 qemu_riscv32_spl:
297 TEST_PY_BD: "qemu-riscv32_spl"
298 TEST_PY_TEST_SPEC: "not sleep"
299 qemu_riscv64_spl:
300 TEST_PY_BD: "qemu-riscv64_spl"
301 TEST_PY_TEST_SPEC: "not sleep"
302 qemu_x86:
303 TEST_PY_BD: "qemu-x86"
304 TEST_PY_TEST_SPEC: "not sleep"
305 qemu_x86_64:
306 TEST_PY_BD: "qemu-x86_64"
307 TEST_PY_TEST_SPEC: "not sleep"
308 r2dplus_i82557c:
309 TEST_PY_BD: "r2dplus"
310 TEST_PY_ID: "--id i82557c_qemu"
311 r2dplus_pcnet:
312 TEST_PY_BD: "r2dplus"
313 TEST_PY_ID: "--id pcnet_qemu"
314 r2dplus_rtl8139:
315 TEST_PY_BD: "r2dplus"
316 TEST_PY_ID: "--id rtl8139_qemu"
317 r2dplus_tulip:
318 TEST_PY_BD: "r2dplus"
319 TEST_PY_ID: "--id tulip_qemu"
320 sifive_unleashed_sdcard:
321 TEST_PY_BD: "sifive_unleashed"
322 TEST_PY_ID: "--id sdcard_qemu"
323 sifive_unleashed_spi-nor:
324 TEST_PY_BD: "sifive_unleashed"
325 TEST_PY_ID: "--id spi-nor_qemu"
326 xilinx_zynq_virt:
327 TEST_PY_BD: "xilinx_zynq_virt"
328 TEST_PY_ID: "--id qemu"
329 TEST_PY_TEST_SPEC: "not sleep"
330 xilinx_versal_virt:
331 TEST_PY_BD: "xilinx_versal_virt"
332 TEST_PY_ID: "--id qemu"
333 TEST_PY_TEST_SPEC: "not sleep"
334 xtfpga:
335 TEST_PY_BD: "xtfpga"
336 TEST_PY_ID: "--id qemu"
337 TEST_PY_TEST_SPEC: "not sleep"
338 steps:
339 - script: |
340 cat << EOF > test.sh
341 set -ex
342 # make environment variables available as tests are running inside a container
343 export WORK_DIR="${WORK_DIR}"
344 export TEST_PY_BD="${TEST_PY_BD}"
345 export TEST_PY_ID="${TEST_PY_ID}"
346 export TEST_PY_TEST_SPEC="${TEST_PY_TEST_SPEC}"
347 export OVERRIDE="${OVERRIDE}"
348 export BUILD_ENV="${BUILD_ENV}"
349 EOF
350 cat << "EOF" >> test.sh
351 # the below corresponds to .gitlab-ci.yml "before_script"
352 cd ${WORK_DIR}
353 git config --global --add safe.directory ${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 if [ -n "${BUILD_ENV}" ]; then
371 export ${BUILD_ENV};
372 fi
373 tools/buildman/buildman -o ${UBOOT_TRAVIS_BUILD_DIR} -w -E -W -e --board ${TEST_PY_BD} ${OVERRIDE}
374 cp ~/grub_x86.efi ${UBOOT_TRAVIS_BUILD_DIR}/
375 cp ~/grub_x64.efi ${UBOOT_TRAVIS_BUILD_DIR}/
376 cp /opt/grub/grubriscv64.efi ${UBOOT_TRAVIS_BUILD_DIR}/grub_riscv64.efi
377 cp /opt/grub/grubaa64.efi ${UBOOT_TRAVIS_BUILD_DIR}/grub_arm64.efi
378 cp /opt/grub/grubarm.efi ${UBOOT_TRAVIS_BUILD_DIR}/grub_arm.efi
379 # create sdcard / spi-nor images for sifive unleashed using genimage
380 if [[ "${TEST_PY_BD}" == "sifive_unleashed" ]]; then
381 mkdir -p root;
382 cp ${UBOOT_TRAVIS_BUILD_DIR}/spl/u-boot-spl.bin .;
383 cp ${UBOOT_TRAVIS_BUILD_DIR}/u-boot.itb .;
384 rm -rf tmp;
385 genimage --inputpath . --config board/sifive/unleashed/genimage_sdcard.cfg;
386 cp images/sdcard.img ${UBOOT_TRAVIS_BUILD_DIR}/;
387 rm -rf tmp;
388 genimage --inputpath . --config board/sifive/unleashed/genimage_spi-nor.cfg;
389 cp images/spi-nor.img ${UBOOT_TRAVIS_BUILD_DIR}/;
390 fi
391 if [[ "${TEST_PY_BD}" == "coreboot" ]]; then
392 wget -O - "https://drive.google.com/uc?id=1x6nrtWIyIRPLS2cQBwYTnT2TbOI8UjmM&export=download" |xz -dc >${UBOOT_TRAVIS_BUILD_DIR}/coreboot.rom;
393 wget -O - "https://drive.google.com/uc?id=149Cz-5SZXHNKpi9xg6R_5XITWohu348y&export=download" >cbfstool;
394 chmod a+x cbfstool;
395 ./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;
396 fi
397 virtualenv -p /usr/bin/python3 /tmp/venv
398 . /tmp/venv/bin/activate
399 pip install -r test/py/requirements.txt
400 export PATH=/opt/qemu/bin:/tmp/uboot-test-hooks/bin:${PATH};
401 export PYTHONPATH=/tmp/uboot-test-hooks/py/travis-ci;
402 # "${var:+"-k $var"}" expands to "" if $var is empty, "-k $var" if not
403 ./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";
404 # the below corresponds to .gitlab-ci.yml "after_script"
405 rm -rf /tmp/uboot-test-hooks /tmp/venv
406 EOF
407 cat test.sh
408 # make current directory writeable to uboot user inside the container
409 # as sandbox testing need create files like spi flash images, etc.
410 # (TODO: clean up this in the future)
411 chmod 777 .
412 # Filesystem tests need extra docker args to run
413 set --
414 if [[ "${TEST_PY_BD}" == "sandbox" ]]; then
415 # mount -o loop needs the loop devices
416 if modprobe loop; then
417 for d in $(find /dev -maxdepth 1 -name 'loop*'); do
418 set -- "$@" --device $d:$d
419 done
420 fi
421 # Needed for mount syscall (for guestmount as well)
422 set -- "$@" --cap-add SYS_ADMIN
423 # Default apparmor profile denies mounts
424 set -- "$@" --security-opt apparmor=unconfined
425 fi
426 # Some tests using libguestfs-tools need the fuse device to run
427 docker run "$@" --device /dev/fuse:/dev/fuse -v $PWD:$(work_dir) $(ci_runner_image) /bin/bash $(work_dir)/test.sh
428
429 - stage: world_build
430 jobs:
431 - job: build_the_world
432 displayName: 'Build the World'
433 pool:
434 vmImage: $(ubuntu_vm)
435 strategy:
436 # Use almost the same target division in .travis.yml, only merged
437 # 3 small build jobs (arc/microblaze/xtensa) into one.
438 matrix:
439 arc_microblaze_xtensa:
440 BUILDMAN: "arc microblaze xtensa"
441 amlogic:
442 BUILDMAN: "amlogic"
443 arm11_arm7_arm920t_arm946es:
444 BUILDMAN: "arm11 arm7 arm920t arm946es"
445 arm926ejs:
446 BUILDMAN: "arm926ejs -x freescale,siemens,at91,kirkwood,omap"
447 at91_non_armv7:
448 BUILDMAN: "at91 -x armv7"
449 at91_non_arm926ejs:
450 BUILDMAN: "at91 -x arm926ejs"
451 boundary_engicam_toradex:
452 BUILDMAN: "boundary engicam toradex"
453 arm_bcm:
454 BUILDMAN: "bcm -x mips"
455 nxp_arm32:
456 BUILDMAN: "freescale -x powerpc,m68k,aarch64,ls101,ls102,ls104,ls108,ls20,lx216"
457 nxp_ls101x:
458 BUILDMAN: "freescale&ls101"
459 nxp_ls102x:
460 BUILDMAN: "freescale&ls102"
461 nxp_ls104x:
462 BUILDMAN: "freescale&ls104"
463 nxp_ls108x:
464 BUILDMAN: "freescale&ls108"
465 nxp_ls20xx:
466 BUILDMAN: "freescale&ls20"
467 nxp_lx216x:
468 BUILDMAN: "freescale&lx216"
469 imx6:
470 BUILDMAN: "mx6 -x boundary,engicam,freescale,technexion,toradex"
471 imx:
472 BUILDMAN: "mx -x mx6,imx8,freescale,technexion,toradex"
473 imx8_imx9:
474 BUILDMAN: "imx8 imx9"
475 keystone2_keystone3:
476 BUILDMAN: "k2 k3"
477 sandbox_asan:
478 BUILDMAN: "sandbox"
479 OVERRIDE: "-a ASAN"
480 sandbox_clang_asan:
481 BUILDMAN: "sandbox"
482 OVERRIDE: "-O clang-14 -a ASAN"
483 samsung_socfpga:
484 BUILDMAN: "samsung socfpga"
485 sun4i:
486 BUILDMAN: "sun4i"
487 sun5i:
488 BUILDMAN: "sun5i"
489 sun6i:
490 BUILDMAN: "sun6i"
491 sun7i:
492 BUILDMAN: "sun7i"
493 sun8i_32bit:
494 BUILDMAN: "sun8i&armv7"
495 sun8i_64bit:
496 BUILDMAN: "sun8i&aarch64"
497 sun9i:
498 BUILDMAN: "sun9i"
499 sun50i:
500 BUILDMAN: "sun50i"
501 arm_catch_all:
502 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"
503 sandbox_x86:
504 BUILDMAN: "sandbox x86"
505 technexion:
506 BUILDMAN: "technexion"
507 kirkwood:
508 BUILDMAN: "kirkwood"
509 mvebu:
510 BUILDMAN: "mvebu"
511 m68k:
512 BUILDMAN: "m68k"
513 mips:
514 BUILDMAN: "mips"
515 powerpc:
516 BUILDMAN: "powerpc"
517 siemens:
518 BUILDMAN: "siemens"
519 tegra:
520 BUILDMAN: "tegra -x toradex"
521 am33xx_no_siemens:
522 BUILDMAN: "am33xx -x siemens"
523 omap:
524 BUILDMAN: "omap"
525 uniphier:
526 BUILDMAN: "uniphier"
527 aarch64_catch_all:
528 BUILDMAN: "aarch64 -x amlogic,bcm,imx8,imx9,k3,tegra,ls1,ls2,lx216,mvebu,uniphier,renesas,sunxi,samsung,socfpga,rk,versal,zynq"
529 rockchip_32bit:
530 BUILDMAN: "rk -x aarch64"
531 rockchip_64bit:
532 BUILDMAN: "rk&aarch64"
533 renesas:
534 BUILDMAN: "renesas"
535 zynq:
536 BUILDMAN: "zynq&armv7"
537 zynqmp_versal:
538 BUILDMAN: "versal|zynqmp&aarch64"
539 riscv:
540 BUILDMAN: "riscv"
541 steps:
542 - script: |
543 cat << EOF > build.sh
544 set -ex
545 cd ${WORK_DIR}
546 # make environment variables available as tests are running inside a container
547 export BUILDMAN="${BUILDMAN}"
548 git config --global --add safe.directory ${WORK_DIR}
549 EOF
550 cat << "EOF" >> build.sh
551 if [[ "${BUILDMAN}" != "" ]]; then
552 ret=0;
553 tools/buildman/buildman -o /tmp -PEWM ${BUILDMAN} ${OVERRIDE} || ret=$?;
554 if [[ $ret -ne 0 ]]; then
555 tools/buildman/buildman -o /tmp -seP ${BUILDMAN};
556 exit $ret;
557 fi;
558 fi
559 EOF
560 cat build.sh
561 docker run -v $PWD:$(work_dir) $(ci_runner_image) /bin/bash $(work_dir)/build.sh