]> git.ipfire.org Git - thirdparty/u-boot.git/blob - .azure-pipelines.yml
CI: Update test/nokia_rx51_test.sh to use prebuilt images
[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-20230126-17Feb2023
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 mkdir nokia_rx51_tmp
191 ln -s /opt/nokia/u-boot-gen-combined nokia_rx51_tmp/
192 ln -s /opt/nokia/qemu-n900.tar.gz nokia_rx51_tmp/
193 ln -s /opt/nokia/kernel_2.6.28-20103103+0m5_armel.deb nokia_rx51_tmp/
194 ln -s /opt/nokia/libc6_2.5.1-1eglibc27+0m5_armel.deb nokia_rx51_tmp/
195 ln -s /opt/nokia/busybox_1.10.2.legal-1osso30+0m5_armel.deb nokia_rx51_tmp/
196 ln -s /opt/nokia/qemu-system-arm nokia_rx51_tmp/
197 export PATH=/opt/gcc-12.2.0-nolibc/arm-linux-gnueabi/bin:$PATH
198 test/nokia_rx51_test.sh
199
200 - job: pylint
201 displayName: Check for any pylint regressions
202 pool:
203 vmImage: $(ubuntu_vm)
204 container:
205 image: $(ci_runner_image)
206 options: $(container_option)
207 steps:
208 - script: |
209 git config --global --add safe.directory $(work_dir)
210 export USER=azure
211 pip install -r test/py/requirements.txt
212 pip install asteval pylint==2.12.2 pyopenssl
213 export PATH=${PATH}:~/.local/bin
214 echo "[MASTER]" >> .pylintrc
215 echo "load-plugins=pylint.extensions.docparams" >> .pylintrc
216 export UBOOT_TRAVIS_BUILD_DIR=/tmp/sandbox_spl
217 ./tools/buildman/buildman -T0 -o ${UBOOT_TRAVIS_BUILD_DIR} -w --board sandbox_spl
218 set -ex
219 pylint --version
220 export PYTHONPATH=${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc/pylibfdt
221 make pylint_err
222
223 - job: check_for_pre_schema_tags
224 displayName: 'Check for pre-schema driver model tags'
225 pool:
226 vmImage: $(ubuntu_vm)
227 container:
228 image: $(ci_runner_image)
229 options: $(container_option)
230 steps:
231 # If grep succeeds and finds a match the test fails as we should
232 # have no matches.
233 - script: git grep u-boot,dm- -- '*.dts*' && exit 1 || exit 0
234
235 - stage: test_py
236 jobs:
237 - job: test_py
238 displayName: 'test.py'
239 pool:
240 vmImage: $(ubuntu_vm)
241 strategy:
242 matrix:
243 sandbox:
244 TEST_PY_BD: "sandbox"
245 sandbox_clang:
246 TEST_PY_BD: "sandbox"
247 OVERRIDE: "-O clang-14"
248 sandbox_nolto:
249 TEST_PY_BD: "sandbox"
250 BUILD_ENV: "NO_LTO=1"
251 sandbox_spl:
252 TEST_PY_BD: "sandbox_spl"
253 TEST_PY_TEST_SPEC: "test_ofplatdata or test_handoff or test_spl"
254 sandbox_vpl:
255 TEST_PY_BD: "sandbox_vpl"
256 TEST_PY_TEST_SPEC: "test_vpl_help or test_spl"
257 sandbox_noinst:
258 TEST_PY_BD: "sandbox_noinst"
259 TEST_PY_TEST_SPEC: "test_ofplatdata or test_handoff or test_spl"
260 sandbox_flattree:
261 TEST_PY_BD: "sandbox_flattree"
262 sandbox_trace:
263 TEST_PY_BD: "sandbox"
264 BUILD_ENV: "FTRACE=1 NO_LTO=1"
265 TEST_PY_TEST_SPEC: "trace"
266 OVERRIDE: "-a CONFIG_TRACE=y -a CONFIG_TRACE_EARLY=y -a CONFIG_TRACE_EARLY_SIZE=0x01000000"
267 coreboot:
268 TEST_PY_BD: "coreboot"
269 TEST_PY_ID: "--id qemu"
270 TEST_PY_TEST_SPEC: "not sleep"
271 evb_ast2500:
272 TEST_PY_BD: "evb-ast2500"
273 TEST_PY_ID: "--id qemu"
274 evb_ast2600:
275 TEST_PY_BD: "evb-ast2600"
276 TEST_PY_ID: "--id qemu"
277 vexpress_ca9x4:
278 TEST_PY_BD: "vexpress_ca9x4"
279 TEST_PY_ID: "--id qemu"
280 integratorcp_cm926ejs:
281 TEST_PY_BD: "integratorcp_cm926ejs"
282 TEST_PY_ID: "--id qemu"
283 TEST_PY_TEST_SPEC: "not sleep"
284 qemu_arm:
285 TEST_PY_BD: "qemu_arm"
286 TEST_PY_TEST_SPEC: "not sleep"
287 qemu_arm64:
288 TEST_PY_BD: "qemu_arm64"
289 TEST_PY_TEST_SPEC: "not sleep"
290 qemu_malta:
291 TEST_PY_BD: "malta"
292 TEST_PY_ID: "--id qemu"
293 TEST_PY_TEST_SPEC: "not sleep and not efi"
294 qemu_maltael:
295 TEST_PY_BD: "maltael"
296 TEST_PY_ID: "--id qemu"
297 TEST_PY_TEST_SPEC: "not sleep and not efi"
298 qemu_malta64:
299 TEST_PY_BD: "malta64"
300 TEST_PY_ID: "--id qemu"
301 TEST_PY_TEST_SPEC: "not sleep and not efi"
302 qemu_malta64el:
303 TEST_PY_BD: "malta64el"
304 TEST_PY_ID: "--id qemu"
305 TEST_PY_TEST_SPEC: "not sleep and not efi"
306 qemu_ppce500:
307 TEST_PY_BD: "qemu-ppce500"
308 TEST_PY_TEST_SPEC: "not sleep"
309 qemu_riscv32:
310 TEST_PY_BD: "qemu-riscv32"
311 TEST_PY_TEST_SPEC: "not sleep"
312 qemu_riscv64:
313 TEST_PY_BD: "qemu-riscv64"
314 TEST_PY_TEST_SPEC: "not sleep"
315 qemu_riscv32_spl:
316 TEST_PY_BD: "qemu-riscv32_spl"
317 TEST_PY_TEST_SPEC: "not sleep"
318 qemu_riscv64_spl:
319 TEST_PY_BD: "qemu-riscv64_spl"
320 TEST_PY_TEST_SPEC: "not sleep"
321 qemu_x86:
322 TEST_PY_BD: "qemu-x86"
323 TEST_PY_TEST_SPEC: "not sleep"
324 qemu_x86_64:
325 TEST_PY_BD: "qemu-x86_64"
326 TEST_PY_TEST_SPEC: "not sleep"
327 r2dplus_i82557c:
328 TEST_PY_BD: "r2dplus"
329 TEST_PY_ID: "--id i82557c_qemu"
330 r2dplus_pcnet:
331 TEST_PY_BD: "r2dplus"
332 TEST_PY_ID: "--id pcnet_qemu"
333 r2dplus_rtl8139:
334 TEST_PY_BD: "r2dplus"
335 TEST_PY_ID: "--id rtl8139_qemu"
336 r2dplus_tulip:
337 TEST_PY_BD: "r2dplus"
338 TEST_PY_ID: "--id tulip_qemu"
339 sifive_unleashed_sdcard:
340 TEST_PY_BD: "sifive_unleashed"
341 TEST_PY_ID: "--id sdcard_qemu"
342 sifive_unleashed_spi-nor:
343 TEST_PY_BD: "sifive_unleashed"
344 TEST_PY_ID: "--id spi-nor_qemu"
345 xilinx_zynq_virt:
346 TEST_PY_BD: "xilinx_zynq_virt"
347 TEST_PY_ID: "--id qemu"
348 TEST_PY_TEST_SPEC: "not sleep"
349 xilinx_versal_virt:
350 TEST_PY_BD: "xilinx_versal_virt"
351 TEST_PY_ID: "--id qemu"
352 TEST_PY_TEST_SPEC: "not sleep"
353 xtfpga:
354 TEST_PY_BD: "xtfpga"
355 TEST_PY_ID: "--id qemu"
356 TEST_PY_TEST_SPEC: "not sleep"
357 steps:
358 - script: |
359 cat << EOF > test.sh
360 set -ex
361 # make environment variables available as tests are running inside a container
362 export WORK_DIR="${WORK_DIR}"
363 export TEST_PY_BD="${TEST_PY_BD}"
364 export TEST_PY_ID="${TEST_PY_ID}"
365 export TEST_PY_TEST_SPEC="${TEST_PY_TEST_SPEC}"
366 export OVERRIDE="${OVERRIDE}"
367 export BUILD_ENV="${BUILD_ENV}"
368 EOF
369 cat << "EOF" >> test.sh
370 # the below corresponds to .gitlab-ci.yml "before_script"
371 cd ${WORK_DIR}
372 git config --global --add safe.directory ${WORK_DIR}
373 git clone --depth=1 https://source.denx.de/u-boot/u-boot-test-hooks /tmp/uboot-test-hooks
374 ln -s travis-ci /tmp/uboot-test-hooks/bin/`hostname`
375 ln -s travis-ci /tmp/uboot-test-hooks/py/`hostname`
376 grub-mkimage --prefix=\"\" -o ~/grub_x86.efi -O i386-efi normal echo lsefimmap lsefi lsefisystab efinet tftp minicmd
377 grub-mkimage --prefix=\"\" -o ~/grub_x64.efi -O x86_64-efi normal echo lsefimmap lsefi lsefisystab efinet tftp minicmd
378 if [[ "${TEST_PY_BD}" == "qemu-riscv32_spl" ]]; then
379 wget -O - https://github.com/riscv/opensbi/releases/download/v0.9/opensbi-0.9-rv-bin.tar.xz | tar -C /tmp -xJ;
380 export OPENSBI=/tmp/opensbi-0.9-rv-bin/share/opensbi/ilp32/generic/firmware/fw_dynamic.bin;
381 fi
382 if [[ "${TEST_PY_BD}" == "qemu-riscv64_spl" ]] || [[ "${TEST_PY_BD}" == "sifive_unleashed" ]]; then
383 wget -O - https://github.com/riscv/opensbi/releases/download/v0.9/opensbi-0.9-rv-bin.tar.xz | tar -C /tmp -xJ;
384 export OPENSBI=/tmp/opensbi-0.9-rv-bin/share/opensbi/lp64/generic/firmware/fw_dynamic.bin;
385 fi
386 # the below corresponds to .gitlab-ci.yml "script"
387 cd ${WORK_DIR}
388 export UBOOT_TRAVIS_BUILD_DIR=/tmp/${TEST_PY_BD};
389 if [ -n "${BUILD_ENV}" ]; then
390 export ${BUILD_ENV};
391 fi
392 tools/buildman/buildman -o ${UBOOT_TRAVIS_BUILD_DIR} -w -E -W -e --board ${TEST_PY_BD} ${OVERRIDE}
393 cp ~/grub_x86.efi ${UBOOT_TRAVIS_BUILD_DIR}/
394 cp ~/grub_x64.efi ${UBOOT_TRAVIS_BUILD_DIR}/
395 cp /opt/grub/grubriscv64.efi ${UBOOT_TRAVIS_BUILD_DIR}/grub_riscv64.efi
396 cp /opt/grub/grubaa64.efi ${UBOOT_TRAVIS_BUILD_DIR}/grub_arm64.efi
397 cp /opt/grub/grubarm.efi ${UBOOT_TRAVIS_BUILD_DIR}/grub_arm.efi
398 # create sdcard / spi-nor images for sifive unleashed using genimage
399 if [[ "${TEST_PY_BD}" == "sifive_unleashed" ]]; then
400 mkdir -p root;
401 cp ${UBOOT_TRAVIS_BUILD_DIR}/spl/u-boot-spl.bin .;
402 cp ${UBOOT_TRAVIS_BUILD_DIR}/u-boot.itb .;
403 rm -rf tmp;
404 genimage --inputpath . --config board/sifive/unleashed/genimage_sdcard.cfg;
405 cp images/sdcard.img ${UBOOT_TRAVIS_BUILD_DIR}/;
406 rm -rf tmp;
407 genimage --inputpath . --config board/sifive/unleashed/genimage_spi-nor.cfg;
408 cp images/spi-nor.img ${UBOOT_TRAVIS_BUILD_DIR}/;
409 fi
410 if [[ "${TEST_PY_BD}" == "coreboot" ]]; then
411 wget -O - "https://drive.google.com/uc?id=1x6nrtWIyIRPLS2cQBwYTnT2TbOI8UjmM&export=download" |xz -dc >${UBOOT_TRAVIS_BUILD_DIR}/coreboot.rom;
412 wget -O - "https://drive.google.com/uc?id=149Cz-5SZXHNKpi9xg6R_5XITWohu348y&export=download" >cbfstool;
413 chmod a+x cbfstool;
414 ./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;
415 fi
416 virtualenv -p /usr/bin/python3 /tmp/venv
417 . /tmp/venv/bin/activate
418 pip install -r test/py/requirements.txt
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 --bd ${TEST_PY_BD} ${TEST_PY_ID} ${TEST_PY_TEST_SPEC:+"-k ${TEST_PY_TEST_SPEC}"} --build-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
448 - stage: world_build
449 jobs:
450 - job: build_the_world
451 displayName: 'Build the World'
452 pool:
453 vmImage: $(ubuntu_vm)
454 strategy:
455 # Use almost the same target division in .travis.yml, only merged
456 # 3 small build jobs (arc/microblaze/xtensa) into one.
457 matrix:
458 arc_microblaze_xtensa:
459 BUILDMAN: "arc microblaze xtensa"
460 amlogic:
461 BUILDMAN: "amlogic"
462 arm11_arm7_arm920t_arm946es:
463 BUILDMAN: "arm11 arm7 arm920t arm946es"
464 arm926ejs:
465 BUILDMAN: "arm926ejs -x freescale,siemens,at91,kirkwood,omap"
466 at91_non_armv7:
467 BUILDMAN: "at91 -x armv7"
468 at91_non_arm926ejs:
469 BUILDMAN: "at91 -x arm926ejs"
470 boundary_engicam_toradex:
471 BUILDMAN: "boundary engicam toradex"
472 arm_bcm:
473 BUILDMAN: "bcm -x mips"
474 nxp_arm32:
475 BUILDMAN: "freescale -x powerpc,m68k,aarch64,ls101,ls102,ls104,ls108,ls20,lx216"
476 nxp_ls101x:
477 BUILDMAN: "freescale&ls101"
478 nxp_ls102x:
479 BUILDMAN: "freescale&ls102"
480 nxp_ls104x:
481 BUILDMAN: "freescale&ls104"
482 nxp_ls108x:
483 BUILDMAN: "freescale&ls108"
484 nxp_ls20xx:
485 BUILDMAN: "freescale&ls20"
486 nxp_lx216x:
487 BUILDMAN: "freescale&lx216"
488 imx6:
489 BUILDMAN: "mx6 -x boundary,engicam,freescale,technexion,toradex"
490 imx:
491 BUILDMAN: "mx -x mx6,imx8,freescale,technexion,toradex"
492 imx8_imx9:
493 BUILDMAN: "imx8 imx9"
494 keystone2_keystone3:
495 BUILDMAN: "k2 k3"
496 sandbox_asan:
497 BUILDMAN: "sandbox"
498 OVERRIDE: "-a ASAN"
499 sandbox_clang_asan:
500 BUILDMAN: "sandbox"
501 OVERRIDE: "-O clang-14 -a ASAN"
502 samsung_socfpga:
503 BUILDMAN: "samsung socfpga"
504 sun4i:
505 BUILDMAN: "sun4i"
506 sun5i:
507 BUILDMAN: "sun5i"
508 sun6i:
509 BUILDMAN: "sun6i"
510 sun7i:
511 BUILDMAN: "sun7i"
512 sun8i_32bit:
513 BUILDMAN: "sun8i&armv7"
514 sun8i_64bit:
515 BUILDMAN: "sun8i&aarch64"
516 sun9i:
517 BUILDMAN: "sun9i"
518 sun50i:
519 BUILDMAN: "sun50i"
520 arm_catch_all:
521 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"
522 sandbox_x86:
523 BUILDMAN: "sandbox x86"
524 technexion:
525 BUILDMAN: "technexion"
526 kirkwood:
527 BUILDMAN: "kirkwood"
528 mvebu:
529 BUILDMAN: "mvebu"
530 m68k:
531 BUILDMAN: "m68k"
532 mips:
533 BUILDMAN: "mips"
534 powerpc:
535 BUILDMAN: "powerpc"
536 siemens:
537 BUILDMAN: "siemens"
538 tegra:
539 BUILDMAN: "tegra -x toradex"
540 am33xx_no_siemens:
541 BUILDMAN: "am33xx -x siemens"
542 omap:
543 BUILDMAN: "omap"
544 uniphier:
545 BUILDMAN: "uniphier"
546 aarch64_catch_all:
547 BUILDMAN: "aarch64 -x amlogic,bcm,imx8,imx9,k3,tegra,ls1,ls2,lx216,mvebu,uniphier,renesas,sunxi,samsung,socfpga,rk,versal,zynq"
548 rockchip_32bit:
549 BUILDMAN: "rk -x aarch64"
550 rockchip_64bit:
551 BUILDMAN: "rk&aarch64"
552 renesas:
553 BUILDMAN: "renesas"
554 zynq:
555 BUILDMAN: "zynq&armv7"
556 zynqmp_versal:
557 BUILDMAN: "versal|zynqmp&aarch64"
558 riscv:
559 BUILDMAN: "riscv"
560 steps:
561 - script: |
562 cat << EOF > build.sh
563 set -ex
564 cd ${WORK_DIR}
565 # make environment variables available as tests are running inside a container
566 export BUILDMAN="${BUILDMAN}"
567 git config --global --add safe.directory ${WORK_DIR}
568 EOF
569 cat << "EOF" >> build.sh
570 if [[ "${BUILDMAN}" != "" ]]; then
571 ret=0;
572 tools/buildman/buildman -o /tmp -PEWM ${BUILDMAN} ${OVERRIDE} || ret=$?;
573 if [[ $ret -ne 0 ]]; then
574 tools/buildman/buildman -o /tmp -seP ${BUILDMAN};
575 exit $ret;
576 fi;
577 fi
578 EOF
579 cat build.sh
580 docker run -v $PWD:$(work_dir) $(ci_runner_image) /bin/bash $(work_dir)/build.sh