]> git.ipfire.org Git - thirdparty/u-boot.git/blame - .azure-pipelines.yml
Merge branch '2023-08-04-toradex-platform-updates'
[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
8b987698 5 ci_runner_image: trini/u-boot-gitlab-ci-runner:jammy-20230624-20Jul2023
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: |
d948c898 33 echo make tools-only_defconfig tools-only > 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: |
d948c898 50 gmake tools-only_config tools-only \
7b4116d4
TR
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
bb9b9c1e
TR
56 - job: check_for_new_CONFIG_symbols_outside_Kconfig
57 displayName: 'Check for new CONFIG symbols outside Kconfig'
c1a7de57
TR
58 pool:
59 vmImage: $(ubuntu_vm)
60 container:
61 image: $(ci_runner_image)
62 options: $(container_option)
63 steps:
bb9b9c1e
TR
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_'
a03efb6f
TR
67 :^doc/ :^arch/arm/dts/ :^scripts/kconfig/lkc.h
68 :^include/linux/kconfig.h :^tools/ && exit 1 || exit 0
c1a7de57 69
bf275222
BM
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:
4ee7f527 78 - script: cppcheck -j$(nproc) --force --quiet --inline-suppr .
bf275222 79
e9cc7029
HS
80 - job: docs
81 displayName: 'Build documentation'
4eb0fc99
HS
82 pool:
83 vmImage: $(ubuntu_vm)
84 container:
85 image: $(ci_runner_image)
86 options: $(container_option)
87 steps:
836049d6
HS
88 - script: |
89 virtualenv -p /usr/bin/python3 /tmp/venvhtml
90 . /tmp/venvhtml/bin/activate
91 pip install -r doc/sphinx/requirements.txt
8a6414d1 92 make htmldocs KDOC_WERROR=1
e9cc7029 93 make infodocs
4eb0fc99 94
bf275222
BM
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: |
1b21842e 126 ./tools/buildman/buildman --maintainer-check || exit 0
bf275222
BM
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
7261833f 151 displayName: 'Run binman, buildman, dtoc, Kconfig and patman testsuites'
bf275222
BM
152 pool:
153 vmImage: $(ubuntu_vm)
154 steps:
155 - script: |
b6d4e085
TR
156 cat << "EOF" > build.sh
157 cd $(work_dir)
bf275222
BM
158 git config --global user.name "Azure Pipelines"
159 git config --global user.email bmeng.cn@gmail.com
b6d4e085 160 git config --global --add safe.directory $(work_dir)
bf275222 161 export USER=azure
26a426a1 162 virtualenv -p /usr/bin/python3 /tmp/venv
bf275222 163 . /tmp/venv/bin/activate
38229b55 164 pip install -r test/py/requirements.txt
f586cdae 165 pip install -r tools/buildman/requirements.txt
bf0a8133 166 export UBOOT_TRAVIS_BUILD_DIR=/tmp/sandbox_spl
bf275222
BM
167 export PYTHONPATH=${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc/pylibfdt
168 export PATH=${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc:${PATH}
a0ac1d90 169 ./tools/buildman/buildman -T0 -o ${UBOOT_TRAVIS_BUILD_DIR} -w --board sandbox_spl
b6d4e085 170 set -ex
bf275222
BM
171 ./tools/binman/binman --toolpath ${UBOOT_TRAVIS_BUILD_DIR}/tools test
172 ./tools/buildman/buildman -t
173 ./tools/dtoc/dtoc -t
6bb74de7 174 ./tools/patman/patman test
7261833f 175 make O=${UBOOT_TRAVIS_BUILD_DIR} testconfig
bf275222
BM
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
6cfd09d4
T
182 - job: nokia_rx51_test
183 displayName: 'Run tests for Nokia RX-51 (aka N900)'
184 pool:
185 vmImage: $(ubuntu_vm)
186 container:
187 image: $(ci_runner_image)
188 options: $(container_option)
189 steps:
190 - script: |
ce0f745c
T
191 mkdir nokia_rx51_tmp
192 ln -s /opt/nokia/u-boot-gen-combined nokia_rx51_tmp/
193 ln -s /opt/nokia/qemu-n900.tar.gz nokia_rx51_tmp/
194 ln -s /opt/nokia/kernel_2.6.28-20103103+0m5_armel.deb nokia_rx51_tmp/
195 ln -s /opt/nokia/libc6_2.5.1-1eglibc27+0m5_armel.deb nokia_rx51_tmp/
196 ln -s /opt/nokia/busybox_1.10.2.legal-1osso30+0m5_armel.deb nokia_rx51_tmp/
197 ln -s /opt/nokia/qemu-system-arm nokia_rx51_tmp/
6d6ddabf 198 export PATH=/opt/gcc-13.1.0-nolibc/arm-linux-gnueabi/bin:$PATH
6cfd09d4
T
199 test/nokia_rx51_test.sh
200
642e51ad
SG
201 - job: pylint
202 displayName: Check for any pylint regressions
203 pool:
204 vmImage: $(ubuntu_vm)
205 container:
206 image: $(ci_runner_image)
207 options: $(container_option)
208 steps:
209 - script: |
b6d4e085 210 git config --global --add safe.directory $(work_dir)
642e51ad
SG
211 export USER=azure
212 pip install -r test/py/requirements.txt
f586cdae 213 pip install -r tools/buildman/requirements.txt
e47bbf7e 214 pip install asteval pylint==2.12.2 pyopenssl
642e51ad
SG
215 export PATH=${PATH}:~/.local/bin
216 echo "[MASTER]" >> .pylintrc
217 echo "load-plugins=pylint.extensions.docparams" >> .pylintrc
218 export UBOOT_TRAVIS_BUILD_DIR=/tmp/sandbox_spl
219 ./tools/buildman/buildman -T0 -o ${UBOOT_TRAVIS_BUILD_DIR} -w --board sandbox_spl
b6d4e085 220 set -ex
642e51ad
SG
221 pylint --version
222 export PYTHONPATH=${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc/pylibfdt
223 make pylint_err
224
441a3d0a
SG
225 - job: check_for_pre_schema_tags
226 displayName: 'Check for pre-schema driver model tags'
227 pool:
228 vmImage: $(ubuntu_vm)
229 container:
230 image: $(ci_runner_image)
231 options: $(container_option)
232 steps:
233 # If grep succeeds and finds a match the test fails as we should
234 # have no matches.
235 - script: git grep u-boot,dm- -- '*.dts*' && exit 1 || exit 0
236
c21a5286
SG
237 - job: check_packing_of_python_tools
238 displayName: 'Check we can package the Python tools'
239 pool:
240 vmImage: $(ubuntu_vm)
241 container:
242 image: $(ci_runner_image)
243 options: $(container_option)
244 steps:
245 - script: make pip
246
67d3e67d
TR
247- stage: test_py
248 jobs:
bf275222
BM
249 - job: test_py
250 displayName: 'test.py'
251 pool:
252 vmImage: $(ubuntu_vm)
253 strategy:
254 matrix:
255 sandbox:
256 TEST_PY_BD: "sandbox"
0219d014
TR
257 sandbox_clang:
258 TEST_PY_BD: "sandbox"
d7e0678c 259 OVERRIDE: "-O clang-16"
1aa168ca
SG
260 sandbox_nolto:
261 TEST_PY_BD: "sandbox"
262 BUILD_ENV: "NO_LTO=1"
bf275222
BM
263 sandbox_spl:
264 TEST_PY_BD: "sandbox_spl"
afb26ba9 265 TEST_PY_TEST_SPEC: "test_ofplatdata or test_handoff or test_spl"
a31eff30
SG
266 sandbox_vpl:
267 TEST_PY_BD: "sandbox_vpl"
8b609878 268 TEST_PY_TEST_SPEC: "vpl or test_spl"
6c914e42
SG
269 sandbox_noinst:
270 TEST_PY_BD: "sandbox_noinst"
271 TEST_PY_TEST_SPEC: "test_ofplatdata or test_handoff or test_spl"
bf275222
BM
272 sandbox_flattree:
273 TEST_PY_BD: "sandbox_flattree"
9cea4797
SG
274 sandbox_trace:
275 TEST_PY_BD: "sandbox"
276 BUILD_ENV: "FTRACE=1 NO_LTO=1"
277 TEST_PY_TEST_SPEC: "trace"
278 OVERRIDE: "-a CONFIG_TRACE=y -a CONFIG_TRACE_EARLY=y -a CONFIG_TRACE_EARLY_SIZE=0x01000000"
bfb2a7fb
SG
279 coreboot:
280 TEST_PY_BD: "coreboot"
281 TEST_PY_ID: "--id qemu"
282 TEST_PY_TEST_SPEC: "not sleep"
bf275222
BM
283 evb_ast2500:
284 TEST_PY_BD: "evb-ast2500"
285 TEST_PY_ID: "--id qemu"
b24087ae
JS
286 evb_ast2600:
287 TEST_PY_BD: "evb-ast2600"
288 TEST_PY_ID: "--id qemu"
15e30106
KA
289 vexpress_ca9x4:
290 TEST_PY_BD: "vexpress_ca9x4"
291 TEST_PY_ID: "--id qemu"
bf275222
BM
292 integratorcp_cm926ejs:
293 TEST_PY_BD: "integratorcp_cm926ejs"
294 TEST_PY_ID: "--id qemu"
295 TEST_PY_TEST_SPEC: "not sleep"
bf275222
BM
296 qemu_arm:
297 TEST_PY_BD: "qemu_arm"
298 TEST_PY_TEST_SPEC: "not sleep"
bf275222
BM
299 qemu_arm64:
300 TEST_PY_BD: "qemu_arm64"
301 TEST_PY_TEST_SPEC: "not sleep"
a21e1123
MV
302 qemu_m68k:
303 TEST_PY_BD: "M5208EVBE"
304 TEST_PY_ID: "--id qemu"
305 TEST_PY_TEST_SPEC: "not sleep and not efi"
306 OVERRIDE: "-a CONFIG_M68K_QEMU=y -a ~CONFIG_MCFTMR"
e35c2a8f
DS
307 qemu_malta:
308 TEST_PY_BD: "malta"
309 TEST_PY_ID: "--id qemu"
310 TEST_PY_TEST_SPEC: "not sleep and not efi"
311 qemu_maltael:
312 TEST_PY_BD: "maltael"
313 TEST_PY_ID: "--id qemu"
314 TEST_PY_TEST_SPEC: "not sleep and not efi"
315 qemu_malta64:
316 TEST_PY_BD: "malta64"
317 TEST_PY_ID: "--id qemu"
318 TEST_PY_TEST_SPEC: "not sleep and not efi"
319 qemu_malta64el:
320 TEST_PY_BD: "malta64el"
321 TEST_PY_ID: "--id qemu"
322 TEST_PY_TEST_SPEC: "not sleep and not efi"
bf275222
BM
323 qemu_ppce500:
324 TEST_PY_BD: "qemu-ppce500"
325 TEST_PY_TEST_SPEC: "not sleep"
a379d330
BM
326 qemu_riscv32:
327 TEST_PY_BD: "qemu-riscv32"
328 TEST_PY_TEST_SPEC: "not sleep"
bf275222
BM
329 qemu_riscv64:
330 TEST_PY_BD: "qemu-riscv64"
331 TEST_PY_TEST_SPEC: "not sleep"
49fb28a4
BM
332 qemu_riscv32_spl:
333 TEST_PY_BD: "qemu-riscv32_spl"
334 TEST_PY_TEST_SPEC: "not sleep"
49fb28a4
BM
335 qemu_riscv64_spl:
336 TEST_PY_BD: "qemu-riscv64_spl"
337 TEST_PY_TEST_SPEC: "not sleep"
bf275222
BM
338 qemu_x86:
339 TEST_PY_BD: "qemu-x86"
340 TEST_PY_TEST_SPEC: "not sleep"
bf275222
BM
341 qemu_x86_64:
342 TEST_PY_BD: "qemu-x86_64"
343 TEST_PY_TEST_SPEC: "not sleep"
0e125756
MV
344 r2dplus_i82557c:
345 TEST_PY_BD: "r2dplus"
346 TEST_PY_ID: "--id i82557c_qemu"
347 r2dplus_pcnet:
348 TEST_PY_BD: "r2dplus"
349 TEST_PY_ID: "--id pcnet_qemu"
350 r2dplus_rtl8139:
351 TEST_PY_BD: "r2dplus"
352 TEST_PY_ID: "--id rtl8139_qemu"
353 r2dplus_tulip:
354 TEST_PY_BD: "r2dplus"
355 TEST_PY_ID: "--id tulip_qemu"
0e60b3a7
BM
356 sifive_unleashed_sdcard:
357 TEST_PY_BD: "sifive_unleashed"
358 TEST_PY_ID: "--id sdcard_qemu"
359 sifive_unleashed_spi-nor:
360 TEST_PY_BD: "sifive_unleashed"
361 TEST_PY_ID: "--id spi-nor_qemu"
f7c6ee7f
MS
362 xilinx_zynq_virt:
363 TEST_PY_BD: "xilinx_zynq_virt"
bf275222
BM
364 TEST_PY_ID: "--id qemu"
365 TEST_PY_TEST_SPEC: "not sleep"
bf275222
BM
366 xilinx_versal_virt:
367 TEST_PY_BD: "xilinx_versal_virt"
368 TEST_PY_ID: "--id qemu"
369 TEST_PY_TEST_SPEC: "not sleep"
bf275222
BM
370 xtfpga:
371 TEST_PY_BD: "xtfpga"
372 TEST_PY_ID: "--id qemu"
373 TEST_PY_TEST_SPEC: "not sleep"
bf275222
BM
374 steps:
375 - script: |
376 cat << EOF > test.sh
377 set -ex
378 # make environment variables available as tests are running inside a container
379 export WORK_DIR="${WORK_DIR}"
380 export TEST_PY_BD="${TEST_PY_BD}"
381 export TEST_PY_ID="${TEST_PY_ID}"
382 export TEST_PY_TEST_SPEC="${TEST_PY_TEST_SPEC}"
0219d014 383 export OVERRIDE="${OVERRIDE}"
1aa168ca 384 export BUILD_ENV="${BUILD_ENV}"
bf275222
BM
385 EOF
386 cat << "EOF" >> test.sh
387 # the below corresponds to .gitlab-ci.yml "before_script"
388 cd ${WORK_DIR}
bd181a24 389 git config --global --add safe.directory ${WORK_DIR}
85ae52b9 390 git clone --depth=1 https://source.denx.de/u-boot/u-boot-test-hooks /tmp/uboot-test-hooks
bf275222
BM
391 ln -s travis-ci /tmp/uboot-test-hooks/bin/`hostname`
392 ln -s travis-ci /tmp/uboot-test-hooks/py/`hostname`
bf275222
BM
393 grub-mkimage --prefix=\"\" -o ~/grub_x86.efi -O i386-efi normal echo lsefimmap lsefi lsefisystab efinet tftp minicmd
394 grub-mkimage --prefix=\"\" -o ~/grub_x64.efi -O x86_64-efi normal echo lsefimmap lsefi lsefisystab efinet tftp minicmd
49fb28a4 395 if [[ "${TEST_PY_BD}" == "qemu-riscv32_spl" ]]; then
0a8239af
BM
396 wget -O - https://github.com/riscv-software-src/opensbi/releases/download/v1.2/opensbi-1.2-rv-bin.tar.xz | tar -C /tmp -xJ;
397 export OPENSBI=/tmp/opensbi-1.2-rv-bin/share/opensbi/ilp32/generic/firmware/fw_dynamic.bin;
49fb28a4 398 fi
0e60b3a7 399 if [[ "${TEST_PY_BD}" == "qemu-riscv64_spl" ]] || [[ "${TEST_PY_BD}" == "sifive_unleashed" ]]; then
0a8239af
BM
400 wget -O - https://github.com/riscv-software-src/opensbi/releases/download/v1.2/opensbi-1.2-rv-bin.tar.xz | tar -C /tmp -xJ;
401 export OPENSBI=/tmp/opensbi-1.2-rv-bin/share/opensbi/lp64/generic/firmware/fw_dynamic.bin;
49fb28a4 402 fi
bf275222
BM
403 # the below corresponds to .gitlab-ci.yml "script"
404 cd ${WORK_DIR}
4e32fed4 405 export UBOOT_TRAVIS_BUILD_DIR=/tmp/${TEST_PY_BD};
9cea4797
SG
406 if [ -n "${BUILD_ENV}" ]; then
407 export ${BUILD_ENV};
408 fi
f586cdae 409 pip install -r tools/buildman/requirements.txt
7ec1255c 410 tools/buildman/buildman -o ${UBOOT_TRAVIS_BUILD_DIR} -w -E -W -e --board ${TEST_PY_BD} ${OVERRIDE}
9e0f5eab
HS
411 cp ~/grub_x86.efi ${UBOOT_TRAVIS_BUILD_DIR}/
412 cp ~/grub_x64.efi ${UBOOT_TRAVIS_BUILD_DIR}/
413 cp /opt/grub/grubriscv64.efi ${UBOOT_TRAVIS_BUILD_DIR}/grub_riscv64.efi
9e0f5eab
HS
414 cp /opt/grub/grubaa64.efi ${UBOOT_TRAVIS_BUILD_DIR}/grub_arm64.efi
415 cp /opt/grub/grubarm.efi ${UBOOT_TRAVIS_BUILD_DIR}/grub_arm.efi
0e60b3a7
BM
416 # create sdcard / spi-nor images for sifive unleashed using genimage
417 if [[ "${TEST_PY_BD}" == "sifive_unleashed" ]]; then
418 mkdir -p root;
419 cp ${UBOOT_TRAVIS_BUILD_DIR}/spl/u-boot-spl.bin .;
420 cp ${UBOOT_TRAVIS_BUILD_DIR}/u-boot.itb .;
421 rm -rf tmp;
422 genimage --inputpath . --config board/sifive/unleashed/genimage_sdcard.cfg;
423 cp images/sdcard.img ${UBOOT_TRAVIS_BUILD_DIR}/;
424 rm -rf tmp;
425 genimage --inputpath . --config board/sifive/unleashed/genimage_spi-nor.cfg;
426 cp images/spi-nor.img ${UBOOT_TRAVIS_BUILD_DIR}/;
427 fi
bfb2a7fb
SG
428 if [[ "${TEST_PY_BD}" == "coreboot" ]]; then
429 wget -O - "https://drive.google.com/uc?id=1x6nrtWIyIRPLS2cQBwYTnT2TbOI8UjmM&export=download" |xz -dc >${UBOOT_TRAVIS_BUILD_DIR}/coreboot.rom;
430 wget -O - "https://drive.google.com/uc?id=149Cz-5SZXHNKpi9xg6R_5XITWohu348y&export=download" >cbfstool;
431 chmod a+x cbfstool;
432 ./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;
433 fi
5d80a1a9
TR
434 virtualenv -p /usr/bin/python3 /tmp/venv
435 . /tmp/venv/bin/activate
436 pip install -r test/py/requirements.txt
be566abd 437 pip install pytest-azurepipelines
5d6f0535 438 export PATH=/opt/qemu/bin:/tmp/uboot-test-hooks/bin:${PATH};
bf275222 439 export PYTHONPATH=/tmp/uboot-test-hooks/py/travis-ci;
4080d097 440 # "${var:+"-k $var"}" expands to "" if $var is empty, "-k $var" if not
542ae523 441 ./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";
bf275222 442 # the below corresponds to .gitlab-ci.yml "after_script"
6049d516 443 rm -rf /tmp/uboot-test-hooks /tmp/venv
bf275222
BM
444 EOF
445 cat test.sh
446 # make current directory writeable to uboot user inside the container
447 # as sandbox testing need create files like spi flash images, etc.
448 # (TODO: clean up this in the future)
449 chmod 777 .
e22ec9c6
ANY
450 # Filesystem tests need extra docker args to run
451 set --
452 if [[ "${TEST_PY_BD}" == "sandbox" ]]; then
453 # mount -o loop needs the loop devices
454 if modprobe loop; then
455 for d in $(find /dev -maxdepth 1 -name 'loop*'); do
456 set -- "$@" --device $d:$d
457 done
458 fi
459 # Needed for mount syscall (for guestmount as well)
460 set -- "$@" --cap-add SYS_ADMIN
461 # Default apparmor profile denies mounts
462 set -- "$@" --security-opt apparmor=unconfined
463 fi
1aaaf60d 464 # Some tests using libguestfs-tools need the fuse device to run
e22ec9c6 465 docker run "$@" --device /dev/fuse:/dev/fuse -v $PWD:$(work_dir) $(ci_runner_image) /bin/bash $(work_dir)/test.sh
58b35850 466 retryCountOnTaskFailure: 2 # QEMU may be too slow, etc.
bf275222 467
67d3e67d
TR
468- stage: world_build
469 jobs:
bf275222
BM
470 - job: build_the_world
471 displayName: 'Build the World'
472 pool:
473 vmImage: $(ubuntu_vm)
474 strategy:
475 # Use almost the same target division in .travis.yml, only merged
11232139 476 # 3 small build jobs (arc/microblaze/xtensa) into one.
bf275222 477 matrix:
11232139
TR
478 arc_microblaze_xtensa:
479 BUILDMAN: "arc microblaze xtensa"
dcb0cc01
TR
480 amlogic:
481 BUILDMAN: "amlogic"
bf275222
BM
482 arm11_arm7_arm920t_arm946es:
483 BUILDMAN: "arm11 arm7 arm920t arm946es"
484 arm926ejs:
5bda1878 485 BUILDMAN: "arm926ejs -x freescale,siemens,at91,kirkwood,omap"
bf275222
BM
486 at91_non_armv7:
487 BUILDMAN: "at91 -x armv7"
488 at91_non_arm926ejs:
489 BUILDMAN: "at91 -x arm926ejs"
490 boundary_engicam_toradex:
491 BUILDMAN: "boundary engicam toradex"
492 arm_bcm:
493 BUILDMAN: "bcm -x mips"
494 nxp_arm32:
af771625
HS
495 BUILDMAN: "freescale -x powerpc,m68k,aarch64,ls101,ls102,ls104,ls108,ls20,lx216"
496 nxp_ls101x:
497 BUILDMAN: "freescale&ls101"
498 nxp_ls102x:
b042cebe 499 BUILDMAN: "freescale&ls102 -x keymile"
af771625
HS
500 nxp_ls104x:
501 BUILDMAN: "freescale&ls104"
502 nxp_ls108x:
503 BUILDMAN: "freescale&ls108"
504 nxp_ls20xx:
505 BUILDMAN: "freescale&ls20"
506 nxp_lx216x:
507 BUILDMAN: "freescale&lx216"
bf275222
BM
508 imx6:
509 BUILDMAN: "mx6 -x boundary,engicam,freescale,technexion,toradex"
510 imx:
dcb0cc01
TR
511 BUILDMAN: "mx -x mx6,imx8,freescale,technexion,toradex"
512 imx8_imx9:
5c738b54 513 BUILDMAN: "imx8 imx9 -x engicam,technexion,toradex"
b042cebe
TR
514 keymile:
515 BUILDMAN: "keymile"
bf275222
BM
516 keystone2_keystone3:
517 BUILDMAN: "k2 k3"
eabc4e29
AS
518 sandbox_asan:
519 BUILDMAN: "sandbox"
520 OVERRIDE: "-a ASAN"
521 sandbox_clang_asan:
522 BUILDMAN: "sandbox"
d7e0678c 523 OVERRIDE: "-O clang-16 -a ASAN"
bf275222
BM
524 samsung_socfpga:
525 BUILDMAN: "samsung socfpga"
bf275222
BM
526 sun4i:
527 BUILDMAN: "sun4i"
528 sun5i:
529 BUILDMAN: "sun5i"
530 sun6i:
531 BUILDMAN: "sun6i"
532 sun7i:
533 BUILDMAN: "sun7i"
534 sun8i_32bit:
535 BUILDMAN: "sun8i&armv7"
536 sun8i_64bit:
537 BUILDMAN: "sun8i&aarch64"
538 sun9i:
539 BUILDMAN: "sun9i"
540 sun50i:
541 BUILDMAN: "sun50i"
542 arm_catch_all:
31289c7d 543 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
544 sandbox_x86:
545 BUILDMAN: "sandbox x86"
546 technexion:
547 BUILDMAN: "technexion"
548 kirkwood:
549 BUILDMAN: "kirkwood"
550 mvebu:
551 BUILDMAN: "mvebu"
552 m68k:
553 BUILDMAN: "m68k"
554 mips:
555 BUILDMAN: "mips"
05f958f8 556 powerpc:
b042cebe 557 BUILDMAN: "powerpc -x keymile"
bf275222
BM
558 siemens:
559 BUILDMAN: "siemens"
560 tegra:
561 BUILDMAN: "tegra -x toradex"
562 am33xx_no_siemens:
563 BUILDMAN: "am33xx -x siemens"
564 omap:
565 BUILDMAN: "omap"
566 uniphier:
567 BUILDMAN: "uniphier"
568 aarch64_catch_all:
dcb0cc01 569 BUILDMAN: "aarch64 -x amlogic,bcm,imx8,imx9,k3,tegra,ls1,ls2,lx216,mvebu,uniphier,renesas,sunxi,samsung,socfpga,rk,versal,zynq"
8807b2e5
TR
570 rk_rv_non_rockchip:
571 BUILDMAN: "rk|rv -x rockchip"
572 rk_rv_and_rockchip:
573 BUILDMAN: "(rk|rv)&rockchip"
31289c7d
TR
574 renesas:
575 BUILDMAN: "renesas"
bf275222
BM
576 zynq:
577 BUILDMAN: "zynq&armv7"
578 zynqmp_versal:
579 BUILDMAN: "versal|zynqmp&aarch64"
580 riscv:
581 BUILDMAN: "riscv"
582 steps:
583 - script: |
584 cat << EOF > build.sh
585 set -ex
586 cd ${WORK_DIR}
587 # make environment variables available as tests are running inside a container
588 export BUILDMAN="${BUILDMAN}"
bd181a24 589 git config --global --add safe.directory ${WORK_DIR}
f586cdae 590 pip install -r tools/buildman/requirements.txt
bf275222
BM
591 EOF
592 cat << "EOF" >> build.sh
593 if [[ "${BUILDMAN}" != "" ]]; then
594 ret=0;
d7713ad3 595 tools/buildman/buildman -o /tmp -PEWM ${BUILDMAN} ${OVERRIDE} || ret=$?;
dd5c954e 596 if [[ $ret -ne 0 ]]; then
b52f5a19 597 tools/buildman/buildman -o /tmp -seP ${BUILDMAN};
bf275222
BM
598 exit $ret;
599 fi;
600 fi
601 EOF
602 cat build.sh
603 docker run -v $PWD:$(work_dir) $(ci_runner_image) /bin/bash $(work_dir)/build.sh