]> Git Repo - J-u-boot.git/blame - .azure-pipelines.yml
xilinx: mbv: Align smode_defconfig with upstream QEMU
[J-u-boot.git] / .azure-pipelines.yml
CommitLineData
d2e680fa 1variables:
933d27e1
TR
2 windows_vm: windows-2022
3 ubuntu_vm: ubuntu-24.04
4 macos_vm: macOS-14
0b06e052 5 ci_runner_image: trini/u-boot-gitlab-ci-runner:jammy-20240808-21Aug2024
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
378a5524 11 # We define all of these as variables so we can easily reference them twice
ebd60ff0 12 am33xx_kirkwood_ls1_mvebu_omap: "am33xx kirkwood ls1 mvebu omap -x siemens,freescale"
378a5524 13 amlogic_bcm_boundary_engicam_siemens_technexion_oradex: "amlogic bcm boundary engicam siemens technexion toradex -x mips"
ebd60ff0 14 arm_nxp_minus_imx_and_at91: "at91 freescale -x powerpc,m68k,imx,mx"
378a5524
TR
15 imx: "mx imx -x boundary,engicam,technexion,toradex"
16 rk: "rk"
17 sunxi: "sunxi"
18 powerpc: "powerpc"
19 arm_catch_all: "arm -x aarch64,am33xx,at91,bcm,ls1,kirkwood,mvebu,omap,rk,siemens,mx,sunxi,technexion,toradex"
20 aarch64_catch_all: "aarch64 -x amlogic,bcm,engicam,imx,ls1,ls2,lx216,mvebu,rk,siemens,sunxi,toradex"
acc6be72 21 everything_but_arm_and_powerpc: "arc m68k microblaze mips nios2 riscv sandbox sh x86 xtensa -x arm,powerpc"
d2e680fa 22
67d3e67d
TR
23stages:
24- stage: testsuites
25 jobs:
d2e680fa
BM
26 - job: tools_only_windows
27 displayName: 'Ensure host tools build for Windows'
28 pool:
29 vmImage: $(windows_vm)
d2e680fa 30 steps:
437e70f7 31 - powershell: |
1ce892cb 32 (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
33 displayName: 'Install MSYS2'
34 - script: |
437e70f7 35 sfx.exe -y -o%CD:~0,2%\
f8e7670f
TR
36 %CD:~0,2%\msys64\usr\bin\bash -lc " "
37 %CD:~0,2%\msys64\usr\bin\bash -lc "pacman --noconfirm -Syuu"
38 %CD:~0,2%\msys64\usr\bin\bash -lc "pacman --noconfirm -Syuu"
d2e680fa
BM
39 displayName: 'Update MSYS2'
40 - script: |
d9612f44 41 %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
42 displayName: 'Install Toolchain'
43 - script: |
d948c898 44 echo make tools-only_defconfig tools-only > build-tools.sh
f7faddf6 45 %CD:~0,2%\msys64\usr\bin\bash -lc "bash build-tools.sh"
d2e680fa
BM
46 displayName: 'Build Host Tools'
47 env:
48 # Tell MSYS2 we need a POSIX emulation layer
49 MSYSTEM: MSYS
50 # Tell MSYS2 not to ‘cd’ our startup directory to HOME
51 CHERE_INVOKING: yes
bf275222 52
7b4116d4
TR
53 - job: tools_only_macOS
54 displayName: 'Ensure host tools build for macOS X'
55 pool:
56 vmImage: $(macos_vm)
57 steps:
d9612f44 58 - script: brew install make ossp-uuid
7b4116d4
TR
59 displayName: Brew install dependencies
60 - script: |
d948c898 61 gmake tools-only_config tools-only \
7b4116d4
TR
62 HOSTCFLAGS="-I/usr/local/opt/[email protected]/include" \
63 HOSTLDFLAGS="-L/usr/local/opt/[email protected]/lib" \
64 -j$(sysctl -n hw.logicalcpu)
65 displayName: 'Perform tools-only build'
66
bb9b9c1e
TR
67 - job: check_for_new_CONFIG_symbols_outside_Kconfig
68 displayName: 'Check for new CONFIG symbols outside Kconfig'
c1a7de57
TR
69 pool:
70 vmImage: $(ubuntu_vm)
71 container:
72 image: $(ci_runner_image)
73 options: $(container_option)
74 steps:
bb9b9c1e
TR
75 # If grep succeeds and finds a match the test fails as we should
76 # have no matches.
77 - script: git grep -E '^#[[:blank:]]*(define|undef)[[:blank:]]*CONFIG_'
a03efb6f 78 :^doc/ :^arch/arm/dts/ :^scripts/kconfig/lkc.h
25ce987b
RM
79 :^include/linux/kconfig.h :^tools/ :^dts/upstream/
80 :^lib/mbedtls/external :^lib/mbedtls/mbedtls_def_config.h &&
8f31c85c 81 exit 1 || exit 0
c1a7de57 82
e9cc7029
HS
83 - job: docs
84 displayName: 'Build documentation'
4eb0fc99
HS
85 pool:
86 vmImage: $(ubuntu_vm)
87 container:
88 image: $(ci_runner_image)
89 options: $(container_option)
90 steps:
836049d6
HS
91 - script: |
92 virtualenv -p /usr/bin/python3 /tmp/venvhtml
93 . /tmp/venvhtml/bin/activate
94 pip install -r doc/sphinx/requirements.txt
8a6414d1 95 make htmldocs KDOC_WERROR=1
e9cc7029 96 make infodocs
4eb0fc99 97
bf275222
BM
98 - job: maintainers
99 displayName: 'Ensure all configs have MAINTAINERS entries'
100 pool:
101 vmImage: $(ubuntu_vm)
102 container:
103 image: $(ci_runner_image)
104 options: $(container_option)
105 steps:
106 - script: |
d6b3297d 107 ./tools/buildman/buildman --maintainer-check
bf275222
BM
108
109 - job: tools_only
562ed115 110 displayName: 'Ensure host tools and env tools build'
bf275222
BM
111 pool:
112 vmImage: $(ubuntu_vm)
113 container:
114 image: $(ci_runner_image)
115 options: $(container_option)
116 steps:
117 - script: |
118 make tools-only_config tools-only -j$(nproc)
562ed115 119 make mrproper
bf275222
BM
120 make tools-only_config envtools -j$(nproc)
121
122 - job: utils
7261833f 123 displayName: 'Run binman, buildman, dtoc, Kconfig and patman testsuites'
bf275222
BM
124 pool:
125 vmImage: $(ubuntu_vm)
126 steps:
127 - script: |
b6d4e085
TR
128 cat << "EOF" > build.sh
129 cd $(work_dir)
bf275222
BM
130 git config --global user.name "Azure Pipelines"
131 git config --global user.email [email protected]
b6d4e085 132 git config --global --add safe.directory $(work_dir)
bf275222 133 export USER=azure
26a426a1 134 virtualenv -p /usr/bin/python3 /tmp/venv
bf275222 135 . /tmp/venv/bin/activate
38229b55 136 pip install -r test/py/requirements.txt
f586cdae 137 pip install -r tools/buildman/requirements.txt
48f792e3 138 export UBOOT_TRAVIS_BUILD_DIR=/tmp/tools-only
bf275222
BM
139 export PYTHONPATH=${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc/pylibfdt
140 export PATH=${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc:${PATH}
48f792e3 141 ./tools/buildman/buildman -T0 -o ${UBOOT_TRAVIS_BUILD_DIR} -w --board tools-only
b6d4e085 142 set -ex
bf275222
BM
143 ./tools/binman/binman --toolpath ${UBOOT_TRAVIS_BUILD_DIR}/tools test
144 ./tools/buildman/buildman -t
145 ./tools/dtoc/dtoc -t
6bb74de7 146 ./tools/patman/patman test
7261833f 147 make O=${UBOOT_TRAVIS_BUILD_DIR} testconfig
bf275222
BM
148 EOF
149 cat build.sh
150 # We cannot use "container" like other jobs above, as buildman
151 # seems to hang forever with pre-configured "container" environment
152 docker run -v $PWD:$(work_dir) $(ci_runner_image) /bin/bash $(work_dir)/build.sh
153
642e51ad
SG
154 - job: pylint
155 displayName: Check for any pylint regressions
156 pool:
157 vmImage: $(ubuntu_vm)
158 container:
159 image: $(ci_runner_image)
160 options: $(container_option)
161 steps:
162 - script: |
b6d4e085 163 git config --global --add safe.directory $(work_dir)
642e51ad
SG
164 export USER=azure
165 pip install -r test/py/requirements.txt
f586cdae 166 pip install -r tools/buildman/requirements.txt
e47bbf7e 167 pip install asteval pylint==2.12.2 pyopenssl
642e51ad
SG
168 export PATH=${PATH}:~/.local/bin
169 echo "[MASTER]" >> .pylintrc
170 echo "load-plugins=pylint.extensions.docparams" >> .pylintrc
48f792e3
TR
171 export UBOOT_TRAVIS_BUILD_DIR=/tmp/tools-only
172 ./tools/buildman/buildman -T0 -o ${UBOOT_TRAVIS_BUILD_DIR} -w --board tools-only
b6d4e085 173 set -ex
642e51ad
SG
174 pylint --version
175 export PYTHONPATH=${UBOOT_TRAVIS_BUILD_DIR}/scripts/dtc/pylibfdt
176 make pylint_err
177
441a3d0a
SG
178 - job: check_for_pre_schema_tags
179 displayName: 'Check for pre-schema driver model tags'
180 pool:
181 vmImage: $(ubuntu_vm)
182 container:
183 image: $(ci_runner_image)
184 options: $(container_option)
185 steps:
186 # If grep succeeds and finds a match the test fails as we should
187 # have no matches.
188 - script: git grep u-boot,dm- -- '*.dts*' && exit 1 || exit 0
189
c21a5286
SG
190 - job: check_packing_of_python_tools
191 displayName: 'Check we can package the Python tools'
192 pool:
193 vmImage: $(ubuntu_vm)
194 container:
195 image: $(ci_runner_image)
196 options: $(container_option)
197 steps:
198 - script: make pip
199
2c95e0c6
TR
200 - job: count_built_machines
201 displayName: 'Ensure we build all possible machines'
202 pool:
203 vmImage: $(ubuntu_vm)
204 container:
205 image: $(ci_runner_image)
206 options: $(container_option)
207 steps:
208 - script: |
209 BMANARGS="-o /tmp --dry-run -v"
210 # First get the total number of boards
211 total=$(tools/buildman/buildman ${BMANARGS} | grep "Total boards to build for each commit" | cut -d ' ' -f 8)
212 # Now build up the list of what each job built.
213 built="$(tools/buildman/buildman ${BMANARGS} $(am33xx_kirkwood_ls1_mvebu_omap) | grep '^ ')"
214 built="$built $(tools/buildman/buildman ${BMANARGS} $(amlogic_bcm_boundary_engicam_siemens_technexion_oradex) | grep '^ ')"
215 built="$built $(tools/buildman/buildman ${BMANARGS} $(arm_nxp_minus_imx_and_at91) | grep '^ ')"
216 built="$built $(tools/buildman/buildman ${BMANARGS} $(imx) | grep '^ ')"
217 built="$built $(tools/buildman/buildman ${BMANARGS} $(rk) | grep '^ ')"
218 built="$built $(tools/buildman/buildman ${BMANARGS} $(sunxi) | grep '^ ')"
219 built="$built $(tools/buildman/buildman ${BMANARGS} $(powerpc) | grep '^ ')"
220 built="$built $(tools/buildman/buildman ${BMANARGS} $(arm_catch_all) | grep '^ ')"
221 built="$built $(tools/buildman/buildman ${BMANARGS} $(aarch64_catch_all) | grep '^ ')"
222 built="$built $(tools/buildman/buildman ${BMANARGS} $(everything_but_arm_and_powerpc) | grep '^ ')"
223 # Finally see how many machines that is.
224 actual=$(tools/buildman/buildman ${BMANARGS} $built | grep "Total boards to build for each commit" | cut -d ' ' -f 8)
225 echo We would build a total of $actual out of $total platforms this CI run
226 [ $actual -eq $total ] && exit 0 || exit 1
227
8ae5feca
TR
228 - job: create_test_py_wrapper_script
229 displayName: 'Create and stage a wrapper for test.py runs'
230 pool:
231 vmImage: $(ubuntu_vm)
232 steps:
233 - checkout: none
234 - script: |
235 cat << EOF > test.sh
236 #!/bin/bash
237 set -ex
238 # the below corresponds to .gitlab-ci.yml "before_script"
239 cd \${WORK_DIR}
240 git config --global --add safe.directory \${WORK_DIR}
a9b3723e 241 git clone --depth=1 https://source.denx.de/u-boot/u-boot-test-hooks /tmp/uboot-test-hooks
fd10d156
JF
242 # qemu_arm64_lwip_defconfig is the same as qemu_arm64 but with NET_LWIP enabled.
243 # The test config and the boardenv file from qemu_arm64 can be re-used so create symlinks
244 ln -s conf.qemu_arm64_na /tmp/uboot-test-hooks/bin/travis-ci/conf.qemu_arm64_lwip_na
245 ln -s u_boot_boardenv_qemu_arm64_na.py /tmp/uboot-test-hooks/py/travis-ci/u_boot_boardenv_qemu_arm64_lwip_na.py
8ae5feca
TR
246 ln -s travis-ci /tmp/uboot-test-hooks/bin/\`hostname\`
247 ln -s travis-ci /tmp/uboot-test-hooks/py/\`hostname\`
248 grub-mkimage --prefix=\"\" -o ~/grub_x86.efi -O i386-efi normal echo lsefimmap lsefi lsefisystab efinet tftp minicmd
249 grub-mkimage --prefix=\"\" -o ~/grub_x64.efi -O x86_64-efi normal echo lsefimmap lsefi lsefisystab efinet tftp minicmd
250 if [[ "\${TEST_PY_BD}" == "qemu-riscv32_spl" ]]; then
a966634e
HS
251 wget -O - https://github.com/riscv-software-src/opensbi/releases/download/v1.3.1/opensbi-1.3.1-rv-bin.tar.xz | tar -C /tmp -xJ;
252 export OPENSBI=/tmp/opensbi-1.3.1-rv-bin/share/opensbi/ilp32/generic/firmware/fw_dynamic.bin;
8ae5feca
TR
253 fi
254 if [[ "\${TEST_PY_BD}" == "qemu-riscv64_spl" ]] || [[ "\${TEST_PY_BD}" == "sifive_unleashed" ]]; then
a966634e
HS
255 wget -O - https://github.com/riscv-software-src/opensbi/releases/download/v1.3.1/opensbi-1.3.1-rv-bin.tar.xz | tar -C /tmp -xJ;
256 export OPENSBI=/tmp/opensbi-1.3.1-rv-bin/share/opensbi/lp64/generic/firmware/fw_dynamic.bin;
8ae5feca 257 fi
25081abf
PR
258 if [[ "\${TEST_PY_BD}" == "qemu-arm-sbsa" ]]; then
259 wget -O /tmp/bl1.bin https://artifacts.codelinaro.org/artifactory/linaro-419-sbsa-ref/latest/tf-a/bl1.bin;
260 wget -O /tmp/fip.bin https://artifacts.codelinaro.org/artifactory/linaro-419-sbsa-ref/latest/tf-a/fip.bin;
261 export BINMAN_INDIRS=/tmp
262 fi
8ae5feca
TR
263 # the below corresponds to .gitlab-ci.yml "script"
264 cd \${WORK_DIR}
265 export UBOOT_TRAVIS_BUILD_DIR=/tmp/\${TEST_PY_BD}
266 if [ -n "\${BUILD_ENV}" ]; then
267 export \${BUILD_ENV};
268 fi
269 pip install -r tools/buildman/requirements.txt
270 tools/buildman/buildman -o \${UBOOT_TRAVIS_BUILD_DIR} -w -E -W -e --board \${TEST_PY_BD} \${OVERRIDE}
271 cp ~/grub_x86.efi \${UBOOT_TRAVIS_BUILD_DIR}/
272 cp ~/grub_x64.efi \${UBOOT_TRAVIS_BUILD_DIR}/
273 cp /opt/grub/grubriscv64.efi \${UBOOT_TRAVIS_BUILD_DIR}/grub_riscv64.efi
274 cp /opt/grub/grubaa64.efi \${UBOOT_TRAVIS_BUILD_DIR}/grub_arm64.efi
275 cp /opt/grub/grubarm.efi \${UBOOT_TRAVIS_BUILD_DIR}/grub_arm.efi
276 # create sdcard / spi-nor images for sifive unleashed using genimage
277 if [[ "\${TEST_PY_BD}" == "sifive_unleashed" ]]; then
278 mkdir -p root;
279 cp \${UBOOT_TRAVIS_BUILD_DIR}/spl/u-boot-spl.bin .;
280 cp \${UBOOT_TRAVIS_BUILD_DIR}/u-boot.itb .;
281 rm -rf tmp;
282 genimage --inputpath . --config board/sifive/unleashed/genimage_sdcard.cfg;
283 cp images/sdcard.img \${UBOOT_TRAVIS_BUILD_DIR}/;
284 rm -rf tmp;
285 genimage --inputpath . --config board/sifive/unleashed/genimage_spi-nor.cfg;
286 cp images/spi-nor.img \${UBOOT_TRAVIS_BUILD_DIR}/;
287 fi
288 if [[ "\${TEST_PY_BD}" == "coreboot" ]]; then
3a79c91f
TR
289 cp /opt/coreboot/coreboot.rom \${UBOOT_TRAVIS_BUILD_DIR}/coreboot.rom;
290 /opt/coreboot/cbfstool \${UBOOT_TRAVIS_BUILD_DIR}/coreboot.rom remove -n fallback/payload;
291 /opt/coreboot/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;
8ae5feca
TR
292 fi
293 virtualenv -p /usr/bin/python3 /tmp/venv
294 . /tmp/venv/bin/activate
295 pip install -r test/py/requirements.txt
296 pip install pytest-azurepipelines
297 export PATH=/opt/qemu/bin:/tmp/uboot-test-hooks/bin:\${PATH}
298 export PYTHONPATH=/tmp/uboot-test-hooks/py/travis-ci
299 # "\${var:+"-k \$var"}" expands to "" if \$var is empty, "-k \$var" if not
26c56f1c 300 ./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" --junitxml=\$(System.DefaultWorkingDirectory)/results.xml
8ae5feca
TR
301 # the below corresponds to .gitlab-ci.yml "after_script"
302 rm -rf /tmp/uboot-test-hooks /tmp/venv
303 EOF
304 - task: CopyFiles@2
305 displayName: 'Copy test.sh for later usage'
306 inputs:
307 contents: 'test.sh'
308 targetFolder: '$(Build.ArtifactStagingDirectory)'
309 - publish: '$(Build.ArtifactStagingDirectory)/test.sh'
310 displayName: 'Publish test.sh'
311 artifact: testsh
312
c9836c0f 313- stage: test_py_sandbox
67d3e67d 314 jobs:
c9836c0f
TR
315 - job: test_py_sandbox
316 displayName: 'test.py for sandbox'
bf275222
BM
317 pool:
318 vmImage: $(ubuntu_vm)
319 strategy:
320 matrix:
321 sandbox:
322 TEST_PY_BD: "sandbox"
9aeac898
TR
323 sandbox_asan:
324 TEST_PY_BD: "sandbox"
325 OVERRIDE: "-a ASAN"
326 TEST_PY_TEST_SPEC: "version"
0219d014
TR
327 sandbox_clang:
328 TEST_PY_BD: "sandbox"
96afd8a3 329 OVERRIDE: "-O clang-17"
9aeac898
TR
330 sandbox_clang_asan:
331 TEST_PY_BD: "sandbox"
96afd8a3 332 OVERRIDE: "-O clang-17 -a ASAN"
9aeac898 333 TEST_PY_TEST_SPEC: "version"
57c7cb66
TR
334 sandbox64:
335 TEST_PY_BD: "sandbox64"
336 sandbox64_clang:
337 TEST_PY_BD: "sandbox64"
96afd8a3 338 OVERRIDE: "-O clang-17"
bf275222
BM
339 sandbox_spl:
340 TEST_PY_BD: "sandbox_spl"
afb26ba9 341 TEST_PY_TEST_SPEC: "test_ofplatdata or test_handoff or test_spl"
a31eff30
SG
342 sandbox_vpl:
343 TEST_PY_BD: "sandbox_vpl"
8b609878 344 TEST_PY_TEST_SPEC: "vpl or test_spl"
6c914e42
SG
345 sandbox_noinst:
346 TEST_PY_BD: "sandbox_noinst"
347 TEST_PY_TEST_SPEC: "test_ofplatdata or test_handoff or test_spl"
b93cc1e7
SA
348 sandbox_noinst_load_fit_full:
349 TEST_PY_BD: "sandbox_noinst"
350 TEST_PY_TEST_SPEC: "test_ofplatdata or test_handoff or test_spl"
351 OVERRIDE: "-a CONFIG_SPL_LOAD_FIT_FULL=y"
bf275222
BM
352 sandbox_flattree:
353 TEST_PY_BD: "sandbox_flattree"
9cea4797
SG
354 sandbox_trace:
355 TEST_PY_BD: "sandbox"
356 BUILD_ENV: "FTRACE=1 NO_LTO=1"
357 TEST_PY_TEST_SPEC: "trace"
61cad8da 358 OVERRIDE: "-a CONFIG_TRACE=y -a CONFIG_TRACE_EARLY=y -a CONFIG_TRACE_EARLY_SIZE=0x01000000 -a CONFIG_TRACE_BUFFER_SIZE=0x02000000"
c9836c0f
TR
359 steps:
360 - download: current
361 artifact: testsh
362 - script: |
363 # make current directory writeable to uboot user inside the container
364 # as sandbox testing need create files like spi flash images, etc.
365 # (TODO: clean up this in the future)
366 chmod 777 .
367 chmod 755 $(Pipeline.Workspace)/testsh/test.sh
368 # Filesystem tests need extra docker args to run
369 set --
370 # mount -o loop needs the loop devices
371 if modprobe loop; then
372 for d in $(find /dev -maxdepth 1 -name 'loop*'); do
373 set -- "$@" --device $d:$d
374 done
375 fi
376 # Needed for mount syscall (for guestmount as well)
377 set -- "$@" --cap-add SYS_ADMIN
378 # Default apparmor profile denies mounts
379 set -- "$@" --security-opt apparmor=unconfined
380 # Some tests using libguestfs-tools need the fuse device to run
381 docker run "$@" --device /dev/fuse:/dev/fuse \
382 -v $PWD:$(work_dir) \
383 -v $(Pipeline.Workspace):$(Pipeline.Workspace) \
26c56f1c 384 -v $(System.DefaultWorkingDirectory):$(System.DefaultWorkingDirectory) \
c9836c0f
TR
385 -e WORK_DIR="${WORK_DIR}" \
386 -e TEST_PY_BD="${TEST_PY_BD}" \
387 -e TEST_PY_ID="${TEST_PY_ID}" \
388 -e TEST_PY_TEST_SPEC="${TEST_PY_TEST_SPEC}" \
389 -e OVERRIDE="${OVERRIDE}" \
390 -e BUILD_ENV="${BUILD_ENV}" $(ci_runner_image) \
391 $(Pipeline.Workspace)/testsh/test.sh
26c56f1c
TR
392 - task: PublishTestResults@2
393 inputs:
394 testResultsFormat: 'JUnit'
395 testResultsFiles: 'results.xml'
c9836c0f
TR
396
397- stage: test_py_qemu
398 jobs:
399 - job: test_py_qemu
400 displayName: 'test.py for QEMU platforms'
401 pool:
402 vmImage: $(ubuntu_vm)
403 strategy:
404 matrix:
bfb2a7fb
SG
405 coreboot:
406 TEST_PY_BD: "coreboot"
407 TEST_PY_ID: "--id qemu"
408 TEST_PY_TEST_SPEC: "not sleep"
bf275222
BM
409 evb_ast2500:
410 TEST_PY_BD: "evb-ast2500"
411 TEST_PY_ID: "--id qemu"
08128f05 412 TEST_PY_TEST_SPEC: "not sleep"
b24087ae
JS
413 evb_ast2600:
414 TEST_PY_BD: "evb-ast2600"
415 TEST_PY_ID: "--id qemu"
08128f05 416 TEST_PY_TEST_SPEC: "not sleep"
15e30106
KA
417 vexpress_ca9x4:
418 TEST_PY_BD: "vexpress_ca9x4"
419 TEST_PY_ID: "--id qemu"
08128f05 420 TEST_PY_TEST_SPEC: "not sleep"
bf275222
BM
421 integratorcp_cm926ejs:
422 TEST_PY_BD: "integratorcp_cm926ejs"
423 TEST_PY_ID: "--id qemu"
424 TEST_PY_TEST_SPEC: "not sleep"
bf275222
BM
425 qemu_arm:
426 TEST_PY_BD: "qemu_arm"
427 TEST_PY_TEST_SPEC: "not sleep"
bf275222
BM
428 qemu_arm64:
429 TEST_PY_BD: "qemu_arm64"
430 TEST_PY_TEST_SPEC: "not sleep"
fd10d156
JF
431 qemu_arm64_lwip:
432 TEST_PY_BD: "qemu_arm64_lwip"
433 TEST_PY_TEST_SPEC: "test_net_dhcp or test_net_ping or test_net_tftpboot"
25081abf
PR
434 qemu_arm_sbsa_ref:
435 TEST_PY_BD: "qemu-arm-sbsa"
436 TEST_PY_TEST_SPEC: "not sleep"
a21e1123
MV
437 qemu_m68k:
438 TEST_PY_BD: "M5208EVBE"
439 TEST_PY_ID: "--id qemu"
440 TEST_PY_TEST_SPEC: "not sleep and not efi"
441 OVERRIDE: "-a CONFIG_M68K_QEMU=y -a ~CONFIG_MCFTMR"
e35c2a8f
DS
442 qemu_malta:
443 TEST_PY_BD: "malta"
444 TEST_PY_ID: "--id qemu"
445 TEST_PY_TEST_SPEC: "not sleep and not efi"
446 qemu_maltael:
447 TEST_PY_BD: "maltael"
448 TEST_PY_ID: "--id qemu"
449 TEST_PY_TEST_SPEC: "not sleep and not efi"
450 qemu_malta64:
451 TEST_PY_BD: "malta64"
452 TEST_PY_ID: "--id qemu"
453 TEST_PY_TEST_SPEC: "not sleep and not efi"
454 qemu_malta64el:
455 TEST_PY_BD: "malta64el"
456 TEST_PY_ID: "--id qemu"
457 TEST_PY_TEST_SPEC: "not sleep and not efi"
bf275222
BM
458 qemu_ppce500:
459 TEST_PY_BD: "qemu-ppce500"
460 TEST_PY_TEST_SPEC: "not sleep"
a379d330
BM
461 qemu_riscv32:
462 TEST_PY_BD: "qemu-riscv32"
463 TEST_PY_TEST_SPEC: "not sleep"
bf275222
BM
464 qemu_riscv64:
465 TEST_PY_BD: "qemu-riscv64"
466 TEST_PY_TEST_SPEC: "not sleep"
49fb28a4
BM
467 qemu_riscv32_spl:
468 TEST_PY_BD: "qemu-riscv32_spl"
469 TEST_PY_TEST_SPEC: "not sleep"
49fb28a4
BM
470 qemu_riscv64_spl:
471 TEST_PY_BD: "qemu-riscv64_spl"
472 TEST_PY_TEST_SPEC: "not sleep"
bf275222
BM
473 qemu_x86:
474 TEST_PY_BD: "qemu-x86"
475 TEST_PY_TEST_SPEC: "not sleep"
bf275222
BM
476 qemu_x86_64:
477 TEST_PY_BD: "qemu-x86_64"
478 TEST_PY_TEST_SPEC: "not sleep"
7de94126
JY
479 qemu_xtensa_dc233c:
480 TEST_PY_BD: "qemu-xtensa-dc233c"
481 TEST_PY_TEST_SPEC: "not sleep and not efi"
0e125756
MV
482 r2dplus_i82557c:
483 TEST_PY_BD: "r2dplus"
484 TEST_PY_ID: "--id i82557c_qemu"
08128f05 485 TEST_PY_TEST_SPEC: "not sleep"
0e125756
MV
486 r2dplus_pcnet:
487 TEST_PY_BD: "r2dplus"
488 TEST_PY_ID: "--id pcnet_qemu"
08128f05 489 TEST_PY_TEST_SPEC: "not sleep"
0e125756
MV
490 r2dplus_rtl8139:
491 TEST_PY_BD: "r2dplus"
492 TEST_PY_ID: "--id rtl8139_qemu"
08128f05 493 TEST_PY_TEST_SPEC: "not sleep"
0e125756
MV
494 r2dplus_tulip:
495 TEST_PY_BD: "r2dplus"
496 TEST_PY_ID: "--id tulip_qemu"
08128f05 497 TEST_PY_TEST_SPEC: "not sleep"
0e60b3a7
BM
498 sifive_unleashed_sdcard:
499 TEST_PY_BD: "sifive_unleashed"
500 TEST_PY_ID: "--id sdcard_qemu"
08128f05 501 TEST_PY_TEST_SPEC: "not sleep"
0e60b3a7
BM
502 sifive_unleashed_spi-nor:
503 TEST_PY_BD: "sifive_unleashed"
504 TEST_PY_ID: "--id spi-nor_qemu"
08128f05 505 TEST_PY_TEST_SPEC: "not sleep"
f7c6ee7f
MS
506 xilinx_zynq_virt:
507 TEST_PY_BD: "xilinx_zynq_virt"
bf275222
BM
508 TEST_PY_ID: "--id qemu"
509 TEST_PY_TEST_SPEC: "not sleep"
bf275222
BM
510 xilinx_versal_virt:
511 TEST_PY_BD: "xilinx_versal_virt"
512 TEST_PY_ID: "--id qemu"
513 TEST_PY_TEST_SPEC: "not sleep"
bf275222
BM
514 xtfpga:
515 TEST_PY_BD: "xtfpga"
516 TEST_PY_ID: "--id qemu"
517 TEST_PY_TEST_SPEC: "not sleep"
bf275222 518 steps:
8ae5feca
TR
519 - download: current
520 artifact: testsh
bf275222 521 - script: |
bf275222
BM
522 # make current directory writeable to uboot user inside the container
523 # as sandbox testing need create files like spi flash images, etc.
524 # (TODO: clean up this in the future)
525 chmod 777 .
8ae5feca 526 chmod 755 $(Pipeline.Workspace)/testsh/test.sh
1aaaf60d 527 # Some tests using libguestfs-tools need the fuse device to run
8ae5feca
TR
528 docker run "$@" --device /dev/fuse:/dev/fuse \
529 -v $PWD:$(work_dir) \
530 -v $(Pipeline.Workspace):$(Pipeline.Workspace) \
26c56f1c 531 -v $(System.DefaultWorkingDirectory):$(System.DefaultWorkingDirectory) \
8ae5feca
TR
532 -e WORK_DIR="${WORK_DIR}" \
533 -e TEST_PY_BD="${TEST_PY_BD}" \
534 -e TEST_PY_ID="${TEST_PY_ID}" \
535 -e TEST_PY_TEST_SPEC="${TEST_PY_TEST_SPEC}" \
536 -e OVERRIDE="${OVERRIDE}" \
537 -e BUILD_ENV="${BUILD_ENV}" $(ci_runner_image) \
538 $(Pipeline.Workspace)/testsh/test.sh
58b35850 539 retryCountOnTaskFailure: 2 # QEMU may be too slow, etc.
26c56f1c
TR
540 - task: PublishTestResults@2
541 inputs:
542 testResultsFormat: 'JUnit'
543 testResultsFiles: 'results.xml'
bf275222 544
67d3e67d
TR
545- stage: world_build
546 jobs:
bf275222 547 - job: build_the_world
04f7e953 548 timeoutInMinutes: 0 # Use the maximum allowed
bf275222
BM
549 displayName: 'Build the World'
550 pool:
551 vmImage: $(ubuntu_vm)
552 strategy:
797e536b
TR
553 # We split the world up in to 10 jobs as we can have at most 10
554 # parallel jobs going on the free tier of Azure.
bf275222 555 matrix:
ebd60ff0
TR
556 am33xx_kirkwood_ls1_mvebu_omap:
557 BUILDMAN: $(am33xx_kirkwood_ls1_mvebu_omap)
9aeac898 558 amlogic_bcm_boundary_engicam_siemens_technexion_oradex:
378a5524 559 BUILDMAN: $(amlogic_bcm_boundary_engicam_siemens_technexion_oradex)
ebd60ff0
TR
560 arm_nxp_minus_imx_and_at91:
561 BUILDMAN: $(arm_nxp_minus_imx_and_at91)
bf275222 562 imx:
378a5524 563 BUILDMAN: $(imx)
9aeac898 564 rk:
378a5524 565 BUILDMAN: $(rk)
9aeac898 566 sunxi:
378a5524 567 BUILDMAN: $(sunxi)
05f958f8 568 powerpc:
378a5524 569 BUILDMAN: $(powerpc)
9aeac898 570 arm_catch_all:
378a5524 571 BUILDMAN: $(arm_catch_all)
bf275222 572 aarch64_catch_all:
378a5524 573 BUILDMAN: $(aarch64_catch_all)
9aeac898 574 everything_but_arm_and_powerpc:
378a5524 575 BUILDMAN: $(everything_but_arm_and_powerpc)
bf275222
BM
576 steps:
577 - script: |
578 cat << EOF > build.sh
579 set -ex
580 cd ${WORK_DIR}
581 # make environment variables available as tests are running inside a container
582 export BUILDMAN="${BUILDMAN}"
bd181a24 583 git config --global --add safe.directory ${WORK_DIR}
f586cdae 584 pip install -r tools/buildman/requirements.txt
bf275222
BM
585 EOF
586 cat << "EOF" >> build.sh
587 if [[ "${BUILDMAN}" != "" ]]; then
588 ret=0;
d7713ad3 589 tools/buildman/buildman -o /tmp -PEWM ${BUILDMAN} ${OVERRIDE} || ret=$?;
dd5c954e 590 if [[ $ret -ne 0 ]]; then
b52f5a19 591 tools/buildman/buildman -o /tmp -seP ${BUILDMAN};
bf275222
BM
592 exit $ret;
593 fi;
594 fi
595 EOF
596 cat build.sh
597 docker run -v $PWD:$(work_dir) $(ci_runner_image) /bin/bash $(work_dir)/build.sh
This page took 0.296735 seconds and 4 git commands to generate.