]> git.ipfire.org Git - thirdparty/u-boot.git/blame - .azure-pipelines.yml
sunxi: define SYS_MONITOR_LEN in Kconfig, not _defconfig
[thirdparty/u-boot.git] / .azure-pipelines.yml
CommitLineData
d2e680fa 1variables:
38a9840d 2 windows_vm: windows-2019
b0a23a60 3 ubuntu_vm: ubuntu-22.04
24291741 4 macos_vm: macOS-12
17196e44 5 ci_runner_image: trini/u-boot-gitlab-ci-runner:jammy-20221003-17Oct2022
bf275222
BM
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
d2e680fa 11
67d3e67d
TR
12stages:
13- stage: testsuites
14 jobs:
d2e680fa
BM
15 - job: tools_only_windows
16 displayName: 'Ensure host tools build for Windows'
17 pool:
18 vmImage: $(windows_vm)
d2e680fa 19 steps:
437e70f7 20 - powershell: |
1ce892cb 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")
d2e680fa
BM
22 displayName: 'Install MSYS2'
23 - script: |
437e70f7 24 sfx.exe -y -o%CD:~0,2%\
f8e7670f
TR
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"
d2e680fa
BM
28 displayName: 'Update MSYS2'
29 - script: |
d9612f44 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"
d2e680fa
BM
31 displayName: 'Install Toolchain'
32 - script: |
d2e680fa 33 echo make tools-only_defconfig tools-only NO_SDL=1 > build-tools.sh
f7faddf6 34 %CD:~0,2%\msys64\usr\bin\bash -lc "bash build-tools.sh"
d2e680fa
BM
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
bf275222 41
7b4116d4
TR
42 - job: tools_only_macOS
43 displayName: 'Ensure host tools build for macOS X'
44 pool:
45 vmImage: $(macos_vm)
46 steps:
d9612f44 47 - script: brew install make ossp-uuid
7b4116d4
TR
48 displayName: Brew install dependencies
49 - script: |
50 gmake tools-only_config tools-only NO_SDL=1 \
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
c1a7de57
TR
56 - job: check_for_migrated_symbols_in_board_header
57 displayName: 'Check for migrated symbols in board header'
58 pool:
59 vmImage: $(ubuntu_vm)
60 container:
61 image: $(ci_runner_image)
62 options: $(container_option)
63 steps:
64 - script: |
65 KSYMLST=`mktemp`
66 KUSEDLST=`mktemp`
239fe55a 67 RET=0
c1a7de57
TR
68 cat `find . -name "Kconfig*"` | \
69 sed -n -e 's/^\s*config *\([A-Za-z0-9_]*\).*$/CONFIG_\1/p' \
70 -e 's/^\s*menuconfig *\([A-Za-z0-9_]*\).*$/CONFIG_\1/p' \
71 | sort -u > $KSYMLST
72 for CFG in `find include/configs -name "*.h"`; do
694943cf
TR
73 (grep '#define[[:blank:]]CONFIG_' $CFG | \
74 sed -n 's/#define.\(CONFIG_[A-Za-z0-9_]*\).*/\1/p' ; \
75 grep '#undef[[:blank:]]CONFIG_' $CFG | \
76 sed -n 's/#undef.\(CONFIG_[A-Za-z0-9_]*\).*/\1/p') | \
c1a7de57 77 sort -u > ${KUSEDLST} || true
576eac85 78 NUM=`comm -123 --total --output-delimiter=, ${KSYMLST} ${KUSEDLST} | \
c1a7de57
TR
79 cut -d , -f 3`
80 if [[ $NUM -ne 0 ]]; then
239fe55a
TR
81 echo "Unmigrated symbols found in $CFG:"
82 comm -12 ${KSYMLST} ${KUSEDLST}
83 RET=1
c1a7de57
TR
84 fi
85 done
239fe55a 86 exit $RET
c1a7de57 87
bf275222
BM
88 - job: cppcheck
89 displayName: 'Static code analysis with cppcheck'
90 pool:
91 vmImage: $(ubuntu_vm)
92 container:
93 image: $(ci_runner_image)
94 options: $(container_option)
95 steps:
4ee7f527 96 - script: cppcheck -j$(nproc) --force --quiet --inline-suppr .
bf275222 97
4eb0fc99
HS
98 - job: htmldocs
99 displayName: 'Build HTML documentation'
100 pool:
101 vmImage: $(ubuntu_vm)
102 container:
103 image: $(ci_runner_image)
104 options: $(container_option)
105 steps:
836049d6
HS
106 - script: |
107 virtualenv -p /usr/bin/python3 /tmp/venvhtml
108 . /tmp/venvhtml/bin/activate
109 pip install -r doc/sphinx/requirements.txt
110 make htmldocs
4eb0fc99 111
bf275222
BM
112 - job: todo
113 displayName: 'Search for TODO within source tree'
114 pool:
115 vmImage: $(ubuntu_vm)
116 container:
117 image: $(ci_runner_image)
118 options: $(container_option)
119 steps:
120 - script: grep -r TODO .
121 - script: grep -r FIXME .
122 - script: grep -r HACK . | grep -v HACKKIT
123
124 - job: sloccount
125 displayName: 'Some statistics about the code base'
126 pool:
127 vmImage: $(ubuntu_vm)
128 container:
129 image: $(ci_runner_image)
130 options: $(container_option)
131 steps:
132 - script: sloccount .
133
134 - job: maintainers
135 displayName: 'Ensure all configs have MAINTAINERS entries'
136 pool:
137 vmImage: $(ubuntu_vm)
138 container:
139 image: $(ci_runner_image)
140 options: $(container_option)
141 steps:
142 - script: |
7ae8a527 143 ./tools/buildman/buildman -R
bf275222
BM
144
145 - job: tools_only
146 displayName: 'Ensure host tools build'
147 pool:
148 vmImage: $(ubuntu_vm)
149 container:
150 image: $(ci_runner_image)
151 options: $(container_option)
152 steps:
153 - script: |
154 make tools-only_config tools-only -j$(nproc)
155
156 - job: envtools
157 displayName: 'Ensure env tools build'
158 pool:
159 vmImage: $(ubuntu_vm)
160 container:
161 image: $(ci_runner_image)
162 options: $(container_option)
163 steps:
164 - script: |
165 make tools-only_config envtools -j$(nproc)
166
167 - job: utils
7261833f 168 displayName: 'Run binman, buildman, dtoc, Kconfig and patman testsuites'
bf275222
BM
169 pool:
170 vmImage: $(ubuntu_vm)
171 steps:
172 - script: |
b6d4e085
TR
173 cat << "EOF" > build.sh
174 cd $(work_dir)
bf275222
BM
175 git config --global user.name "Azure Pipelines"
176 git config --global user.email bmeng.cn@gmail.com
b6d4e085 177 git config --global --add safe.directory $(work_dir)
bf275222 178 export USER=azure
26a426a1 179 virtualenv -p /usr/bin/python3 /tmp/venv
bf275222 180 . /tmp/venv/bin/activate
38229b55 181 pip install -r test/py/requirements.txt
bf0a8133 182 export UBOOT_TRAVIS_BUILD_DIR=/tmp/sandbox_spl
bf275222
BM
183 export PYTHONPATH=${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc/pylibfdt
184 export PATH=${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc:${PATH}
a0ac1d90 185 ./tools/buildman/buildman -T0 -o ${UBOOT_TRAVIS_BUILD_DIR} -w --board sandbox_spl
b6d4e085 186 set -ex
bf275222
BM
187 ./tools/binman/binman --toolpath ${UBOOT_TRAVIS_BUILD_DIR}/tools test
188 ./tools/buildman/buildman -t
189 ./tools/dtoc/dtoc -t
6bb74de7 190 ./tools/patman/patman test
7261833f 191 make O=${UBOOT_TRAVIS_BUILD_DIR} testconfig
bf275222
BM
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
6cfd09d4
T
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: |
e2d6a77a 207 export PATH=/opt/gcc-11.1.0-nolibc/arm-linux-gnueabi/bin:$PATH
6cfd09d4
T
208 test/nokia_rx51_test.sh
209
642e51ad
SG
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: |
b6d4e085 219 git config --global --add safe.directory $(work_dir)
642e51ad
SG
220 export USER=azure
221 pip install -r test/py/requirements.txt
e47bbf7e 222 pip install asteval pylint==2.12.2 pyopenssl
642e51ad
SG
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
b6d4e085 228 set -ex
642e51ad
SG
229 pylint --version
230 export PYTHONPATH=${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc/pylibfdt
231 make pylint_err
232
67d3e67d
TR
233- stage: test_py
234 jobs:
bf275222
BM
235 - job: test_py
236 displayName: 'test.py'
237 pool:
238 vmImage: $(ubuntu_vm)
239 strategy:
240 matrix:
241 sandbox:
242 TEST_PY_BD: "sandbox"
0219d014
TR
243 sandbox_clang:
244 TEST_PY_BD: "sandbox"
927e0eed 245 OVERRIDE: "-O clang-13"
1aa168ca
SG
246 sandbox_nolto:
247 TEST_PY_BD: "sandbox"
248 BUILD_ENV: "NO_LTO=1"
bf275222
BM
249 sandbox_spl:
250 TEST_PY_BD: "sandbox_spl"
afb26ba9 251 TEST_PY_TEST_SPEC: "test_ofplatdata or test_handoff or test_spl"
a31eff30
SG
252 sandbox_vpl:
253 TEST_PY_BD: "sandbox_vpl"
254 TEST_PY_TEST_SPEC: "test_vpl_help or test_spl"
6c914e42
SG
255 sandbox_noinst:
256 TEST_PY_BD: "sandbox_noinst"
257 TEST_PY_TEST_SPEC: "test_ofplatdata or test_handoff or test_spl"
bf275222
BM
258 sandbox_flattree:
259 TEST_PY_BD: "sandbox_flattree"
bfb2a7fb
SG
260 coreboot:
261 TEST_PY_BD: "coreboot"
262 TEST_PY_ID: "--id qemu"
263 TEST_PY_TEST_SPEC: "not sleep"
bf275222
BM
264 evb_ast2500:
265 TEST_PY_BD: "evb-ast2500"
266 TEST_PY_ID: "--id qemu"
b24087ae
JS
267 evb_ast2600:
268 TEST_PY_BD: "evb-ast2600"
269 TEST_PY_ID: "--id qemu"
15e30106
KA
270 vexpress_ca9x4:
271 TEST_PY_BD: "vexpress_ca9x4"
272 TEST_PY_ID: "--id qemu"
bf275222
BM
273 integratorcp_cm926ejs:
274 TEST_PY_BD: "integratorcp_cm926ejs"
275 TEST_PY_ID: "--id qemu"
276 TEST_PY_TEST_SPEC: "not sleep"
bf275222
BM
277 qemu_arm:
278 TEST_PY_BD: "qemu_arm"
279 TEST_PY_TEST_SPEC: "not sleep"
bf275222
BM
280 qemu_arm64:
281 TEST_PY_BD: "qemu_arm64"
282 TEST_PY_TEST_SPEC: "not sleep"
e35c2a8f
DS
283 qemu_malta:
284 TEST_PY_BD: "malta"
285 TEST_PY_ID: "--id qemu"
286 TEST_PY_TEST_SPEC: "not sleep and not efi"
287 qemu_maltael:
288 TEST_PY_BD: "maltael"
289 TEST_PY_ID: "--id qemu"
290 TEST_PY_TEST_SPEC: "not sleep and not efi"
291 qemu_malta64:
292 TEST_PY_BD: "malta64"
293 TEST_PY_ID: "--id qemu"
294 TEST_PY_TEST_SPEC: "not sleep and not efi"
295 qemu_malta64el:
296 TEST_PY_BD: "malta64el"
297 TEST_PY_ID: "--id qemu"
298 TEST_PY_TEST_SPEC: "not sleep and not efi"
bf275222
BM
299 qemu_ppce500:
300 TEST_PY_BD: "qemu-ppce500"
301 TEST_PY_TEST_SPEC: "not sleep"
a379d330
BM
302 qemu_riscv32:
303 TEST_PY_BD: "qemu-riscv32"
304 TEST_PY_TEST_SPEC: "not sleep"
bf275222
BM
305 qemu_riscv64:
306 TEST_PY_BD: "qemu-riscv64"
307 TEST_PY_TEST_SPEC: "not sleep"
49fb28a4
BM
308 qemu_riscv32_spl:
309 TEST_PY_BD: "qemu-riscv32_spl"
310 TEST_PY_TEST_SPEC: "not sleep"
49fb28a4
BM
311 qemu_riscv64_spl:
312 TEST_PY_BD: "qemu-riscv64_spl"
313 TEST_PY_TEST_SPEC: "not sleep"
bf275222
BM
314 qemu_x86:
315 TEST_PY_BD: "qemu-x86"
316 TEST_PY_TEST_SPEC: "not sleep"
bf275222
BM
317 qemu_x86_64:
318 TEST_PY_BD: "qemu-x86_64"
319 TEST_PY_TEST_SPEC: "not sleep"
0e125756
MV
320 r2dplus_i82557c:
321 TEST_PY_BD: "r2dplus"
322 TEST_PY_ID: "--id i82557c_qemu"
323 r2dplus_pcnet:
324 TEST_PY_BD: "r2dplus"
325 TEST_PY_ID: "--id pcnet_qemu"
326 r2dplus_rtl8139:
327 TEST_PY_BD: "r2dplus"
328 TEST_PY_ID: "--id rtl8139_qemu"
329 r2dplus_tulip:
330 TEST_PY_BD: "r2dplus"
331 TEST_PY_ID: "--id tulip_qemu"
0e60b3a7
BM
332 sifive_unleashed_sdcard:
333 TEST_PY_BD: "sifive_unleashed"
334 TEST_PY_ID: "--id sdcard_qemu"
335 sifive_unleashed_spi-nor:
336 TEST_PY_BD: "sifive_unleashed"
337 TEST_PY_ID: "--id spi-nor_qemu"
f7c6ee7f
MS
338 xilinx_zynq_virt:
339 TEST_PY_BD: "xilinx_zynq_virt"
bf275222
BM
340 TEST_PY_ID: "--id qemu"
341 TEST_PY_TEST_SPEC: "not sleep"
bf275222
BM
342 xilinx_versal_virt:
343 TEST_PY_BD: "xilinx_versal_virt"
344 TEST_PY_ID: "--id qemu"
345 TEST_PY_TEST_SPEC: "not sleep"
bf275222
BM
346 xtfpga:
347 TEST_PY_BD: "xtfpga"
348 TEST_PY_ID: "--id qemu"
349 TEST_PY_TEST_SPEC: "not sleep"
bf275222
BM
350 steps:
351 - script: |
352 cat << EOF > test.sh
353 set -ex
354 # make environment variables available as tests are running inside a container
355 export WORK_DIR="${WORK_DIR}"
356 export TEST_PY_BD="${TEST_PY_BD}"
357 export TEST_PY_ID="${TEST_PY_ID}"
358 export TEST_PY_TEST_SPEC="${TEST_PY_TEST_SPEC}"
0219d014 359 export OVERRIDE="${OVERRIDE}"
1aa168ca 360 export BUILD_ENV="${BUILD_ENV}"
bf275222
BM
361 EOF
362 cat << "EOF" >> test.sh
363 # the below corresponds to .gitlab-ci.yml "before_script"
364 cd ${WORK_DIR}
bd181a24 365 git config --global --add safe.directory ${WORK_DIR}
85ae52b9 366 git clone --depth=1 https://source.denx.de/u-boot/u-boot-test-hooks /tmp/uboot-test-hooks
bf275222
BM
367 ln -s travis-ci /tmp/uboot-test-hooks/bin/`hostname`
368 ln -s travis-ci /tmp/uboot-test-hooks/py/`hostname`
bf275222
BM
369 grub-mkimage --prefix=\"\" -o ~/grub_x86.efi -O i386-efi normal echo lsefimmap lsefi lsefisystab efinet tftp minicmd
370 grub-mkimage --prefix=\"\" -o ~/grub_x64.efi -O x86_64-efi normal echo lsefimmap lsefi lsefisystab efinet tftp minicmd
49fb28a4 371 if [[ "${TEST_PY_BD}" == "qemu-riscv32_spl" ]]; then
b6b35fd2
HS
372 wget -O - https://github.com/riscv/opensbi/releases/download/v0.9/opensbi-0.9-rv-bin.tar.xz | tar -C /tmp -xJ;
373 export OPENSBI=/tmp/opensbi-0.9-rv-bin/share/opensbi/ilp32/generic/firmware/fw_dynamic.bin;
49fb28a4 374 fi
0e60b3a7 375 if [[ "${TEST_PY_BD}" == "qemu-riscv64_spl" ]] || [[ "${TEST_PY_BD}" == "sifive_unleashed" ]]; then
b6b35fd2
HS
376 wget -O - https://github.com/riscv/opensbi/releases/download/v0.9/opensbi-0.9-rv-bin.tar.xz | tar -C /tmp -xJ;
377 export OPENSBI=/tmp/opensbi-0.9-rv-bin/share/opensbi/lp64/generic/firmware/fw_dynamic.bin;
49fb28a4 378 fi
bf275222
BM
379 # the below corresponds to .gitlab-ci.yml "script"
380 cd ${WORK_DIR}
4e32fed4 381 export UBOOT_TRAVIS_BUILD_DIR=/tmp/${TEST_PY_BD};
7ec1255c 382 tools/buildman/buildman -o ${UBOOT_TRAVIS_BUILD_DIR} -w -E -W -e --board ${TEST_PY_BD} ${OVERRIDE}
9e0f5eab
HS
383 cp ~/grub_x86.efi ${UBOOT_TRAVIS_BUILD_DIR}/
384 cp ~/grub_x64.efi ${UBOOT_TRAVIS_BUILD_DIR}/
385 cp /opt/grub/grubriscv64.efi ${UBOOT_TRAVIS_BUILD_DIR}/grub_riscv64.efi
9e0f5eab
HS
386 cp /opt/grub/grubaa64.efi ${UBOOT_TRAVIS_BUILD_DIR}/grub_arm64.efi
387 cp /opt/grub/grubarm.efi ${UBOOT_TRAVIS_BUILD_DIR}/grub_arm.efi
0e60b3a7
BM
388 # create sdcard / spi-nor images for sifive unleashed using genimage
389 if [[ "${TEST_PY_BD}" == "sifive_unleashed" ]]; then
390 mkdir -p root;
391 cp ${UBOOT_TRAVIS_BUILD_DIR}/spl/u-boot-spl.bin .;
392 cp ${UBOOT_TRAVIS_BUILD_DIR}/u-boot.itb .;
393 rm -rf tmp;
394 genimage --inputpath . --config board/sifive/unleashed/genimage_sdcard.cfg;
395 cp images/sdcard.img ${UBOOT_TRAVIS_BUILD_DIR}/;
396 rm -rf tmp;
397 genimage --inputpath . --config board/sifive/unleashed/genimage_spi-nor.cfg;
398 cp images/spi-nor.img ${UBOOT_TRAVIS_BUILD_DIR}/;
399 fi
bfb2a7fb
SG
400 if [[ "${TEST_PY_BD}" == "coreboot" ]]; then
401 wget -O - "https://drive.google.com/uc?id=1x6nrtWIyIRPLS2cQBwYTnT2TbOI8UjmM&export=download" |xz -dc >${UBOOT_TRAVIS_BUILD_DIR}/coreboot.rom;
402 wget -O - "https://drive.google.com/uc?id=149Cz-5SZXHNKpi9xg6R_5XITWohu348y&export=download" >cbfstool;
403 chmod a+x cbfstool;
404 ./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;
405 fi
5d80a1a9
TR
406 virtualenv -p /usr/bin/python3 /tmp/venv
407 . /tmp/venv/bin/activate
408 pip install -r test/py/requirements.txt
5d6f0535 409 export PATH=/opt/qemu/bin:/tmp/uboot-test-hooks/bin:${PATH};
bf275222 410 export PYTHONPATH=/tmp/uboot-test-hooks/py/travis-ci;
4080d097 411 # "${var:+"-k $var"}" expands to "" if $var is empty, "-k $var" if not
f3092473 412 ./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";
bf275222 413 # the below corresponds to .gitlab-ci.yml "after_script"
6049d516 414 rm -rf /tmp/uboot-test-hooks /tmp/venv
bf275222
BM
415 EOF
416 cat test.sh
417 # make current directory writeable to uboot user inside the container
418 # as sandbox testing need create files like spi flash images, etc.
419 # (TODO: clean up this in the future)
420 chmod 777 .
e22ec9c6
ANY
421 # Filesystem tests need extra docker args to run
422 set --
423 if [[ "${TEST_PY_BD}" == "sandbox" ]]; then
424 # mount -o loop needs the loop devices
425 if modprobe loop; then
426 for d in $(find /dev -maxdepth 1 -name 'loop*'); do
427 set -- "$@" --device $d:$d
428 done
429 fi
430 # Needed for mount syscall (for guestmount as well)
431 set -- "$@" --cap-add SYS_ADMIN
432 # Default apparmor profile denies mounts
433 set -- "$@" --security-opt apparmor=unconfined
434 fi
1aaaf60d 435 # Some tests using libguestfs-tools need the fuse device to run
e22ec9c6 436 docker run "$@" --device /dev/fuse:/dev/fuse -v $PWD:$(work_dir) $(ci_runner_image) /bin/bash $(work_dir)/test.sh
bf275222 437
67d3e67d
TR
438- stage: world_build
439 jobs:
bf275222
BM
440 - job: build_the_world
441 displayName: 'Build the World'
442 pool:
443 vmImage: $(ubuntu_vm)
444 strategy:
445 # Use almost the same target division in .travis.yml, only merged
11232139 446 # 3 small build jobs (arc/microblaze/xtensa) into one.
bf275222 447 matrix:
11232139
TR
448 arc_microblaze_xtensa:
449 BUILDMAN: "arc microblaze xtensa"
bf275222
BM
450 arm11_arm7_arm920t_arm946es:
451 BUILDMAN: "arm11 arm7 arm920t arm946es"
452 arm926ejs:
5bda1878 453 BUILDMAN: "arm926ejs -x freescale,siemens,at91,kirkwood,omap"
bf275222
BM
454 at91_non_armv7:
455 BUILDMAN: "at91 -x armv7"
456 at91_non_arm926ejs:
457 BUILDMAN: "at91 -x arm926ejs"
458 boundary_engicam_toradex:
459 BUILDMAN: "boundary engicam toradex"
460 arm_bcm:
461 BUILDMAN: "bcm -x mips"
462 nxp_arm32:
af771625
HS
463 BUILDMAN: "freescale -x powerpc,m68k,aarch64,ls101,ls102,ls104,ls108,ls20,lx216"
464 nxp_ls101x:
465 BUILDMAN: "freescale&ls101"
466 nxp_ls102x:
467 BUILDMAN: "freescale&ls102"
468 nxp_ls104x:
469 BUILDMAN: "freescale&ls104"
470 nxp_ls108x:
471 BUILDMAN: "freescale&ls108"
472 nxp_ls20xx:
473 BUILDMAN: "freescale&ls20"
474 nxp_lx216x:
475 BUILDMAN: "freescale&lx216"
bf275222
BM
476 imx6:
477 BUILDMAN: "mx6 -x boundary,engicam,freescale,technexion,toradex"
478 imx:
479 BUILDMAN: "mx -x mx6,freescale,technexion,toradex"
5ea605ce
TR
480 imx8:
481 BUILDMAN: "imx8"
bf275222
BM
482 keystone2_keystone3:
483 BUILDMAN: "k2 k3"
eabc4e29
AS
484 sandbox_asan:
485 BUILDMAN: "sandbox"
486 OVERRIDE: "-a ASAN"
487 sandbox_clang_asan:
488 BUILDMAN: "sandbox"
489 OVERRIDE: "-O clang-13 -a ASAN"
bf275222
BM
490 samsung_socfpga:
491 BUILDMAN: "samsung socfpga"
bf275222
BM
492 sun4i:
493 BUILDMAN: "sun4i"
494 sun5i:
495 BUILDMAN: "sun5i"
496 sun6i:
497 BUILDMAN: "sun6i"
498 sun7i:
499 BUILDMAN: "sun7i"
500 sun8i_32bit:
501 BUILDMAN: "sun8i&armv7"
502 sun8i_64bit:
503 BUILDMAN: "sun8i&aarch64"
504 sun9i:
505 BUILDMAN: "sun9i"
506 sun50i:
507 BUILDMAN: "sun50i"
508 arm_catch_all:
31289c7d 509 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"
bf275222
BM
510 sandbox_x86:
511 BUILDMAN: "sandbox x86"
512 technexion:
513 BUILDMAN: "technexion"
514 kirkwood:
515 BUILDMAN: "kirkwood"
516 mvebu:
517 BUILDMAN: "mvebu"
518 m68k:
519 BUILDMAN: "m68k"
520 mips:
521 BUILDMAN: "mips"
05f958f8
TR
522 powerpc:
523 BUILDMAN: "powerpc"
bf275222
BM
524 siemens:
525 BUILDMAN: "siemens"
526 tegra:
527 BUILDMAN: "tegra -x toradex"
528 am33xx_no_siemens:
529 BUILDMAN: "am33xx -x siemens"
530 omap:
531 BUILDMAN: "omap"
532 uniphier:
533 BUILDMAN: "uniphier"
534 aarch64_catch_all:
5ea605ce 535 BUILDMAN: "aarch64 -x bcm,imx8,k3,tegra,ls1,ls2,lx216,mvebu,uniphier,renesas,sunxi,samsung,socfpga,rk,versal,zynq"
bf275222 536 rockchip:
2d4cd12d 537 BUILDMAN: "rk"
31289c7d
TR
538 renesas:
539 BUILDMAN: "renesas"
bf275222
BM
540 zynq:
541 BUILDMAN: "zynq&armv7"
542 zynqmp_versal:
543 BUILDMAN: "versal|zynqmp&aarch64"
544 riscv:
545 BUILDMAN: "riscv"
546 steps:
547 - script: |
548 cat << EOF > build.sh
549 set -ex
550 cd ${WORK_DIR}
551 # make environment variables available as tests are running inside a container
552 export BUILDMAN="${BUILDMAN}"
bd181a24 553 git config --global --add safe.directory ${WORK_DIR}
bf275222
BM
554 EOF
555 cat << "EOF" >> build.sh
556 if [[ "${BUILDMAN}" != "" ]]; then
557 ret=0;
d7713ad3 558 tools/buildman/buildman -o /tmp -PEWM ${BUILDMAN} ${OVERRIDE} || ret=$?;
dd5c954e 559 if [[ $ret -ne 0 ]]; then
b52f5a19 560 tools/buildman/buildman -o /tmp -seP ${BUILDMAN};
bf275222
BM
561 exit $ret;
562 fi;
563 fi
564 EOF
565 cat build.sh
566 docker run -v $PWD:$(work_dir) $(ci_runner_image) /bin/bash $(work_dir)/build.sh